From 6617dd10c7195932d03c50fa1022363528c6ea8f Mon Sep 17 00:00:00 2001 From: armingol Date: Tue, 28 May 2024 12:14:04 +0200 Subject: [PATCH 1/6] First version --- quick_deploy.sh | 438 + .../drivers/openconfig/templates/Inventory.py | 7 +- src/nbi/service/__main__.py | 2 + .../nbi_plugins/ietf_hardware/Hardware.py | 40 + .../nbi_plugins/ietf_hardware/Untitled-5.json | 37305 ++++++++++++++++ .../nbi_plugins/ietf_hardware/YangHandler.py | 116 + .../nbi_plugins/ietf_hardware/__init__.py | 7 + .../yang/iana-hardware@2018-03-13.yang | 189 + .../yang/ietf-hardware@2018-03-13.yang | 1194 + .../yang/ietf-inet-types@2013-07-15.yang | 458 + .../yang/ietf-yang-types@2013-07-15.yang | 474 + .../nbi_plugins/tfs_api/Resources.py | 12 + .../nbi_plugins/tfs_api/__init__.py | 8 +- src/tests/ecoc22/tests/Objects.py | 2 +- .../descriptors/real/dc-2-dc-service.json | 2 +- test.py | 291 + 16 files changed, 40539 insertions(+), 6 deletions(-) create mode 100755 quick_deploy.sh create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/iana-hardware@2018-03-13.yang create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-hardware@2018-03-13.yang create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-inet-types@2013-07-15.yang create mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-yang-types@2013-07-15.yang create mode 100644 test.py diff --git a/quick_deploy.sh b/quick_deploy.sh new file mode 100755 index 000000000..79846559b --- /dev/null +++ b/quick_deploy.sh @@ -0,0 +1,438 @@ +#!/bin/bash +# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/) +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +######################################################################################################################## +# Read deployment settings +######################################################################################################################## + + +# ----- TeraFlowSDN ------------------------------------------------------------ + +# If not already set, set the URL of the Docker registry where the images will be uploaded to. +# By default, assume internal MicroK8s registry is used. +export TFS_REGISTRY_IMAGES=${TFS_REGISTRY_IMAGES:-"http://localhost:32000/tfs/"} + +# If not already set, set the list of components, separated by spaces, you want to build images for, and deploy. +# By default, only basic components are deployed +export TFS_COMPONENTS=${TFS_COMPONENTS:-"context device pathcomp service slice nbi webui load_generator"} + +# If not already set, set the tag you want to use for your images. +export TFS_IMAGE_TAG=${TFS_IMAGE_TAG:-"dev"} + +# If not already set, set the name of the Kubernetes namespace to deploy TFS to. +export TFS_K8S_NAMESPACE=${TFS_K8S_NAMESPACE:-"tfs"} + +# If not already set, set additional manifest files to be applied after the deployment +export TFS_EXTRA_MANIFESTS=${TFS_EXTRA_MANIFESTS:-""} + +# If not already set, set the new Grafana admin password +export TFS_GRAFANA_PASSWORD=${TFS_GRAFANA_PASSWORD:-"admin123+"} + +# If not already set, disable skip-build flag to rebuild the Docker images. +# If TFS_SKIP_BUILD is "YES", the containers are not rebuilt-retagged-repushed and existing ones are used. +export TFS_SKIP_BUILD=${TFS_SKIP_BUILD:-"YES"} + +# If TFS_SKIP_BUILD is "YES", select the containers to be build +# Any other container will use previous docker images +export TFS_QUICK_COMPONENTS="slice" + +# ----- CockroachDB ------------------------------------------------------------ + +# If not already set, set the namespace where CockroackDB will be deployed. +export CRDB_NAMESPACE=${CRDB_NAMESPACE:-"crdb"} + +# If not already set, set the database username to be used by Context. +export CRDB_USERNAME=${CRDB_USERNAME:-"tfs"} + +# If not already set, set the database user's password to be used by Context. +export CRDB_PASSWORD=${CRDB_PASSWORD:-"tfs123"} + +# If not already set, set the database name to be used by Context. +export CRDB_DATABASE=${CRDB_DATABASE:-"tfs"} + + +# ----- NATS ------------------------------------------------------------------- + +# If not already set, set the namespace where NATS will be deployed. +export NATS_NAMESPACE=${NATS_NAMESPACE:-"nats"} + + +# ----- QuestDB ---------------------------------------------------------------- + +# If not already set, set the namespace where QuestDB will be deployed. +export QDB_NAMESPACE=${QDB_NAMESPACE:-"qdb"} + +# If not already set, set the database username to be used for QuestDB. +export QDB_USERNAME=${QDB_USERNAME:-"admin"} + +# If not already set, set the database user's password to be used for QuestDB. +export QDB_PASSWORD=${QDB_PASSWORD:-"quest"} + +# If not already set, set the table name to be used by Monitoring for KPIs. +export QDB_TABLE_MONITORING_KPIS=${QDB_TABLE_MONITORING_KPIS:-"tfs_monitoring_kpis"} + +# If not already set, set the table name to be used by Slice for plotting groups. +export QDB_TABLE_SLICE_GROUPS=${QDB_TABLE_SLICE_GROUPS:-"tfs_slice_groups"} + + +######################################################################################################################## +# Automated steps start here +######################################################################################################################## + +# Constants +GITLAB_REPO_URL="labs.etsi.org:5050/tfs/controller" +TMP_FOLDER="./tmp" + +# Create a tmp folder for files modified during the deployment +TMP_MANIFESTS_FOLDER="$TMP_FOLDER/manifests" +mkdir -p $TMP_MANIFESTS_FOLDER +TMP_LOGS_FOLDER="$TMP_FOLDER/logs" +mkdir -p $TMP_LOGS_FOLDER + +echo "Deleting and Creating a new namespace..." +kubectl delete namespace $TFS_K8S_NAMESPACE --ignore-not-found +kubectl create namespace $TFS_K8S_NAMESPACE +printf "\n" + +echo "Create secret with CockroachDB data" +CRDB_SQL_PORT=$(kubectl --namespace ${CRDB_NAMESPACE} get service cockroachdb-public -o 'jsonpath={.spec.ports[?(@.name=="sql")].port}') +kubectl create secret generic crdb-data --namespace ${TFS_K8S_NAMESPACE} --type='Opaque' \ + --from-literal=CRDB_NAMESPACE=${CRDB_NAMESPACE} \ + --from-literal=CRDB_SQL_PORT=${CRDB_SQL_PORT} \ + --from-literal=CRDB_DATABASE=${CRDB_DATABASE} \ + --from-literal=CRDB_USERNAME=${CRDB_USERNAME} \ + --from-literal=CRDB_PASSWORD=${CRDB_PASSWORD} \ + --from-literal=CRDB_SSLMODE=require +printf "\n" + +echo "Create secret with NATS data" +NATS_CLIENT_PORT=$(kubectl --namespace ${NATS_NAMESPACE} get service nats -o 'jsonpath={.spec.ports[?(@.name=="client")].port}') +kubectl create secret generic nats-data --namespace ${TFS_K8S_NAMESPACE} --type='Opaque' \ + --from-literal=NATS_NAMESPACE=${NATS_NAMESPACE} \ + --from-literal=NATS_CLIENT_PORT=${NATS_CLIENT_PORT} +printf "\n" + +echo "Create secret with QuestDB data" +QDB_HTTP_PORT=$(kubectl --namespace ${QDB_NAMESPACE} get service questdb-public -o 'jsonpath={.spec.ports[?(@.name=="http")].port}') +QDB_ILP_PORT=$(kubectl --namespace ${QDB_NAMESPACE} get service questdb-public -o 'jsonpath={.spec.ports[?(@.name=="ilp")].port}') +QDB_SQL_PORT=$(kubectl --namespace ${QDB_NAMESPACE} get service questdb-public -o 'jsonpath={.spec.ports[?(@.name=="sql")].port}') +METRICSDB_HOSTNAME="questdb-public.${QDB_NAMESPACE}.svc.cluster.local" +kubectl create secret generic qdb-data --namespace ${TFS_K8S_NAMESPACE} --type='Opaque' \ + --from-literal=QDB_NAMESPACE=${QDB_NAMESPACE} \ + --from-literal=METRICSDB_HOSTNAME=${METRICSDB_HOSTNAME} \ + --from-literal=METRICSDB_REST_PORT=${QDB_HTTP_PORT} \ + --from-literal=METRICSDB_ILP_PORT=${QDB_ILP_PORT} \ + --from-literal=METRICSDB_SQL_PORT=${QDB_SQL_PORT} \ + --from-literal=METRICSDB_TABLE_MONITORING_KPIS=${QDB_TABLE_MONITORING_KPIS} \ + --from-literal=METRICSDB_TABLE_SLICE_GROUPS=${QDB_TABLE_SLICE_GROUPS} \ + --from-literal=METRICSDB_USERNAME=${QDB_USERNAME} \ + --from-literal=METRICSDB_PASSWORD=${QDB_PASSWORD} +printf "\n" + +echo "Deploying components and collecting environment variables..." +ENV_VARS_SCRIPT=tfs_runtime_env_vars.sh +echo "# Environment variables for TeraFlowSDN deployment" > $ENV_VARS_SCRIPT +PYTHONPATH=$(pwd)/src +echo "export PYTHONPATH=${PYTHONPATH}" >> $ENV_VARS_SCRIPT + +for COMPONENT in $TFS_COMPONENTS; do + echo "Processing '$COMPONENT' component..." + + if [ "$TFS_SKIP_BUILD" != "YES" ]; then + echo " Building Docker image..." + BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}.log" + + if [ "$COMPONENT" == "automation" ] || [ "$COMPONENT" == "policy" ]; then + docker build -t "$COMPONENT:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/Dockerfile ./src/"$COMPONENT"/ > "$BUILD_LOG" + elif [ "$COMPONENT" == "pathcomp" ]; then + BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-frontend.log" + docker build -t "$COMPONENT-frontend:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/frontend/Dockerfile . > "$BUILD_LOG" + + BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-backend.log" + docker build -t "$COMPONENT-backend:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/backend/Dockerfile . > "$BUILD_LOG" + # next command is redundant, but helpful to keep cache updated between rebuilds + IMAGE_NAME="$COMPONENT-backend:$TFS_IMAGE_TAG-builder" + docker build -t "$IMAGE_NAME" --target builder -f ./src/"$COMPONENT"/backend/Dockerfile . >> "$BUILD_LOG" + elif [ "$COMPONENT" == "dlt" ]; then + BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-connector.log" + docker build -t "$COMPONENT-connector:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/connector/Dockerfile . > "$BUILD_LOG" + + BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-gateway.log" + docker build -t "$COMPONENT-gateway:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/gateway/Dockerfile . > "$BUILD_LOG" + else + docker build -t "$COMPONENT:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/Dockerfile . > "$BUILD_LOG" + fi + + echo " Pushing Docker image to '$TFS_REGISTRY_IMAGES'..." + + if [ "$COMPONENT" == "pathcomp" ]; then + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-frontend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + + TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-frontend.log" + docker tag "$COMPONENT-frontend:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" + + PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-frontend.log" + docker push "$IMAGE_URL" > "$PUSH_LOG" + + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-backend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + + TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-backend.log" + docker tag "$COMPONENT-backend:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" + + PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-backend.log" + docker push "$IMAGE_URL" > "$PUSH_LOG" + elif [ "$COMPONENT" == "dlt" ]; then + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-connector:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + + TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-connector.log" + docker tag "$COMPONENT-connector:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" + + PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-connector.log" + docker push "$IMAGE_URL" > "$PUSH_LOG" + + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-gateway:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + + TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-gateway.log" + docker tag "$COMPONENT-gateway:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" + + PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-gateway.log" + docker push "$IMAGE_URL" > "$PUSH_LOG" + else + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + + TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}.log" + docker tag "$COMPONENT:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" + + PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}.log" + docker push "$IMAGE_URL" > "$PUSH_LOG" + fi + else + for QUICK_COMPONENT in $TFS_QUICK_COMPONENTS; do + if [ "$COMPONENT" == "$QUICK_COMPONENT" ]; then + + echo " Building Docker image..." + BUILD_LOG="$TMP_LOGS_FOLDER/build_${QUICK_COMPONENT}.log" + + docker build -t "$QUICK_COMPONENT:$TFS_IMAGE_TAG" -f ./src/"$QUICK_COMPONENT"/Dockerfile . > "$BUILD_LOG" + echo " Pushing Docker image to '$TFS_REGISTRY_IMAGES'..." + + + + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$QUICK_COMPONENT:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + + TAG_LOG="$TMP_LOGS_FOLDER/tag_${QUICK_COMPONENT}.log" + docker tag "$QUICK_COMPONENT:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" + + PUSH_LOG="$TMP_LOGS_FOLDER/push_${QUICK_COMPONENT}.log" + docker push "$IMAGE_URL" > "$PUSH_LOG" + fi + done + fi + + echo " Adapting '$COMPONENT' manifest file..." + MANIFEST="$TMP_MANIFESTS_FOLDER/${COMPONENT}service.yaml" + cp ./manifests/"${COMPONENT}"service.yaml "$MANIFEST" + + if [ "$COMPONENT" == "pathcomp" ]; then + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-frontend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-frontend:" "$MANIFEST" | cut -d ":" -f4) + sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-frontend:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" + + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-backend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-backend:" "$MANIFEST" | cut -d ":" -f4) + sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-backend:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" + elif [ "$COMPONENT" == "dlt" ]; then + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-connector:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-connector:" "$MANIFEST" | cut -d ":" -f4) + sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-connector:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" + + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-gateway:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-gateway:" "$MANIFEST" | cut -d ":" -f4) + sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-gateway:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" + else + IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') + VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}:" "$MANIFEST" | cut -d ":" -f4) + sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" + fi + + sed -E -i "s#imagePullPolicy: .*#imagePullPolicy: Always#g" "$MANIFEST" + + # TODO: harmonize names of the monitoring component + + echo " Deploying '$COMPONENT' component to Kubernetes..." + DEPLOY_LOG="$TMP_LOGS_FOLDER/deploy_${COMPONENT}.log" + kubectl --namespace $TFS_K8S_NAMESPACE apply -f "$MANIFEST" > "$DEPLOY_LOG" + COMPONENT_OBJNAME=$(echo "${COMPONENT}" | sed "s/\_/-/") + #kubectl --namespace $TFS_K8S_NAMESPACE scale deployment --replicas=0 ${COMPONENT_OBJNAME}service >> "$DEPLOY_LOG" + #kubectl --namespace $TFS_K8S_NAMESPACE scale deployment --replicas=1 ${COMPONENT_OBJNAME}service >> "$DEPLOY_LOG" + + echo " Collecting env-vars for '$COMPONENT' component..." + + SERVICE_DATA=$(kubectl get service ${COMPONENT_OBJNAME}service --namespace $TFS_K8S_NAMESPACE -o json) + if [ -z "${SERVICE_DATA}" ]; then continue; fi + + # Env vars for service's host address + SERVICE_HOST=$(echo ${SERVICE_DATA} | jq -r '.spec.clusterIP') + if [ -z "${SERVICE_HOST}" ]; then continue; fi + ENVVAR_HOST=$(echo "${COMPONENT}service_SERVICE_HOST" | tr '[:lower:]' '[:upper:]') + echo "export ${ENVVAR_HOST}=${SERVICE_HOST}" >> $ENV_VARS_SCRIPT + + # Env vars for service's 'grpc' port (if any) + SERVICE_PORT_GRPC=$(echo ${SERVICE_DATA} | jq -r '.spec.ports[] | select(.name=="grpc") | .port') + if [ -n "${SERVICE_PORT_GRPC}" ]; then + ENVVAR_PORT_GRPC=$(echo "${COMPONENT}service_SERVICE_PORT_GRPC" | tr '[:lower:]' '[:upper:]') + echo "export ${ENVVAR_PORT_GRPC}=${SERVICE_PORT_GRPC}" >> $ENV_VARS_SCRIPT + fi + + # Env vars for service's 'http' port (if any) + SERVICE_PORT_HTTP=$(echo ${SERVICE_DATA} | jq -r '.spec.ports[] | select(.name=="http") | .port') + if [ -n "${SERVICE_PORT_HTTP}" ]; then + ENVVAR_PORT_HTTP=$(echo "${COMPONENT}service_SERVICE_PORT_HTTP" | tr '[:lower:]' '[:upper:]') + echo "export ${ENVVAR_PORT_HTTP}=${SERVICE_PORT_HTTP}" >> $ENV_VARS_SCRIPT + fi + + printf "\n" +done + +echo "Deploying extra manifests..." +for EXTRA_MANIFEST in $TFS_EXTRA_MANIFESTS; do + echo "Processing manifest '$EXTRA_MANIFEST'..." + if [[ "$EXTRA_MANIFEST" == *"servicemonitor"* ]]; then + kubectl apply -f $EXTRA_MANIFEST + else + kubectl --namespace $TFS_K8S_NAMESPACE apply -f $EXTRA_MANIFEST + fi + printf "\n" +done +printf "\n" + +for COMPONENT in $TFS_COMPONENTS; do + echo "Waiting for '$COMPONENT' component..." + COMPONENT_OBJNAME=$(echo "${COMPONENT}" | sed "s/\_/-/") + kubectl wait --namespace $TFS_K8S_NAMESPACE \ + --for='condition=available' --timeout=300s deployment/${COMPONENT_OBJNAME}service + printf "\n" +done + +if [[ "$TFS_COMPONENTS" == *"webui"* ]] && [[ "$TFS_COMPONENTS" == *"monitoring"* ]]; then + echo "Configuring WebUI DataStores and Dashboards..." + sleep 5 + + # Exposed through the ingress controller "tfs-ingress" + GRAFANA_URL="127.0.0.1:80/grafana" + + # Default Grafana credentials + GRAFANA_USERNAME="admin" + GRAFANA_PASSWORD="admin" + + # Configure Grafana Admin Password + # Ref: https://grafana.com/docs/grafana/latest/http_api/user/#change-password + GRAFANA_URL_DEFAULT="http://${GRAFANA_USERNAME}:${GRAFANA_PASSWORD}@${GRAFANA_URL}" + + echo ">> Updating Grafana 'admin' password..." + curl -X PUT -H "Content-Type: application/json" -d '{ + "oldPassword": "'${GRAFANA_PASSWORD}'", + "newPassword": "'${TFS_GRAFANA_PASSWORD}'", + "confirmNew" : "'${TFS_GRAFANA_PASSWORD}'" + }' ${GRAFANA_URL_DEFAULT}/api/user/password + echo + echo + + # Updated Grafana API URL + GRAFANA_URL_UPDATED="http://${GRAFANA_USERNAME}:${TFS_GRAFANA_PASSWORD}@${GRAFANA_URL}" + echo "export GRAFANA_URL_UPDATED=${GRAFANA_URL_UPDATED}" >> $ENV_VARS_SCRIPT + + echo ">> Installing Scatter Plot plugin..." + curl -X POST -H "Content-Type: application/json" -H "Content-Length: 0" \ + ${GRAFANA_URL_UPDATED}/api/plugins/michaeldmoore-scatter-panel/install + echo + + # Ref: https://grafana.com/docs/grafana/latest/http_api/data_source/ + QDB_HOST_PORT="${METRICSDB_HOSTNAME}:${QDB_SQL_PORT}" + echo ">> Creating datasources..." + curl -X POST -H "Content-Type: application/json" -H "Accept: application/json" -d '{ + "access" : "proxy", + "type" : "postgres", + "name" : "questdb-mon-kpi", + "url" : "'${QDB_HOST_PORT}'", + "database" : "'${QDB_TABLE_MONITORING_KPIS}'", + "user" : "'${QDB_USERNAME}'", + "basicAuth": false, + "isDefault": true, + "jsonData" : { + "sslmode" : "disable", + "postgresVersion" : 1100, + "maxOpenConns" : 0, + "maxIdleConns" : 2, + "connMaxLifetime" : 14400, + "tlsAuth" : false, + "tlsAuthWithCACert" : false, + "timescaledb" : false, + "tlsConfigurationMethod": "file-path", + "tlsSkipVerify" : true + }, + "secureJsonData": {"password": "'${QDB_PASSWORD}'"} + }' ${GRAFANA_URL_UPDATED}/api/datasources + echo + + curl -X POST -H "Content-Type: application/json" -H "Accept: application/json" -d '{ + "access" : "proxy", + "type" : "postgres", + "name" : "questdb-slc-grp", + "url" : "'${QDB_HOST_PORT}'", + "database" : "'${QDB_TABLE_SLICE_GROUPS}'", + "user" : "'${QDB_USERNAME}'", + "basicAuth": false, + "isDefault": false, + "jsonData" : { + "sslmode" : "disable", + "postgresVersion" : 1100, + "maxOpenConns" : 0, + "maxIdleConns" : 2, + "connMaxLifetime" : 14400, + "tlsAuth" : false, + "tlsAuthWithCACert" : false, + "timescaledb" : false, + "tlsConfigurationMethod": "file-path", + "tlsSkipVerify" : true + }, + "secureJsonData": {"password": "'${QDB_PASSWORD}'"} + }' ${GRAFANA_URL_UPDATED}/api/datasources + printf "\n\n" + + echo ">> Creating dashboards..." + # Ref: https://grafana.com/docs/grafana/latest/http_api/dashboard/ + curl -X POST -H "Content-Type: application/json" -d '@src/webui/grafana_db_mon_kpis_psql.json' \ + ${GRAFANA_URL_UPDATED}/api/dashboards/db + echo + + curl -X POST -H "Content-Type: application/json" -d '@src/webui/grafana_db_slc_grps_psql.json' \ + ${GRAFANA_URL_UPDATED}/api/dashboards/db + printf "\n\n" + + echo ">> Staring dashboards..." + DASHBOARD_URL="${GRAFANA_URL_UPDATED}/api/dashboards/uid/tfs-l3-monit" + DASHBOARD_ID=$(curl -s "${DASHBOARD_URL}" | jq '.dashboard.id') + curl -X POST ${GRAFANA_URL_UPDATED}/api/user/stars/dashboard/${DASHBOARD_ID} + echo + + DASHBOARD_URL="${GRAFANA_URL_UPDATED}/api/dashboards/uid/tfs-slice-grps" + DASHBOARD_ID=$(curl -s "${DASHBOARD_URL}" | jq '.dashboard.id') + curl -X POST ${GRAFANA_URL_UPDATED}/api/user/stars/dashboard/${DASHBOARD_ID} + echo + + printf "\n\n" +fi diff --git a/src/device/service/drivers/openconfig/templates/Inventory.py b/src/device/service/drivers/openconfig/templates/Inventory.py index 9897f04f9..d06f0ab89 100644 --- a/src/device/service/drivers/openconfig/templates/Inventory.py +++ b/src/device/service/drivers/openconfig/templates/Inventory.py @@ -75,6 +75,11 @@ def parse(xml_data : ET.Element) -> List[Tuple[str, Dict[str, Any]]]: component_location = xml_component.find('ocp:state/ocp:location', namespaces=NAMESPACES) if not component_location is None: add_value_from_tag(inventory['attributes'], 'location', component_location) + + + component_id = xml_component.find('ocp:state/ocp:id', namespaces=NAMESPACES) + if not component_id is None: + add_value_from_tag(inventory['attributes'], 'id', component_id) component_type = xml_component.find('ocp:state/ocp:type', namespaces=NAMESPACES) if component_type is not None: @@ -109,7 +114,7 @@ def parse(xml_data : ET.Element) -> List[Tuple[str, Dict[str, Any]]]: component_mfg_name = xml_component.find('ocp:state/ocp:mfg-name', namespaces=NAMESPACES) if not component_mfg_name is None: - add_value_from_tag(inventory['attributes'], 'manufacturer-name', component_mfg_name) + add_value_from_tag(inventory['attributes'], 'mfg-name', component_mfg_name) component_removable = xml_component.find('ocp:state/ocp:removable', namespaces=NAMESPACES) if not component_removable is None: diff --git a/src/nbi/service/__main__.py b/src/nbi/service/__main__.py index 362b0116d..7f3cec19d 100644 --- a/src/nbi/service/__main__.py +++ b/src/nbi/service/__main__.py @@ -18,6 +18,7 @@ from common.Constants import ServiceNameEnum from common.Settings import ( ENVVAR_SUFIX_SERVICE_HOST, ENVVAR_SUFIX_SERVICE_PORT_GRPC, get_env_var_name, get_log_level, get_metrics_port, wait_for_environment_variables) +from src.nbi.service.rest_server.nbi_plugins.ietf_hardware import register_ietf_hardware from .NbiService import NbiService from .rest_server.RestServer import RestServer from .rest_server.nbi_plugins.etsi_bwm import register_etsi_bwm_api @@ -68,6 +69,7 @@ def main(): register_ietf_network(rest_server) register_ietf_nss(rest_server) # Registering NSS entrypoint register_tfs_api(rest_server) + register_ietf_hardware(rest_server) rest_server.start() # Wait for Ctrl+C or termination signal diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py new file mode 100644 index 000000000..ca8f4064f --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py @@ -0,0 +1,40 @@ + +import logging +from flask import request +from flask.json import jsonify +from flask_restful import Resource +from common.tools.context_queries.Device import get_device +from context.client.ContextClient import ContextClient +from ..tools.Authentication import HTTP_AUTH +from ..tools.HttpStatusCodes import HTTP_OK, HTTP_SERVERERROR +from .YangHandler import YangHandler + +LOGGER = logging.getLogger(__name__) + +class Hardware(Resource): + @HTTP_AUTH.login_required + def get(self, device_uuid : str): + LOGGER.debug('Device UUID: {:s}'.format(str(device_uuid))) + LOGGER.debug('Request: {:s}'.format(str(request))) + + try: + context_client = ContextClient() + device = get_device( + context_client, device_uuid, rw_copy=False, + include_endpoints=False, include_config_rules=False, include_components=True + ) + if device is None: + raise Exception('Device({:s}) not found in database'.format(str(device_uuid))) + + yang_handler = YangHandler('ietf-hardware') + hardware_reply = yang_handler.compose(device) + yang_handler.destroy() + + response = jsonify(hardware_reply) + response.status_code = HTTP_OK + except Exception as e: # pylint: disable=broad-except + MSG = 'Something went wrong Retrieving Hardware of Device({:s})' + LOGGER.exception(MSG.format(str(device_uuid))) + response = jsonify({'error': str(e)}) + response.status_code = HTTP_SERVERERROR + return response \ No newline at end of file diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json new file mode 100644 index 000000000..e310632fa --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json @@ -0,0 +1,37305 @@ +{ + "devices": [ + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/3\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/8\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/3]", + "resource_value": "{\"uuid\": \"1/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/4]", + "resource_value": "{\"uuid\": \"1/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/8]", + "resource_value": "{\"uuid\": \"1/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "008d9515-4174-5ef5-947f-10521d4c5afb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "0286058e-d5b2-5470-812c-700ee841763b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "0799c5b6-f94b-53c2-8136-4cc9c7cd7122" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "0acf7879-56ac-51d9-9030-8e62fb4951e7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "0ed3e9f2-2281-5b1e-a2b5-8000e0b0796a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "1446f716-e87a-5120-8652-93e7954dcffe" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "216d66e9-13e5-50dd-ace5-c2ee7adcb08d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "2c395317-8081-517d-9c29-4e502e277f8f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "352b6e37-d3e0-5cae-baf2-7e7422d60fed" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "36433475-17c6-56fa-afe8-411f4f505e66" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "3e6668ae-34b0-5802-a425-d8052e5b98ab" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "403f3e35-3581-5b3d-9ae6-2bebcc877a7a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "40a764b6-a89f-5673-b85b-c1602ee5e8c1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "448c1d22-bd32-5a7d-b8bd-101085de14e1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "498ad6ec-b283-56e2-a029-01332940066b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "49bb3010-d22a-5e88-93fe-773439e9e9b5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "55ec3f20-3631-5619-8aa8-2146ca8963f3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "59e9967a-9f20-5ab7-8085-3bf65f2fef14" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "5c973fa3-f6da-544e-bb63-6e2dfafa0bb8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "5e61474e-0278-51fe-9213-11c563a079d1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "6135e462-47f7-5a2a-9415-4d606a6c1636" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "661bdcf6-71d0-5c79-b999-057f5041af2a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "69ea76be-b363-58bd-8062-bc0c8ef4ccac" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "6a20f2de-dc11-5789-80ed-7b7a30d2f18a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "6ac7f8a6-8d7d-5ba3-8ac3-ffca89517a4c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "6f61e7da-6fa5-5305-9ab9-835f1e3e4dc0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "72ebcc64-eb48-5d8a-9523-f0f947a8a115" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "77330b46-f237-56c8-9f60-3da0ec2c4a55" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "77569bc1-90ec-5b3f-bc49-414dcd9c3834" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "782cbe5e-c31b-5845-80f5-b078a70f9ea0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "7d3652f0-3396-59e7-b8bb-4fd1c1482ee6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "81194f7f-7278-5375-96cb-a4bf671a4bfc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "8ed9276d-d0d6-54bc-a83c-c2f98cc951f2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "97faf862-54cc-5c56-a97b-b28898916de3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "9d3cd75b-6141-58ce-9ada-e9e6188dcba9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "9f7ceae8-cb1c-50c2-8381-dec7e2f9831c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "a2038e0a-c4b6-5009-bdf2-dc6c53554282" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "a335df94-788a-5d76-8fff-be9eb02f601b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "ab1e16cb-3465-5474-98d6-4320a09d5334" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "ac5e7f86-11dd-5475-aedc-21e3fd06bf4a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "b0cb74a9-1e64-5ef0-9fed-a56f47baa89c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "b3ce7fb1-6f98-5a5c-bfed-1802eedb54ed" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "b6711860-a240-59aa-928a-61c6791dc6ca" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "bd2b8065-ef71-54b8-99f6-11dc06944847" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "d164bd81-2f0b-53a5-b46e-381180423bda" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "dbac5c81-4de1-5bc6-b319-9cbf00cbfb22" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "e10e3c22-0309-502a-b633-9fe0477774dc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "e13f1da9-556c-5d37-992f-cdc06378629a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "e95d3616-7224-5364-bda7-28a38cc42d01" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "eb5e3d6e-8044-5e0e-a9e3-5af5801d03a2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "f3cd040d-f8cf-5b68-888e-79c0a3d87b8b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "f4824c23-67f1-5396-b7b4-8dee426a839a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "endpoint_uuid": { + "uuid": "f6d8fa4c-ddeb-5425-86bc-1529fed0a2e2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + } + ], + "device_id": { + "device_uuid": { + "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R9" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/9\"\n},\n{\n\"uuid\": \"1/10\"\n},\n{\n\"uuid\": \"1/11\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/9]", + "resource_value": "{\"uuid\": \"1/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/10]", + "resource_value": "{\"uuid\": \"1/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/11]", + "resource_value": "{\"uuid\": \"1/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "00f6aa6c-5788-5274-bc5f-7496cef3112f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "01bf7c0d-ec50-58d0-955a-4e968eb2de0e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "0350a28a-464f-51d9-9085-bdea7ef79ac2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "07251cd0-67b4-5e21-a4d6-3f3b089dcbcc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "115291b8-d6b1-5611-bcd8-9471814e643b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "11bbeac7-1648-5c9c-a4f8-779431030925" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "1de97406-ad9e-5ead-a7d9-fe44a43a0093" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "2f3e6481-caaf-596e-a948-55dfe5f1b894" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "3e045a1d-c9b1-5cd0-bddb-2d91570395ff" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "449225a7-9dee-5f5e-904f-84ad889a0913" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "46164501-1ca8-5811-bf4e-3f111f4dd832" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "4b01fbc3-a6a6-5f4c-b321-3b2478a36e3e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "4e7edd07-74b9-56e8-9f12-b1b33eb13c00" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "52947e65-183d-5f0e-be59-cd3ca1f70f7e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "59c6e3a8-69a2-5473-93d6-f74441b21e4d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "5b1c64fe-9dcd-5bca-a049-4b6f1afe3d0b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "5cc15e1c-37cf-5926-b119-8ecb61b112d3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "5e00e431-fdea-5443-b425-50655124cf25" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "61489364-2df5-528d-bc35-cc022daf3045" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "69520fec-e520-57d9-aa95-c5d99ddb5be0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "722ad097-5287-5088-b071-98e5a23427fe" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "748c165e-3bbd-59bf-9329-dd9fe25f78bb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "75121ae7-d93a-5aa2-9888-5c13c0effdbc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "81cb5dba-adf9-524e-9ddf-cad5dd567f5c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "8726e2ba-c159-5dc6-a016-c15c02c629ea" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "9c562cea-011b-5088-bc5f-d4728274bd05" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "a0b0a10e-bfa6-5bd3-9a13-ae44fd86a19b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "a7041317-98fb-554f-9ce7-703252d17153" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "a8379176-f9a3-5b31-a26d-9419dcaad050" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "ab6eede8-a7d2-57a3-bbe3-8d85b16b9241" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "ac15c02d-0850-507c-b449-ea4c619ccd0a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "ac8a2cf1-4b5e-5464-be25-3c5fee3655be" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "ad63feb7-336e-50be-843b-a39bc49d578d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "af9fcc39-8302-5b7e-9290-9251a2533802" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "c0159c06-e88d-585b-a1a0-545402141518" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "c64e5269-4f60-5e2b-a837-4197919e0bd4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "cda4bbe8-23b6-5e77-a5a1-ca1f54c44ef3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "d1333097-eb53-56e5-bf35-3feca03463f9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "d3a81109-dd52-5df4-95ac-4c7dd828b696" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "d55e5aca-e17e-5769-a85b-6ef2c7628635" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "daa8c9bb-7715-547b-a2f2-9ce6ce02fd6c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "dd72a728-9ad5-578d-b49b-dfe9995d1ba8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "e1cb88f4-4966-56f5-9865-f7d45feb3518" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "e4129616-9d1b-55c7-98d8-b436bf4ef018" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "e795638b-9e90-5fba-9d1a-35d9d66c28f2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "e84d895a-54f8-5387-b59d-b4efba5e9b17" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "e8ddb0dc-c992-5e14-a410-533bc50b08e6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "eaf9a1ef-3911-5a2e-8995-389e12526109" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "f4dd6290-69b0-54c8-b4fd-19fe6929aacf" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "f6196751-8005-5902-9ebd-fade19aee5d0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "fcfb64a3-2233-5f6e-bef1-84312e9b19ed" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "fd324f8f-897a-546c-bb96-a12d220c01a3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "endpoint_uuid": { + "uuid": "fe3a31c1-cffd-524f-bb05-30baabde2460" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + } + ], + "device_id": { + "device_uuid": { + "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R3" + }, + { + "components": [ + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "00778c55-e1f1-5801-b9b7-25815c65cb1b" + }, + "name": "eth-1/0/10", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "01310680-37b7-58bf-914a-1ba4583a16c2" + }, + "name": "eth-1/0/17", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "01b7daf5-f25e-51da-96b8-d14f7249f6b4" + }, + "name": "eth-1/0/1", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "08b718c1-5523-5c70-8699-9e7cc11ac171" + }, + "name": "Transceiver#10", + "parent": "eth-1/0/10", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "14c2bb4e-7d9c-5e32-a53a-0bbbdcd720c3" + }, + "name": "eth-1/0/8", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "15411cf7-182d-5dbe-89e7-260d95798ec7" + }, + "name": "Transceiver#14", + "parent": "eth-1/0/14", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "1574d8e0-900f-5047-87f6-dc1f09883836" + }, + "name": "eth-1/0/24", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "1b97500c-f4d6-57fc-b8dd-259c150aa33d" + }, + "name": "eth-1/0/13", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "1c8e6596-1eb7-517e-8324-c74875efb9cc" + }, + "name": "Transceiver#25", + "parent": "eth-1/0/25", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2057d491-54e2-52f3-be89-7e8453af1956" + }, + "name": "eth-1/0/25", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"false\"", + "location": "\"Power Supplies tray\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "211c3af7-d69a-5c23-b911-2dc522afbf1d" + }, + "name": "Power-Supply#2", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "21cbcc2b-4750-5476-8df6-2ba67470b336" + }, + "name": "eth-1/0/20", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "22de51e1-0a09-59b3-864e-8fd379931bb6" + }, + "name": "Fan#1", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "24639859-aa84-532a-ac92-d7fc91db0a22" + }, + "name": "eth-1/0/15", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2815040e-3a39-545e-9799-4f223014dbfc" + }, + "name": "eth-1/0/18", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2cc805ae-4959-5c53-8d21-98314a61bdfb" + }, + "name": "eth-1/0/11", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"QSFP28\"", + "removable": "\"true\"", + "serial-num": "\"INCNCNLAZA01015\"", + "vendor": "\"INNOLIGHT \"" + }, + "component_uuid": { + "uuid": "323bb3fe-391d-5cc2-8cf0-0b99ec874045" + }, + "name": "Transceiver#2", + "parent": "eth-1/0/2", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "39498531-80a9-5660-9018-04e215ffe618" + }, + "name": "Transceiver#20", + "parent": "eth-1/0/20", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "3b8c5d33-58ab-5403-80fa-395bbf8e91a0" + }, + "name": "eth-1/0/4", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"false\"" + }, + "component_uuid": { + "uuid": "400555ff-395a-54c0-a8e6-6702c0505dbe" + }, + "name": "Transceiver#30", + "parent": "eth-1/0/30", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "43455150-4a95-58d8-bf84-d0e83095431b" + }, + "name": "eth-1/0/9", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "49a31219-0e33-5d0f-a45a-3bf285f9e2fd" + }, + "name": "Transceiver#9", + "parent": "eth-1/0/9", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "4c860a8b-e262-5d27-8f98-0b0be6562a4d" + }, + "name": "Transceiver#26", + "parent": "eth-1/0/26", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "52aaa9ea-61f7-5052-b988-2fac4afe4172" + }, + "name": "Fan#5", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "54a2e18e-edfc-5b65-a5c3-20c7bd7e3593" + }, + "name": "eth-1/0/22", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "55937b2f-19d0-52e6-ac51-3ca68d5ba047" + }, + "name": "eth-1/0/6", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"1G Copper\"" + }, + "component_uuid": { + "uuid": "58ea7baa-3ac1-5501-9fdf-a1310881fe83" + }, + "name": "eth-1/0/30", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"QSFP28\"", + "removable": "\"true\"", + "serial-num": "\"INCNCNLBIA94000\"", + "vendor": "\"INNOLIGHT \"" + }, + "component_uuid": { + "uuid": "6ba73403-f894-5781-8a83-a906649b26be" + }, + "name": "Transceiver#1", + "parent": "eth-1/0/1", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "6e5b78c9-869a-5fbe-90b2-0cd287b2e4be" + }, + "name": "eth-1/0/26", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"ACW1747006N4 \"", + "vendor": "\"Arista Networks\"" + }, + "component_uuid": { + "uuid": "6fe099f7-0b6d-5fdb-bdf5-72046ec4c6b4" + }, + "name": "Transceiver#11", + "parent": "eth-1/0/11", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"AD1331A02S9 \"", + "vendor": "\"Intel Corp \"" + }, + "component_uuid": { + "uuid": "72f4bcf3-d7c7-59e8-80c6-a8cd2971f17d" + }, + "name": "Transceiver#13", + "parent": "eth-1/0/13", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"CRXT-T0T12B\"", + "empty": "\"false\"", + "location": "\"Power Supplies tray\"", + "manufacturer-name": "\"CRXT-T0T12B\"", + "removable": "\"true\"", + "serial-num": "\"21030005\"" + }, + "component_uuid": { + "uuid": "7905b083-401b-5685-8ec2-ad2ba21f716b" + }, + "name": "Power-Supply#1", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "7dbf69ba-707e-54b6-98fc-f907f40234b4" + }, + "name": "eth-1/0/23", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"CN04HG00184001E\"", + "vendor": "\"DELL EMC \"" + }, + "component_uuid": { + "uuid": "7f5c81bf-e019-58d4-96a3-9fbb9edc22f8" + }, + "name": "Transceiver#16", + "parent": "eth-1/0/16", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"1G Copper\"" + }, + "component_uuid": { + "uuid": "8ae15e57-f162-567c-a619-df5b548c0902" + }, + "name": "eth-1/0/29", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"false\"" + }, + "component_uuid": { + "uuid": "8e3677d0-42a7-5942-9b09-e86657cbcd41" + }, + "name": "Transceiver#27", + "parent": "eth-1/0/27", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"F162250012 \"", + "vendor": "\"Edgecore \"" + }, + "component_uuid": { + "uuid": "9b42bf35-e457-5303-b765-523009f7a5a4" + }, + "name": "Transceiver#12", + "parent": "eth-1/0/12", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "9beab43b-9bb4-5672-adc3-f6329e4ba827" + }, + "name": "eth-1/0/21", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "a3154e0c-8fb7-5cda-b245-4be61a10b220" + }, + "name": "eth-1/0/19", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "a40ba96e-db02-502f-b8e7-c4ce60e6a681" + }, + "name": "Transceiver#4", + "parent": "eth-1/0/4", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "a4cfdc29-bcaa-57ec-8c83-126e0e77c2ec" + }, + "name": "eth-1/0/5", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "a9e9c4ec-265a-5039-848c-2ebf578855f3" + }, + "name": "eth-1/0/3", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"AD0911A00C2 \"", + "vendor": "\"Intel Corp \"" + }, + "component_uuid": { + "uuid": "aae72351-d863-5c58-b76b-bba4b2075ef9" + }, + "name": "Transceiver#19", + "parent": "eth-1/0/19", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"false\"" + }, + "component_uuid": { + "uuid": "aaf4e1d8-b1fe-5864-a1ce-ae8d6b188293" + }, + "name": "Transceiver#28", + "parent": "eth-1/0/28", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "ad294931-6af3-51dd-a869-77b0737e8d2c" + }, + "name": "Transceiver#5", + "parent": "eth-1/0/5", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "b49ce3de-b5f9-5f02-b2f6-aa9e0c4ab9c0" + }, + "name": "Transceiver#18", + "parent": "eth-1/0/18", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"7315-30X-O-48V-S\"", + "empty": "\"false\"", + "hardware-rev": "\"R0B\"", + "manufacturer-name": "\"7315-30X-O-48V-S\"", + "mfg-date": "\"2021-10-25\"", + "removable": "\"false\"", + "serial-num": "\"731530X2143013\"", + "software-rev": "\"21.5.1 (9799)\"" + }, + "component_uuid": { + "uuid": "bae372e1-9b13-5f5e-aed0-0dfe87d9c9b7" + }, + "name": "chassis", + "parent": "chassis", + "type": "CHASSIS" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "c4a286b4-14bc-508c-94d5-3210d5a4670d" + }, + "name": "Fan#3", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "c9a857e4-736c-54a1-abe8-bd5768f556b4" + }, + "name": "Transceiver#6", + "parent": "eth-1/0/6", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"ACW1747006MV \"", + "vendor": "\"Arista Networks\"" + }, + "component_uuid": { + "uuid": "ca78897e-e256-5a57-91e8-792e92280c30" + }, + "name": "Transceiver#23", + "parent": "eth-1/0/23", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "cb6fb97c-fe8f-528f-b34e-c7c9ee52e485" + }, + "name": "Transceiver#17", + "parent": "eth-1/0/17", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "cce67881-0cf8-5778-83fc-099e4dddfa50" + }, + "name": "eth-1/0/14", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "ce3fb53f-c07c-5b1d-b8b3-8c08da8800b9" + }, + "name": "Fan#4", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "d0757c2c-8d4b-57aa-8f17-c5fab40551d4" + }, + "name": "eth-1/0/2", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "d54a9b97-d671-5c84-988d-1d0bc3a62f55" + }, + "name": "Transceiver#7", + "parent": "eth-1/0/7", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "d6e15727-40bd-51f6-a7c4-7356358a60b6" + }, + "name": "eth-1/0/16", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "d7d2e358-3203-5e6b-a23b-eecc4f866fa9" + }, + "name": "Transceiver#22", + "parent": "eth-1/0/22", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "da6e0382-5ca3-5f23-8ae6-1c8ccc897c65" + }, + "name": "Transceiver#24", + "parent": "eth-1/0/24", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "db647a95-a6e8-5ad3-8d9a-0842517fe27d" + }, + "name": "eth-1/0/7", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "de36dafb-2d66-54ef-9351-54ee4a1b0f9b" + }, + "name": "Transceiver#3", + "parent": "eth-1/0/3", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"1G Copper\"" + }, + "component_uuid": { + "uuid": "df37f614-ec9f-5181-8c41-c322f31586ea" + }, + "name": "eth-1/0/27", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"1G Copper\"" + }, + "component_uuid": { + "uuid": "df910973-1c02-53ff-8dde-3bce8955a73a" + }, + "name": "eth-1/0/28", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"false\"" + }, + "component_uuid": { + "uuid": "e43d275a-e710-5a00-b1c9-6b964f4214f2" + }, + "name": "Transceiver#29", + "parent": "eth-1/0/29", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"CN04HG0018P13RE\"", + "vendor": "\"DELL EMC \"" + }, + "component_uuid": { + "uuid": "ecf4c207-e36b-52cb-a34a-2cecc4030d25" + }, + "name": "Transceiver#15", + "parent": "eth-1/0/15", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "f3e2636c-c742-5542-8586-7a7d516e8544" + }, + "name": "Fan#2", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "fb5d6c6d-edf2-5d17-b39f-62a889797be3" + }, + "name": "Transceiver#8", + "parent": "eth-1/0/8", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"ACW1747006MZ \"", + "vendor": "\"Arista Networks\"" + }, + "component_uuid": { + "uuid": "fe86ab62-509d-513a-b378-2bc18a794542" + }, + "name": "Transceiver#21", + "parent": "eth-1/0/21", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "ffb8587d-ddb3-5eec-ba78-bb5be047def2" + }, + "name": "eth-1/0/12", + "parent": "", + "type": "PORT" + } + ], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "10.95.90.127" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "830" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/chassis", + "resource_value": "{\"attributes\": {\"description\": \"7315-30X-O-48V-S\", \"empty\": \"false\", \"hardware-rev\": \"R0B\", \"manufacturer-name\": \"7315-30X-O-48V-S\", \"mfg-date\": \"2021-10-25\", \"removable\": \"false\", \"serial-num\": \"731530X2143013\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#1", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#2", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#3", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#4", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#5", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#1", + "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12B\", \"empty\": \"false\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12B\", \"removable\": \"true\", \"serial-num\": \"21030005\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#2", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"location\": \"Power Supplies tray\", \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/1", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#1", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"INCNCNLBIA94000\", \"vendor\": \"INNOLIGHT \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/2", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#2", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"INCNCNLAZA01015\", \"vendor\": \"INNOLIGHT \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/3", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#3", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/4", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#4", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/5", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#5", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/6", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#6", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/7", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#7", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/8", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#8", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/9", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#9", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/10", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#10", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/11", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#11", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"ACW1747006N4 \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/12", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#12", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F162250012 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/13", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#13", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"AD1331A02S9 \", \"vendor\": \"Intel Corp \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/14", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#14", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/15", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#15", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG0018P13RE\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/16", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#16", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG00184001E\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/17", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#17", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/18", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#18", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/19", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#19", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"AD0911A00C2 \", \"vendor\": \"Intel Corp \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/20", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#20", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/21", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#21", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"ACW1747006MZ \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/22", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#22", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/23", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#23", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"ACW1747006MV \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/24", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#24", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/25", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#25", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/26", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#26", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/27", + "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#27", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/28", + "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/28\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#28", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [30, \"PORT\"], \"name\": \"Transceiver#28\", \"parent-component-references\": \"eth-1/0/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/29", + "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/29\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#29", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [31, \"PORT\"], \"name\": \"Transceiver#29\", \"parent-component-references\": \"eth-1/0/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/30", + "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/30\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#30", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [32, \"PORT\"], \"name\": \"Transceiver#30\", \"parent-component-references\": \"eth-1/0/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/1]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/2]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/3]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/4]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/5]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/6]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/7]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/8]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/9]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/10]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/11]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/12]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/13]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/14]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/15]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/16]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/17]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/18]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/19]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/20]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/21]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/22]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/23]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/24]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/25]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/26]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/27]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/28]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/29]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/30]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/1]", + "resource_value": "{\"description\": \"\\\"Conexion con XR\\\"\", \"mtu\": 1522, \"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/2]", + "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/3]", + "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/4]", + "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/5]", + "resource_value": "{\"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/6]", + "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/7]", + "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/8]", + "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/9]", + "resource_value": "{\"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10]", + "resource_value": "{\"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/11]", + "resource_value": "{\"description\": \"\\\"Conexion con HL4-2-1\\\"\", \"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/12]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-3-1\\\"\", \"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/13]", + "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/14]", + "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15]", + "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16]", + "resource_value": "{\"description\": \"\\\"Conexion con IPM\\\"\", \"mtu\": 1522, \"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/17]", + "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/18]", + "resource_value": "{\"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19]", + "resource_value": "{\"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20]", + "resource_value": "{\"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22]", + "resource_value": "{\"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23]", + "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/24]", + "resource_value": "{\"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25]", + "resource_value": "{\"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/26]", + "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/27]", + "resource_value": "{\"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/28]", + "resource_value": "{\"name\": \"eth-1/0/28\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/29]", + "resource_value": "{\"name\": \"eth-1/0/29\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/30]", + "resource_value": "{\"name\": \"eth-1/0/30\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]/subinterface[0]", + "resource_value": "{\"address_ip\": \"10.95.90.127\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]", + "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]/subinterface[0]", + "resource_value": "{\"address_ip\": \"5.5.5.6\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]", + "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/1.246]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.2.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"1522\", \"name\": \"eth-1/0/1.246\", \"type\": \"l3ipvlan\", \"vlan_id\": 246}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/1.246]", + "resource_value": "{\"description\": \"Pruebas XR\", \"mtu\": 1522, \"name\": \"eth-1/0/1.246\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/2.357]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.3.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/2.357\", \"type\": \"l3ipvlan\", \"vlan_id\": 357}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/2.357]", + "resource_value": "{\"description\": \"Pruebas XR\", \"name\": \"eth-1/0/2.357\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/11.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"98.5.55.4\", \"address_ipv6\": \"2001::98:5:55:4\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"mtu\": \"1555\", \"name\": \"eth-1/0/11.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/11.55]", + "resource_value": "{\"mtu\": 1555, \"name\": \"eth-1/0/11.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/12.42]/subinterface[0]", + "resource_value": "{\"address_ip\": \"98.4.42.5\", \"address_ipv6\": \"2001::98:4:42:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/12.42\", \"type\": \"l3ipvlan\", \"vlan_id\": 42}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/12.42]", + "resource_value": "{\"name\": \"eth-1/0/12.42\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/13.13]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/13.13\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/13.13]", + "resource_value": "{\"name\": \"eth-1/0/13.13\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/14.70]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/14.70\", \"type\": \"l3ipvlan\", \"vlan_id\": 70}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/14.70]", + "resource_value": "{\"name\": \"eth-1/0/14.70\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15.203]/subinterface[0]", + "resource_value": "{\"address_ip\": \"150.2.203.5\", \"address_ipv6\": \"2001::150:2:203:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/15.203\", \"type\": \"l3ipvlan\", \"vlan_id\": 203}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15.203]", + "resource_value": "{\"name\": \"eth-1/0/15.203\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.69]/subinterface[0]", + "resource_value": "{\"address_ip\": \"192.168.69.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"1522\", \"name\": \"eth-1/0/16.69\", \"type\": \"l3ipvlan\", \"vlan_id\": 69}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.69]", + "resource_value": "{\"mtu\": 1522, \"name\": \"eth-1/0/16.69\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/17.205]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/17.205\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/17.205]", + "resource_value": "{\"name\": \"eth-1/0/17.205\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.19.1\", \"address_ipv6\": \"2001::99:5:19:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 19}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.20.1\", \"address_ipv6\": \"2001::99:5:20:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 20}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-2-2\\\"\", \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.111]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.1.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"3000\", \"name\": \"eth-1/0/21.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.111]", + "resource_value": "{\"mtu\": 3000, \"name\": \"eth-1/0/21.111\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.40]/subinterface[0]", + "resource_value": "{\"address_ip\": \"10.3.55.40\", \"address_ipv6\": \"2001::99:4:40:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/23.40\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.40]", + "resource_value": "{\"description\": \"\\\"Conexion con HL3-1-2\\\"\", \"name\": \"eth-1/0/23.40\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[OSCAR]", + "resource_value": "{\"policy_name\": \"OSCAR\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[OTRO_AS_PATH_SET]", + "resource_value": "{\"policy_name\": \"OTRO_AS_PATH_SET\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]", + "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.6\", \"type\": \"DEFAULT_INSTANCE\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[ISIS]", + "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[BGP]", + "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[XR]", + "resource_value": "{\"name\": \"XR\", \"type\": \"L3VRF\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_OPENCONFIG" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "1b773a03-f3d0-53e6-98ad-cb3f6c5983da" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "1b836541-0cee-5a4c-96f5-3104dc97444c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "201efb36-bd05-583a-84eb-329dfdcdddd0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "265cdc1e-d358-5cc4-bd50-2e1b78781b1f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "2be6e8ad-b9f9-50d8-89d4-6963969ea4d4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "2e9ff47a-6577-5c39-9e71-ada12fe09080" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "3677c1c1-6b87-5478-8fd6-997deeddc5c0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "3f535fc7-2848-51bd-b243-b2e24bf805a3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "4266450a-4f29-59d6-b0b8-4b3e08851410" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "45da321c-790a-5924-999c-17335b99ad6e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "4cf72ad5-b3ca-5a8c-b3fd-95c8ae773cdb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "5d4a9940-eecb-540c-9e07-d947727195b6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "6a6e8af4-77c8-578f-a307-7708db102385" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "6aa76d3a-d85b-588b-8abe-58a31d965446" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "6c90dd43-86bb-5b5e-a6c4-ddb532c098bc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "7a76d8f8-fbf6-5286-aab1-d7c7862bce20" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "83ac84c2-f83b-5746-8c45-a8f0cfa6c6cc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "90e49e40-7174-54f6-aa7d-ebfc9d604106" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "916536c2-7e74-5e8a-8311-09817b1885a4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "9b426a30-b6da-509c-9693-b10f91ac1cfb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "9c773f1e-1254-55a9-ac14-4784df24a278" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "a6d5c32c-d5fc-5481-b41b-f0bd9dd9a18b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "ab60d672-d742-5747-8cc0-ef68f3dfdb39" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "aebc391d-371a-519a-8bc7-48416528a4c9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "b10a0a5b-2ac4-5a5d-a230-698aceb871a8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "b5cbabde-9096-5d4d-846e-ea732e3a9942" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "c0209652-ee27-53d5-876e-2379f5e31d88" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "c64ddfdf-a7fb-557d-a5da-a5457faf3c65" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "e85ff816-2ba0-55ff-97ce-c5e5887238e6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "endpoint_uuid": { + "uuid": "fc4a92bf-49a8-546c-9cb8-4182492da1a5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/21" + } + ], + "device_id": { + "device_uuid": { + "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "packet-router", + "name": "R199" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/2\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/2]", + "resource_value": "{\"uuid\": \"1/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/4]", + "resource_value": "{\"uuid\": \"1/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/14]", + "resource_value": "{\"uuid\": \"1/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "00118309-6edb-5dc5-aceb-97ae37816910" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "0675ff9b-42ed-5216-8b12-2776f1da30ea" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "07367b74-2b7f-55d5-a910-f7ddb5dbcbe8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "0f8a40d9-7c24-5444-b399-be085cde9017" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "15da3804-8635-5212-9d10-f24a3d11f677" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "162e1061-4a21-52be-88bd-ed4fbddd5d63" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "165990a2-7755-52cb-af51-7ceba005a453" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "179c986d-db43-5c9f-9cfb-3919f42deb22" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "1d059e64-7bfa-532e-85d5-b911e75b9d00" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "22bacecd-c3b9-5359-baf6-d06178e13d49" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "2e7302bf-2553-5d87-80f6-84acbf045e0d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "404db7aa-59d7-5063-b078-596d25d2d4c6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "632edc18-d6ba-5ee9-9973-d0838234540c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "63b8f2aa-3636-58f6-b86f-1ef05be9f901" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "66f63c6e-1bcc-5b3b-861f-0ab72f008f82" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "696655c3-f604-5a99-89ed-7281295cb1de" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "6c498da3-67d3-5710-b9bb-820aa8579b61" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "6e6e7473-54ad-5c3e-b86a-017e4dd5b0cd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "76234d0c-5ae8-5fa1-9060-afb803f1ad6d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "95d55f2f-a591-5156-891b-f45888d7d755" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "96bdbc64-fcfe-5983-bdb3-7c1ddafa4965" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "9a92de93-f5f7-50e5-bf75-e8a687e48bbb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "9b38c1ed-c2d1-5eab-ae10-ccac9325fa58" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "a1790464-c78d-5258-9dbe-0bfd60909da6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "aa30ff67-23d2-52ec-b405-46531c9510f2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "ac6ee438-49f0-536d-b082-0d874bda33d5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "acbbd5fe-c8bf-54b8-a4ca-9f3d9dc410f2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "af6760db-b952-58f7-8d91-7c776c7750f7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "b41152a1-428c-51de-a42d-d51d5d3fb156" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "b57ed803-ee20-586f-959e-1a42d51dfc6c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "bcfc99bf-5d32-5fab-95ab-56d6ea374926" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "bdc6d7f4-5f1d-56ae-a87e-c74bd8e50ebc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "c035fdf7-704b-5854-8b52-906a8d173f41" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "c57bef02-b9a2-56c2-83de-eafa3b96a057" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "c61930b9-c952-5df0-a4c5-23bce6e35fdb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "ca8238df-049d-5b4f-9f01-372d2d7f910d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "cab7d834-a793-5929-9684-0657814007b1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "cb36d1d2-61bc-52dd-b528-8091d33ba9bf" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "cbf47e7e-2f11-5a9b-88db-028d6f3a4fa6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "cc67c658-0c27-5356-b71c-b76ddf11a25a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "ce18fd93-ddb2-5cb4-8e49-9fd33f164c91" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "d5c8a9a3-aaa0-5c8b-852f-58ae0c99dbad" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "d9db9ad5-5265-5ab1-b72c-48b411349b28" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "dafe5096-2042-5dda-8600-0a2f27ec1be6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "dd366feb-3074-5a95-a5ab-b2aff730db09" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "e04e39e1-e903-5b9a-b9b0-16eac20c46f8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "e437d5c7-5153-5820-b251-4ede69c0d54e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "e4717974-a13e-57ee-a004-8ef022aa2934" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "f84b3867-8b6d-5526-b7c7-513eaf3d5dac" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "fb14035e-73fa-5c0e-ae78-f7220dce33e0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "fc5050f9-f7cf-5a47-8495-9b50596df9be" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "fc97a4cc-f374-54dc-b8fc-2bab6e9be644" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "endpoint_uuid": { + "uuid": "fd461209-8977-50d4-bbf5-aef775e7445a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + } + ], + "device_id": { + "device_uuid": { + "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R5" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/3\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/10\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/3]", + "resource_value": "{\"uuid\": \"1/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/4]", + "resource_value": "{\"uuid\": \"1/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/10]", + "resource_value": "{\"uuid\": \"1/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "017c24bf-4144-51ad-9a26-1a1356ff3051" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "01e79575-7490-500e-af6c-621d4c4d4e56" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "022719ab-196f-57f5-9808-70cdcfc85f1c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "08533354-a239-5471-9061-e641111f0318" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "105a6647-ac66-5d14-9009-9c3bf6e062ba" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "148eab23-774b-5394-bcb7-b73a2e2202a9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "1dafb84a-c35d-5257-b617-565526e04a95" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "25ec16ef-6742-563e-9353-bb1c0dc4a235" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "2816feb2-9115-50a7-bb5f-e8fdffd65c84" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "29879d55-4407-565d-bafe-5c86cba8b1d6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "2cbfeb47-5806-5574-8f2c-ebc83c1d3e48" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "3582ed7f-d910-5ce2-8302-063bf4d12a59" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "3599e882-1850-5b38-93f9-6fc623a90d6e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "39cfee0b-7e36-5965-8ab1-715141f09095" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "3e30088f-33ee-5042-8d12-89224cdf2211" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "40dbc288-d110-5f9c-926f-ed4026498066" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "415057ba-e597-5649-b8ac-a6dd204dcc72" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "43188953-0cc4-51db-a3be-f302344645af" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "486a7e29-b363-5536-9965-a341c8b035a5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "50469087-daec-5483-b0da-acdbd14a2c1b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "51e5097c-11b7-5640-bcad-00d7e16b3805" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "52bf84a4-ae0d-5b85-b936-11eb08052f43" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "535dc8fb-3667-5cbc-89e9-71131b139f69" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "584206c7-b3be-5e81-9213-76bd2166ed12" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "5845a3eb-7b1c-5bf8-a7aa-2bf7b1956e5d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "64937eb6-9b8b-5fae-b766-ea38c8ff548b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "6e096f6a-a56b-5238-8a21-320a3fff5dde" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "74b8d19e-7946-5ae3-96c2-718ce878e9e5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "8500d490-2856-5542-8dee-770603f76c64" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "86ea6a1b-1286-5af8-a844-db6e3e37846d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "887ef483-1321-5df6-8a09-b44f4906bc11" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "8dfa757f-8599-5183-b943-4abf380c700c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "9028ba88-b887-50e2-8e7c-ec31cce860d9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "9e1c361c-b6b1-5627-a373-9cc86a61e665" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "a1646fd5-b4f8-5bdb-9694-c2260f952537" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "aa7c851b-8c56-5ba6-8199-65ebcc98eff4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "ae10c384-7306-5354-b4a0-594d2e1cd814" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "b5da020d-0366-5ea5-8c0e-bff806ae50d1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "bf55ee38-34e9-5276-8274-6549de6748ef" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "c5b7386c-6ab8-5bd3-806a-19bd358656f9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "c733f5f0-0c03-57d2-a497-1553dc338050" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "cc1d9252-30e3-5df6-a53b-4cd09815298e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "d7f623cc-9aba-5dc4-9a47-5faffc8dda4c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "dd61a79f-69c9-50e3-8cf0-492ed796aa1c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "dddd4958-1e72-5471-8ebc-e44319ae5d15" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "df03b81a-a51e-5d45-8455-dc404f20e1a8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "e464f0ed-9c4e-5f6c-9932-d2f1372c8140" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "e83d3dd2-e5b9-50bb-a4e2-8634bac90500" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "eb892805-a5c3-51eb-9973-41799546412a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "f04aba18-4b16-53aa-8467-70e6d52ac632" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "f3747804-fa37-5ee4-8cb7-2cf9daa705ca" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "f4263bd8-52c7-5176-9c1a-148d8ba8f112" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "endpoint_uuid": { + "uuid": "fe6e9303-9941-5959-acec-e263ede31377" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + } + ], + "device_id": { + "device_uuid": { + "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R11" + }, + { + "components": [ + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "02d7b07c-7552-5c2d-b6dd-9b1aa07087e1" + }, + "name": "Fan#3", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "07207602-d029-5cc1-83af-4a243166c7bc" + }, + "name": "eth-1/0/12", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "0f9a7a09-eb52-5a70-a2f7-94fff68f4510" + }, + "name": "eth-1/0/3", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "0fb1b102-0ac4-5de3-8e16-117b2f5e12a9" + }, + "name": "Transceiver#9", + "parent": "eth-1/0/9", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "1343ac3a-c765-5c10-a04c-eb43e4093a46" + }, + "name": "eth-1/0/1", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "145ba61e-7112-5eec-b41c-91978b80d77f" + }, + "name": "eth-1/0/7", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "1cd5416f-a2cd-5615-9ab9-aae1560bf39a" + }, + "name": "Transceiver#3", + "parent": "eth-1/0/3", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "201b08ac-5107-577b-85c9-4cc742ece6ce" + }, + "name": "Transceiver#1", + "parent": "eth-1/0/1", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "22d12bd5-f2b1-545c-a2a1-58c59defc2e0" + }, + "name": "eth-1/0/26", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "4015a0f7-a90e-53fa-a8e9-e97d58854f24" + }, + "name": "eth-1/0/5", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"QSFP28\"", + "removable": "\"true\"", + "serial-num": "\"BH210809329 \"", + "vendor": "\"PRECISION \"" + }, + "component_uuid": { + "uuid": "40aaac2b-be53-530b-8fb9-4dc4240dad2b" + }, + "name": "Transceiver#27", + "parent": "eth-1/0/27", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "43423068-88f4-5780-9186-a840031a5562" + }, + "name": "Transceiver#20", + "parent": "eth-1/0/20", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "448f2156-8dc4-5fb8-9671-be17c6054b44" + }, + "name": "Transceiver#13", + "parent": "eth-1/0/13", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "50a04d98-5873-5e5a-b725-c41b04c91ea4" + }, + "name": "Fan#4", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "54186200-dac6-57cf-a84c-f2b1ebe4f5fc" + }, + "name": "Transceiver#7", + "parent": "eth-1/0/7", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "5655d66f-a362-57e2-9a9c-ab4bcdb863d5" + }, + "name": "eth-1/0/4", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "5beb5441-c807-59c1-8535-1c2eb4f9cee8" + }, + "name": "Transceiver#12", + "parent": "eth-1/0/12", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "5d3dafdb-43a9-5745-9d9e-b07cea2e719b" + }, + "name": "eth-1/0/13", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "61a96138-48de-56e4-bc8b-355967ca944f" + }, + "name": "Transceiver#10", + "parent": "eth-1/0/10", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"CRXT-T0T12A\"", + "empty": "\"false\"", + "location": "\"Power Supplies tray\"", + "manufacturer-name": "\"CRXT-T0T12A\"", + "removable": "\"true\"", + "serial-num": "\"19430061\"" + }, + "component_uuid": { + "uuid": "677ce193-eabe-5c99-be1d-87e5d8a735bc" + }, + "name": "Power-Supply#1", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"F1930015671 \"", + "vendor": "\"FS \"" + }, + "component_uuid": { + "uuid": "6838ea30-544e-5188-af7e-7a21e4bc4012" + }, + "name": "Transceiver#19", + "parent": "eth-1/0/19", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "728c024d-336b-5657-b0aa-6968704c534a" + }, + "name": "Transceiver#25", + "parent": "eth-1/0/25", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "75b6bf48-155c-5b2d-b94c-3a022d2ee7b3" + }, + "name": "eth-1/0/16", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "7bcb17de-7b39-53c2-a383-8ff2508c194e" + }, + "name": "Transceiver#21", + "parent": "eth-1/0/21", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "7fbe001d-9cd5-55cf-9b2d-1e2198c4d8e1" + }, + "name": "Transceiver#5", + "parent": "eth-1/0/5", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "810184e8-051d-5366-bb5c-ebed97590fb4" + }, + "name": "Transceiver#11", + "parent": "eth-1/0/11", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "81e12350-5582-5d28-8f89-8bec87ddfcf5" + }, + "name": "eth-1/0/21", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "8214b7cb-bbc3-5b69-805d-ed35128f796f" + }, + "name": "eth-1/0/6", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "8452da86-83c6-5f59-942b-0d59a08e60b8" + }, + "name": "eth-1/0/17", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "8669c5b6-c6a4-526f-bed1-9c0d24146739" + }, + "name": "eth-1/0/10", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "8a37750c-b5ef-510b-80cd-f4eb7d938b8c" + }, + "name": "eth-1/0/2", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "8db38f44-4e57-5621-9801-b7683b19ff56" + }, + "name": "Fan#5", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "8ec6edce-4522-597d-88c8-37697cb154fe" + }, + "name": "Transceiver#15", + "parent": "eth-1/0/15", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "8f802e29-1885-55d2-9122-9a1fffc3ec46" + }, + "name": "Transceiver#8", + "parent": "eth-1/0/8", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "90248895-6cdf-55cc-ba47-07208aec7561" + }, + "name": "eth-1/0/11", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"false\"", + "location": "\"Power Supplies tray\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "93c9b45e-7574-5fb6-b0b1-6574f823b46a" + }, + "name": "Power-Supply#2", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "946ea635-16d3-531e-ac0a-0f70f0d38e08" + }, + "name": "eth-1/0/20", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "96874de4-51d9-5c68-9700-042d4263cdd8" + }, + "name": "Transceiver#6", + "parent": "eth-1/0/6", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "99258fb4-22e3-5516-bc2e-c1f50f238d31" + }, + "name": "Transceiver#23", + "parent": "eth-1/0/23", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "a0166f5f-7f55-5880-9231-48624cda031c" + }, + "name": "Transceiver#17", + "parent": "eth-1/0/17", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "a52bac7b-0b70-5a5b-9066-99ed66e09cbb" + }, + "name": "eth-1/0/22", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "a67341ee-0313-58aa-b416-7d698d3877be" + }, + "name": "eth-1/0/15", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "a8b55643-e432-5a14-b34b-9f0824d1ae66" + }, + "name": "Transceiver#14", + "parent": "eth-1/0/14", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "ab710745-3989-5e4d-8b70-7048bd437d0e" + }, + "name": "eth-1/0/18", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"QSFP28\"", + "removable": "\"true\"", + "serial-num": "\"VE214710233 \"", + "vendor": "\"Arista Networks\"" + }, + "component_uuid": { + "uuid": "ab9c4611-0ad8-5f9a-8848-c97a8829e693" + }, + "name": "Transceiver#26", + "parent": "eth-1/0/26", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "b0451047-ff08-5bc6-8bc8-bf21b0d70049" + }, + "name": "Transceiver#2", + "parent": "eth-1/0/2", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "b3cdb834-c93e-5029-9dd6-21cb3696c84c" + }, + "name": "eth-1/0/24", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "b3ed689a-f997-59d6-9b3d-aff511a0e253" + }, + "name": "eth-1/0/14", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "b606eb8f-079e-5039-936f-e1fa8c8bbc22" + }, + "name": "Transceiver#24", + "parent": "eth-1/0/24", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "ba77d752-b621-598b-91e3-c80c13109fb8" + }, + "name": "Transceiver#18", + "parent": "eth-1/0/18", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "c28279e3-4dae-5af8-b8be-99ccc1cda2f1" + }, + "name": "eth-1/0/23", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "c2d9a8ff-a854-50d8-8550-dc1f60ef9261" + }, + "name": "eth-1/0/8", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "c9756d8f-a333-528e-99f5-fa8bbb73301d" + }, + "name": "Transceiver#16", + "parent": "eth-1/0/16", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "ce8079db-7521-592f-95bc-459a05b95483" + }, + "name": "eth-1/0/25", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "d470e8ce-f044-54f6-9dd8-05fad9bc0b34" + }, + "name": "eth-1/0/27", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "d4c56b9d-d131-55c5-8536-1aece8087ffb" + }, + "name": "eth-1/0/9", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "d637794b-b553-59b9-9d85-115d151e94e7" + }, + "name": "Fan#2", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "e2cd6e88-e40c-5f39-91f0-646fdb3f14fb" + }, + "name": "eth-1/0/19", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "eae9dff7-3885-5640-8348-c91ce05543c6" + }, + "name": "Transceiver#4", + "parent": "eth-1/0/4", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "f1568cd5-a694-57a5-b233-8d21f11fb5bc" + }, + "name": "Transceiver#22", + "parent": "eth-1/0/22", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"DRX-30\"", + "empty": "\"false\"", + "hardware-rev": "\"R0D\"", + "manufacturer-name": "\"DRX-30\"", + "mfg-date": "\"2020-01-09\"", + "removable": "\"false\"", + "serial-num": "\"731527XB1952198\"", + "software-rev": "\"21.5.1 (9799)\"" + }, + "component_uuid": { + "uuid": "f53bf8e4-17f2-5dbb-8247-5f42c97340bb" + }, + "name": "chassis", + "parent": "chassis", + "type": "CHASSIS" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "f8acb54f-f88a-59d0-9a59-f3460f19c706" + }, + "name": "Fan#1", + "parent": "chassis", + "type": "FAN" + } + ], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "10.95.90.126" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "830" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/chassis", + "resource_value": "{\"attributes\": {\"description\": \"DRX-30\", \"empty\": \"false\", \"hardware-rev\": \"R0D\", \"manufacturer-name\": \"DRX-30\", \"mfg-date\": \"2020-01-09\", \"removable\": \"false\", \"serial-num\": \"731527XB1952198\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#1", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#2", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#3", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#4", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#5", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#1", + "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12A\", \"empty\": \"false\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12A\", \"removable\": \"true\", \"serial-num\": \"19430061\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#2", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"location\": \"Power Supplies tray\", \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/1", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#1", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/2", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#2", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/3", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#3", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/4", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#4", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/5", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#5", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/6", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#6", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/7", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#7", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/8", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#8", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/9", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#9", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/10", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#10", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/11", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#11", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/12", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#12", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/13", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#13", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/14", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#14", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/15", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#15", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/16", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#16", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/17", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#17", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/18", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#18", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/19", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#19", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F1930015671 \", \"vendor\": \"FS \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/20", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#20", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/21", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#21", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/22", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#22", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/23", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#23", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/24", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#24", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/25", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#25", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/26", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#26", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"VE214710233 \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/27", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#27", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"BH210809329 \", \"vendor\": \"PRECISION \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/1]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/2]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/3]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/4]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/5]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/6]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/7]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/8]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/9]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/10]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/11]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/12]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/13]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/14]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/15]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/16]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/17]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/18]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/19]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/20]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/21]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/22]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/23]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/24]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/25]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/26]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/27]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/1]", + "resource_value": "{\"description\": \"testing\", \"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/2]", + "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/3]", + "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/4]", + "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/5]", + "resource_value": "{\"description\": \"\\\"Conexion con Spirent\\\"\", \"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/6]", + "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/7]", + "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/8]", + "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/9]", + "resource_value": "{\"description\": \"\\\"Conexion con AGS_20-1\\\"\", \"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10]", + "resource_value": "{\"description\": \"\\\"Conexion con HL3-1-2\\\"\", \"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/11]", + "resource_value": "{\"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/12]", + "resource_value": "{\"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/13]", + "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/14]", + "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15]", + "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16]", + "resource_value": "{\"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/17]", + "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/18]", + "resource_value": "{\"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-2-2\\\"\", \"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21]", + "resource_value": "{\"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23]", + "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/24]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/26]", + "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/27]", + "resource_value": "{\"mtu\": 1500, \"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]/subinterface[0]", + "resource_value": "{\"address_ip\": \"10.95.90.126\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]", + "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]/subinterface[0]", + "resource_value": "{\"address_ip\": \"5.5.5.1\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]", + "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/5.1]/subinterface[0]", + "resource_value": "{\"address_ip\": \"192.85.1.1\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/5.1\", \"type\": \"l3ipvlan\", \"vlan_id\": 666}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/5.1]", + "resource_value": "{\"name\": \"eth-1/0/5.1\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/9.33]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.3.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"3000\", \"name\": \"eth-1/0/9.33\", \"type\": \"l3ipvlan\", \"vlan_id\": 33}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/9.33]", + "resource_value": "{\"mtu\": 3000, \"name\": \"eth-1/0/9.33\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10.41]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.4.41.5\", \"address_ipv6\": \"2001::99:4:41:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/10.41\", \"type\": \"l3ipvlan\", \"vlan_id\": 41}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10.41]", + "resource_value": "{\"description\": \"\\\"Conexion con HL3-1-2\\\"\", \"name\": \"eth-1/0/10.41\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.19.2\", \"address_ipv6\": \"2001::99:5:19:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 19}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22.111]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.2.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"3000\", \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22.111]", + "resource_value": "{\"mtu\": 3000, \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.55.1\", \"address_ipv6\": \"2001::99:5:55:1\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-2-2\\\"\", \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/26.357]/subinterface[0]", + "resource_value": "{\"address_ip\": \"5.3.3.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/26.357\", \"type\": \"l3ipvlan\", \"vlan_id\": 357}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/26.357]", + "resource_value": "{\"description\": \"Pruebas energia\", \"name\": \"eth-1/0/26.357\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/27.246]/subinterface[0]", + "resource_value": "{\"address_ip\": \"4.3.2.3\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/27.246\", \"type\": \"l3ipvlan\", \"vlan_id\": 246}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/27.246]", + "resource_value": "{\"description\": \"Pruebas energia\", \"name\": \"eth-1/0/27.246\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.996]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\", \"vlan_id\": 996}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.996]", + "resource_value": "{\"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.534]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.131.202\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/20.534\", \"type\": \"l3ipvlan\", \"vlan_id\": 534}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.534]", + "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/20.534\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/3.1]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/3.1\", \"type\": \"l3ipvlan\", \"vlan_id\": 101}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/3.1]", + "resource_value": "{\"description\": \"test A1_2\", \"name\": \"eth-1/0/3.1\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15.456]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.61.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/15.456\", \"type\": \"l3ipvlan\", \"vlan_id\": 456}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15.456]", + "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/15.456\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.476]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.65.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/16.476\", \"type\": \"l3ipvlan\", \"vlan_id\": 476}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.476]", + "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/16.476\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15.656]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.61.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/15.656\", \"type\": \"l3ipvlan\", \"vlan_id\": 656}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15.656]", + "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/15.656\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.676]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.65.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/16.676\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.676]", + "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/16.676\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv_ACLr]", + "resource_value": "{\"policy_name\": \"srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv_ACL]", + "resource_value": "{\"policy_name\": \"srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[import_export_1_import_policy]", + "resource_value": "{\"policy_name\": \"import_export_1_import_policy\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[import_export_1_export_policy]", + "resource_value": "{\"policy_name\": \"import_export_1_export_policy\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr]", + "resource_value": "{\"ext_community_set_name\": \"set_srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr][65000:533]", + "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL]", + "resource_value": "{\"ext_community_set_name\": \"set_srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL][65000:533]", + "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_import_policy]", + "resource_value": "{\"ext_community_set_name\": \"set_import_export_1_import_policy\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_import_policy][65001:301]", + "resource_value": "{\"ext_community_member\": \"65001:301\", \"ext_community_set_name\": \"set_import_export_1_import_policy\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_export_policy]", + "resource_value": "{\"ext_community_set_name\": \"set_import_export_1_export_policy\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_export_policy][65001:301]", + "resource_value": "{\"ext_community_member\": \"65001:301\", \"ext_community_set_name\": \"set_import_export_1_export_policy\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]", + "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.1\", \"type\": \"DEFAULT_INSTANCE\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[OSPF]", + "resource_value": "{\"identifier\": \"OSPF\", \"name\": \"default\", \"protocol_name\": \"OSPF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[ISIS]", + "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[BGP]", + "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:996]", + "resource_value": "{\"name\": \"ELAN-AC:996\", \"type\": \"L2VSI\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]", + "resource_value": "{\"name\": \"5603d4487d23\", \"route_distinguisher\": \"65000:101\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACLr]", + "resource_value": "{\"import_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACL]", + "resource_value": "{\"export_policy\": \"srv_ACL\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[Movistar_4G_1]", + "resource_value": "{\"name\": \"Movistar_4G_1\", \"route_distinguisher\": \"65001:1\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[Movistar_4G_1]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"Movistar_4G_1\", \"protocol_name\": \"BGP\", \"router_id\": \"10.95.85.155\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[Movistar_4G_1]/inter_instance_policies[import_export_1_import_policy]", + "resource_value": "{\"import_policy\": \"import_export_1_import_policy\", \"name\": \"Movistar_4G_1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[Movistar_4G_1]/inter_instance_policies[import_export_1_export_policy]", + "resource_value": "{\"export_policy\": \"import_export_1_export_policy\", \"name\": \"Movistar_4G_1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[TestOscarVPN]", + "resource_value": "{\"name\": \"TestOscarVPN\", \"route_distinguisher\": \"65000:934\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[TestOscarVPN]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"TestOscarVPN\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[cisco_test_4_adva]", + "resource_value": "{\"name\": \"cisco_test_4_adva\", \"route_distinguisher\": \"65001:573\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[cisco_test_4_adva]/protocols[BGP]", + "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"cisco_test_4_adva\", \"protocol_name\": \"BGP\", \"router_id\": \"10.226.0.20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[cisco_test_5_adva]", + "resource_value": "{\"name\": \"cisco_test_5_adva\", \"route_distinguisher\": \"65001:673\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[cisco_test_5_adva]/protocols[BGP]", + "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"cisco_test_5_adva\", \"protocol_name\": \"BGP\", \"router_id\": \"10.226.0.20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[cisco_test_6_adva]", + "resource_value": "{\"name\": \"cisco_test_6_adva\", \"route_distinguisher\": \"65001:873\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[cisco_test_6_adva]/protocols[BGP]", + "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"cisco_test_6_adva\", \"protocol_name\": \"BGP\", \"router_id\": \"10.226.0.20\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_OPENCONFIG" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "06203096-d1a2-5042-94a9-3a45fce6fad0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "11956a34-12a2-5ea3-838b-d8a42eb23f4a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "11e2e022-baa3-5543-83a4-6e08670cb18f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "12462dbb-5500-5c72-aeba-f4b9ed747620" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "14a10230-b666-55bf-b699-6f7e13f3589c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "26b07b0a-1824-5fa2-997c-6f32a27bf806" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "3652e1aa-05fd-5fae-90fd-091066b3c50c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "36b3fc08-090a-53b3-855d-754b3bd5a135" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "3c641d5e-214a-5a55-a074-5318ba72fe8b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "41c07daf-e299-53f4-81c8-4d2b3b34ef8b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "428db709-3740-5c0c-8d2c-5e7b8bb17e44" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "61795f8e-5bbb-589b-9f36-546d2216dbc2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "6a1e223f-39aa-5285-9c1a-e8eee55ea8ee" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "77905600-b1dc-5920-9d8a-d2aaed83a1b1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "7a24fce6-5ef0-56d8-b301-c2afa8dd4437" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "7e7c4419-3c33-574d-83ff-9dff2efe106f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "91c0d600-96ce-5c15-a203-2c9f7977a84f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "9e9d1423-c2af-545b-b3c8-b331eae0be3f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "a3f73568-69a4-5f3f-8093-77817d788ecd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "b714b328-0141-5dc3-ae91-6da1cd1b5546" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "ca47b664-63c9-5ec0-952d-581720dffaee" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "d2177bf3-2ff4-5473-b5ff-e70038d0c0af" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "d5a1219d-e053-528a-8566-58b13e8f42b0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "dd3f7f32-afed-5f73-98ba-dd807abab1ea" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "e71e6809-dd43-5c1b-8cc8-cc9aba0b558b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "f8912999-562e-56a8-8d57-b8adb68f34bc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "endpoint_uuid": { + "uuid": "fbc2518c-71bd-55c4-9e73-d1a53eaeb9bc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/5" + } + ], + "device_id": { + "device_uuid": { + "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "packet-router", + "name": "R155" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/13\"\n},\n{\n\"uuid\": \"1/8\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/13]", + "resource_value": "{\"uuid\": \"1/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/8]", + "resource_value": "{\"uuid\": \"1/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:000]", + "resource_value": "{\"name\": \"ELAN-AC:000\", \"type\": \"L2VSI\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[1/13.000]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"1/13.000\", \"type\": \"l2vlan\", \"vlan_id\": \"100\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:000]/interface[1/13.000]", + "resource_value": "{\"id\": \"1/13.000\", \"interface\": \"1/13.000\", \"name\": \"ELAN-AC:000\", \"subinterface\": 0}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:000]/connection_point[VC-1]", + "resource_value": "{\"VC_ID\": \"000\", \"connection_point\": \"VC-1\", \"name\": \"ELAN-AC:000\", \"remote_system\": \"0.0.0.0\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "01f41ada-41d6-5357-b0b2-bda7c4fb6d51" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "0332bf40-60b0-572c-80be-5d7d81e463e5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "0818e669-ad3d-55f7-8168-b88762d9cada" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "0ebcfe23-90bb-5455-8677-266b42cd2f50" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "0f041b4b-4352-572e-a150-bc2530d52386" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "154053d1-2b20-5818-927d-573ec9d3b3c0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "17e35cb1-59ff-5668-a4f8-8d57c043f205" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "19b3e21c-4ae5-5938-be55-62e8c61ba895" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "2308c508-aa60-5f81-88a8-63b276785d91" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "3adb7588-9954-53e1-abdc-b167c142bac5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "3ec0ef7b-137b-5731-a03c-9acdd3d5b576" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "4120d2fe-234c-5642-ba08-601eff46a69c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "4b48114d-7a63-592a-918f-b7c28c347510" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "4ee649cc-2944-56d3-b0fa-e769c7f8d8b2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "541ebb94-c8cd-52fc-9bd0-1a3cd24ed42b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "569dabcf-f93c-5daa-8228-3f43c008c36b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "5adad74b-5342-590a-b1d2-4c932ddf132b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "658e53d1-b535-572d-8fa1-37a90909c488" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "724d2a0d-a296-5ebd-b897-fd422afb8705" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "73b7d900-62b7-5c04-a4e2-c4d94cd09fd4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "74d92d66-eb69-5c09-a33f-a0a21b83b4a7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "7864fe32-1fe1-5d75-8c4c-f9db539599b6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "7aa3f3be-4326-595e-90a9-91e3a5077fd9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "7ced749e-92a2-5af8-a507-2921dbead6b8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "89464148-2e36-51d0-b733-d1fe848cd771" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "8dccee7d-0327-5f37-b371-fd6f14d35cb9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "9706d7ed-2e96-52d1-a3cf-06c01e76d9f7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "971493de-a1a5-5bf7-b7c8-12bac8889fdb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "a6ac58c0-a8ab-5653-b777-cd18b6f8c039" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "a70dc146-0cbe-5874-8f5e-d4e35e2bc477" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "a93515cf-18d0-5baa-9e7d-b09497915b4b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "ae38224d-319b-5c8e-b6ca-996f52e84de6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "af89c4bb-3b12-52c1-a21a-8520cf6847f1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "b2920376-ca6b-5e40-9391-513fb2ce0119" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "b63b8f25-4be0-57fc-849a-d0408f9608d2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "bc3e34b9-c222-55ac-bc37-cfbe10a936a5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "c470e793-f6f2-5d39-9ca0-fc2ec990c51f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "cebb90ea-8531-5057-8ef7-bd71dde17051" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "d46ff624-2e51-5d8c-a7dd-13e17f2422c4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "d6687583-fa44-5eff-a88f-18f837064548" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "d8ba43ff-00d9-5470-b71a-4530f799ad3b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "dcd46dfc-f16d-5fd4-a03f-b66579218771" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "e22b02e6-824f-5798-9487-4bcd3da67e61" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "e23484ad-0b6c-54fa-ac90-550b30dd32fd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "e61abff6-775a-5b5d-9bee-aea6e4cda2c5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "e6cd6c26-5a5c-5a5d-973b-3b6fa7289c57" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "ed8f19ac-8da5-56b7-b80e-cc70105ee94a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "f373d220-1696-5bfd-8dc3-42a51c965523" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "f5c2fd04-67bb-53a4-a4b9-ed3de25ef075" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "f832a3d7-e5b9-50a5-aa71-ee6bc4f79e32" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "fefa1c8c-d48c-54da-8aea-f4b48ec0ecf5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "endpoint_uuid": { + "uuid": "ff0079d5-aa90-573c-889c-e7a04588b859" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + } + ], + "device_id": { + "device_uuid": { + "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R1" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/1\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/1]", + "resource_value": "{\"uuid\": \"1/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/14]", + "resource_value": "{\"uuid\": \"1/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "018ebdab-d158-5cb3-b41e-a160b55438d8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "0abc6b7e-c271-5d20-9168-4b3a37f8d4eb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "0b7986ba-a9a1-50aa-86e2-8e566045ccb8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "17946fd9-d9d6-5a42-ba22-5542cbe95669" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "17c94715-4830-5afe-9fbc-d3aab1618b77" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "18e8eeca-53b0-5138-80c0-9aebba321784" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "1d9475a5-2d10-5410-ab3b-001483516898" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "33329b80-6a4d-5003-9ef6-54b6dfa5bdd1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "3c7d4c16-9a8e-51b6-bc57-bb839c39cd69" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "4769458a-5717-5ca6-a1df-d08e23f2eb7e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "4e053b28-f30a-5c1e-8219-6cb68f7bc9d0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "5173ba44-28c2-58c2-85ed-500337f8e6d9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "528fead6-a24d-5061-bccb-69ed05260212" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "626aa4c7-2b0d-5e8a-869b-ce451b323a88" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "663b201a-4830-5cf2-a000-608ca396c23a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "675c5bae-8022-5711-8acb-c415906a01d0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "69fafaea-04c4-5c0f-ab49-2f66c5c31bb2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "6b7a971c-1657-58ca-b840-718c2f4488d5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "6c6081e4-fea1-5659-bab1-7a7ad469cb1a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "72328059-46ec-5166-8858-bfeab170cee4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "82369f59-7a85-58cf-ba02-a2a9b496276d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "85c94d08-5cf1-5156-9edf-e12f8cb4a1ea" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "91a70026-a9d3-5f04-a4bf-686ac921759b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "921fce8f-115b-5ff8-8d5c-f8a8d0e67ce3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "9504e17c-9336-570b-ae02-fffa57a59f04" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "951d45b0-d992-597d-a9e0-68d8a08dacb9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "953a65fe-f670-5080-b310-6fefa462b87d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "9a81ba59-0516-5829-8308-8df47e9fd0fa" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "a39fd537-dab1-5e6b-a51b-f5edd42d9f36" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "a81f26ad-a512-582a-8033-1141595470b4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "adcd30e3-b909-5f73-b91d-3bbdeda91d88" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "b0d6cfb2-6678-525c-aef6-85ae04edb441" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "b138d345-fe74-51a7-b045-f4eae2178f4c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "bb8b025e-0d73-5b6f-9211-8e1670dd08bb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "bc911f16-89e3-569c-bc11-8d11a6228d7a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "c128b66d-2397-5a10-9a5b-4ab39e45e6bd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "c555a773-6abd-5c93-89a8-b950bac9f566" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "c614ac4e-d59e-57ce-9538-e2725797c4fe" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "c7469b54-740d-5e6a-865e-2325c227bf75" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "c86042ce-c922-50ef-b4f4-812d794b5306" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "cc313af2-2818-51af-abb3-532845d6b962" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "cc4c4e97-6aea-5618-a140-b8e0b65f5b21" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "cda9d2dd-aa6b-54a4-9aa9-a0e86f8e5543" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "d2204b61-a05e-5299-b2c0-2743bdcf01ba" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "d6f6321a-226a-5db3-8da9-595ab28f021a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "d8b3a7d3-9f7e-5d9f-8f56-38d0f53f4621" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "d9f5a36c-17a3-513c-8c7a-bc9f2719f757" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "dbcac948-e8a0-50f1-886f-b025bf26467f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "ea6a3a32-5fd8-553c-b807-d8db3de32648" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "ec0c6f9b-ab4a-5b4a-9a68-7963afbe467e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "ee9ac774-bd73-5b9c-8e66-f5a6607a289c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "endpoint_uuid": { + "uuid": "f346aed6-30d5-56bf-a558-5bff5e258c04" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + } + ], + "device_id": { + "device_uuid": { + "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R13" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/2\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/12\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/2]", + "resource_value": "{\"uuid\": \"1/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/4]", + "resource_value": "{\"uuid\": \"1/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/12]", + "resource_value": "{\"uuid\": \"1/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "0100b911-3ff2-574a-bac1-b344e66ae4fd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "05fef69b-eea0-56f8-9e5f-ddedc2f59046" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "0728cdfa-7b47-58ef-b2fa-61e6bbbcaab2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "12001721-1dd6-5074-90f7-e0a7b983227f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "1f0a1c43-d054-5b9d-b482-23f634326c06" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "24185268-4a1b-50dd-a510-e7ec57986452" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "2450545a-71be-528a-8f42-d06b3531c754" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "261b5dbb-67b5-58b3-b14b-c5e06af58115" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "26ec78e1-b571-5fb6-a12d-c24e43711c3b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "2f7b882e-d663-58c0-92ec-28caa6c2a4f7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "37e4d7eb-d692-5648-8f14-0ccbf372fea6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "3dc52f5f-de10-56a5-8b7c-687d25e85aa0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "434d0a50-54b1-5ea8-aba9-5d911ab7816d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "4f0de7e6-0252-54f1-8ab9-eddcf47f8d5e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "5b13b5e0-b119-5438-bb99-41170cc1f905" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "65e93427-1cef-59dc-aafe-cde51d27394d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "69b8c328-0bfc-5639-a81a-dee2e40254f4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "6e687452-2589-590c-a956-fc8b7f0b3dc8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "705e7a7c-b993-5036-b3eb-3d0314a9a439" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "7454611d-5bfd-5565-8d34-0dc26be0785e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "79029371-552b-588c-a44d-0e7c23da3689" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "81092288-6bc6-57fd-976c-abf4231a7045" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "8575d5db-6606-5b53-9f4b-355653d468b7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "8633437b-bdbb-5853-a395-0a610c9e2a22" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "8a3b77b3-d99c-5cb0-bf07-2805dbe838c8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "8aba5b87-513c-50fd-86f1-379f3628c6ad" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "8f02a53d-26ca-508e-a170-9d3c1300d8fd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "93f116ed-8230-5a3b-82cc-3944953405bd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "9bf12ada-ddeb-578b-b262-1e38ac856efb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "a0d17fbe-5ebe-5f54-89c1-009af0463e91" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "a45246f2-ec5f-5183-9889-d49ec017c893" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "b69f7d95-d2e5-5346-99ff-8a2fbf436616" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "b6c626b7-7c4e-5cc7-9e40-d0e0116f0703" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "bb864631-103e-5ad9-a47f-6b76c370cf29" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "bfd53bc6-4342-5536-9c8e-d10497855dcd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "c0aa592e-73cf-56fb-83fc-83d6a04920fe" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "c0c7ab1a-ba3d-518b-a962-3d6c210af0b5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "c1103b9a-b4dd-568a-9161-c7558c408a29" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "c5baf78c-2228-5bfc-a019-caf22a919c0c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "c89c09b8-9438-5bf6-bfe8-bc6aad485e8e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "c9267f4d-8945-5e87-a4e9-74aa9c819288" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "dbd9519a-958c-5298-be43-09298210143a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "dbf6e995-d279-5a11-9dcc-5e8c3f6de39c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "dca802a2-aa18-5f77-90f7-ede63b736163" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "e256fd9a-f3ea-58f2-8510-40dd57bec7fb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "e92fb063-bdc2-5790-862d-1b1663ddeb7d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "ec53a22f-45c1-5a5c-930f-413caae0484c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "ee3b74b8-a3bf-5857-b454-a447f0d00b59" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "ef5a251d-d1a6-53e1-9b6e-00d1fd30e09c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "f0d1b697-08c2-55a9-b6ab-77f99642b746" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "f33d8256-88b5-571f-9776-8d72120508ba" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "f4e2c3c7-629d-54c1-b33b-2cca1d8c20aa" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "endpoint_uuid": { + "uuid": "f791b6ad-bbdc-516c-99bc-87ccc78379b6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + } + ], + "device_id": { + "device_uuid": { + "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R6" + }, + { + "components": [ + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"11\"", + "physical-index": "28" + }, + "component_uuid": { + "uuid": "03b032f2-4b72-5896-9dd4-f13be2001e7d" + }, + "name": "eth-1/0/11", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"13\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "33", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "09584cac-c450-5f6a-8af1-e974dcd24ed3" + }, + "name": "Transceiver#13", + "parent": "eth-1/0/13", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"6\"", + "physical-index": "18" + }, + "component_uuid": { + "uuid": "097ede89-58fe-5145-9107-0d74361b199d" + }, + "name": "eth-1/0/6", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"", + "id": "\"2\"", + "physical-index": "10" + }, + "component_uuid": { + "uuid": "0e89add5-2723-5a87-a517-31ccfac5a655" + }, + "name": "eth-1/0/2", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"23\"", + "physical-index": "52" + }, + "component_uuid": { + "uuid": "104969a8-5b63-595f-85ab-9852bac1e107" + }, + "name": "eth-1/0/23", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"10\"", + "physical-index": "26" + }, + "component_uuid": { + "uuid": "1635baf3-692e-5501-bcf3-c4aeef2adaab" + }, + "name": "eth-1/0/10", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "id": "\"2\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "2", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "1a100a0e-ff91-59c4-8fea-687b42bc2340" + }, + "name": "Fan#2", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"8\"", + "physical-index": "22" + }, + "component_uuid": { + "uuid": "1e982e21-7771-5261-b224-0916548425e0" + }, + "name": "eth-1/0/8", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"3\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "13", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "22b8ef57-09d2-55d4-817c-df51270846dd" + }, + "name": "Transceiver#3", + "parent": "eth-1/0/3", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"", + "id": "\"26\"", + "physical-index": "58" + }, + "component_uuid": { + "uuid": "28d127f5-0393-59bf-a800-c52d4da9be8e" + }, + "name": "eth-1/0/26", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"18\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "43", + "removable": "\"true\"", + "serial-num": "\"P22224B0261 \"", + "vendor": "\"PDDG \"" + }, + "component_uuid": { + "uuid": "2c704852-101e-53da-9a41-bef2a545f38d" + }, + "name": "Transceiver#18", + "parent": "eth-1/0/18", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"12\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "31", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "3007bdde-d017-55d3-ad78-8d8c364e7cff" + }, + "name": "Transceiver#12", + "parent": "eth-1/0/12", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"22\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "51", + "removable": "\"true\"", + "serial-num": "\"F162250019 \"", + "vendor": "\"Edgecore \"" + }, + "component_uuid": { + "uuid": "304ca86e-8d75-522d-a762-4a67c25f037b" + }, + "name": "Transceiver#22", + "parent": "eth-1/0/22", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"2\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "11", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "31657863-fc8f-5137-9aae-a7b41ec89743" + }, + "name": "Transceiver#2", + "parent": "eth-1/0/2", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"10\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "27", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "3357d41b-5692-5139-9f39-9d0ed1f52b37" + }, + "name": "Transceiver#10", + "parent": "eth-1/0/10", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"15\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "37", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "3422d734-9ffd-54ee-83f8-745ee0020664" + }, + "name": "Transceiver#15", + "parent": "eth-1/0/15", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"21\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "49", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "37690040-0118-534d-ac42-a6ced5d75158" + }, + "name": "Transceiver#21", + "parent": "eth-1/0/21", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"4\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "15", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "38b28d0c-90eb-57ad-9a83-eeb1780084c2" + }, + "name": "Transceiver#4", + "parent": "eth-1/0/4", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"24\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "55", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "40de468d-b3fc-5410-ace7-db172c7f021b" + }, + "name": "Transceiver#24", + "parent": "eth-1/0/24", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"14\"", + "physical-index": "34" + }, + "component_uuid": { + "uuid": "45007027-e554-5a49-967e-548676ab465e" + }, + "name": "eth-1/0/14", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"26\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "59", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "4e106974-8c3d-59da-8d64-734a9e9baa20" + }, + "name": "Transceiver#26", + "parent": "eth-1/0/26", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"7\"", + "physical-index": "20" + }, + "component_uuid": { + "uuid": "53bf950a-8537-5d6d-82d4-17c419ad6457" + }, + "name": "eth-1/0/7", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "id": "\"5\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "5", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "5671c64a-0cdf-5f17-bf85-69fa9d38bd47" + }, + "name": "Fan#5", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"25\"", + "physical-index": "56" + }, + "component_uuid": { + "uuid": "5a3361ff-a070-50d8-b2b1-23c4b06eced8" + }, + "name": "eth-1/0/25", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"false\"", + "id": "\"2\"", + "location": "\"Power Supplies tray\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "7", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "5e51a804-860a-5309-b139-fa785ed2008d" + }, + "name": "Power-Supply#2", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"18\"", + "physical-index": "42" + }, + "component_uuid": { + "uuid": "6280b11d-ef2e-5d97-a339-76651dd6ff64" + }, + "name": "eth-1/0/18", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"", + "id": "\"5\"", + "physical-index": "16" + }, + "component_uuid": { + "uuid": "62cee201-2c2c-5d87-837f-5addb6ee5f75" + }, + "name": "eth-1/0/5", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"", + "id": "\"27\"", + "physical-index": "60" + }, + "component_uuid": { + "uuid": "63d9efd2-fe86-5261-abd0-0f06ba1c8897" + }, + "name": "eth-1/0/27", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"CRXT-T0T12A\"", + "empty": "\"false\"", + "id": "\"1\"", + "location": "\"Power Supplies tray\"", + "manufacturer-name": "\"CRXT-T0T12A\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "6", + "removable": "\"true\"", + "serial-num": "\"19330053\"" + }, + "component_uuid": { + "uuid": "64e6f03d-29b1-5db1-a0d5-6a177aab75a0" + }, + "name": "Power-Supply#1", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "id": "\"4\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "4", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "686f20b5-b1e3-510c-b7f8-2a7a4a5c6ae5" + }, + "name": "Fan#4", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"", + "id": "\"3\"", + "physical-index": "12" + }, + "component_uuid": { + "uuid": "6f2a5723-5955-5fd7-8e88-b4e84a2838f5" + }, + "name": "eth-1/0/3", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"DRX-30\"", + "empty": "\"false\"", + "hardware-rev": "\"R0D\"", + "id": "\"DRX-30\"", + "manufacturer-name": "\"DRX-30\"", + "mfg-date": "\"2020-01-08\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "0", + "removable": "\"false\"", + "serial-num": "\"731527XB1952144\"", + "software-rev": "\"21.5.1 (9799)\"" + }, + "component_uuid": { + "uuid": "70ae874d-0cf4-58d0-9e2c-dce947835e02" + }, + "name": "chassis", + "parent": "chassis", + "type": "CHASSIS" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"9\"", + "physical-index": "24" + }, + "component_uuid": { + "uuid": "7b36d66b-a7f3-52cb-a10e-85a23aeeb813" + }, + "name": "eth-1/0/9", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"25\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "57", + "removable": "\"true\"", + "serial-num": "\"F162250016 \"", + "vendor": "\"Edgecore \"" + }, + "component_uuid": { + "uuid": "8be56fb0-3b72-5f6d-ac0a-99945bd39e25" + }, + "name": "Transceiver#25", + "parent": "eth-1/0/25", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "id": "\"3\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "3", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "8d14a19d-c957-5bd8-b511-0d94ae05b7f8" + }, + "name": "Fan#3", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"15\"", + "physical-index": "36" + }, + "component_uuid": { + "uuid": "91bb1526-a701-5e79-9157-da0f97dab78f" + }, + "name": "eth-1/0/15", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"20\"", + "physical-index": "46" + }, + "component_uuid": { + "uuid": "973bc58c-cde5-5f3f-9354-d59f6c290eca" + }, + "name": "eth-1/0/20", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"19\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "45", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "9c3046a1-419b-57a6-9637-18ebb7141d91" + }, + "name": "Transceiver#19", + "parent": "eth-1/0/19", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"23\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "53", + "removable": "\"true\"", + "serial-num": "\"PYA2FD5 \"", + "vendor": "\"FINISAR CORP. \"" + }, + "component_uuid": { + "uuid": "9e76e34e-f337-5490-ae6b-d85f47137e3e" + }, + "name": "Transceiver#23", + "parent": "eth-1/0/23", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"17\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "41", + "removable": "\"true\"", + "serial-num": "\"CN04HG00183038D\"", + "vendor": "\"DELL EMC \"" + }, + "component_uuid": { + "uuid": "9ecb4039-5041-5f2a-9f94-6a51f29514e0" + }, + "name": "Transceiver#17", + "parent": "eth-1/0/17", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"16\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "39", + "removable": "\"true\"", + "serial-num": "\"030SBF6TH661789\"", + "vendor": "\"HISILICON \"" + }, + "component_uuid": { + "uuid": "a4d52f50-99e8-516c-83a6-879c13178504" + }, + "name": "Transceiver#16", + "parent": "eth-1/0/16", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"20\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "47", + "removable": "\"true\"", + "serial-num": "\"CN04HG0018P1452\"", + "vendor": "\"DELL EMC \"" + }, + "component_uuid": { + "uuid": "a5b44bbd-0f03-5177-bb9f-203d98af6add" + }, + "name": "Transceiver#20", + "parent": "eth-1/0/20", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"", + "id": "\"4\"", + "physical-index": "14" + }, + "component_uuid": { + "uuid": "ab46ecab-c0fd-5696-a616-e46ad0cd0960" + }, + "name": "eth-1/0/4", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"17\"", + "physical-index": "40" + }, + "component_uuid": { + "uuid": "af6aab36-090a-53db-ab06-183bb97edf21" + }, + "name": "eth-1/0/17", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"16\"", + "physical-index": "38" + }, + "component_uuid": { + "uuid": "b5862c5c-3087-583d-8603-787e5050637a" + }, + "name": "eth-1/0/16", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "id": "\"6\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "19", + "removable": "\"true\"", + "serial-num": "\"AZG28W2 \"", + "vendor": "\"FINISAR CORP. \"" + }, + "component_uuid": { + "uuid": "b6bc2e57-dc3e-519a-97f8-889e2bd849d0" + }, + "name": "Transceiver#6", + "parent": "eth-1/0/6", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"8\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "23", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "babb0fd9-70e3-5f5f-a4c4-3e6f40abfccb" + }, + "name": "Transceiver#8", + "parent": "eth-1/0/8", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"14\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "35", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "bbeb4cf8-3a3c-5ebd-a44f-c9b78a962114" + }, + "name": "Transceiver#14", + "parent": "eth-1/0/14", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"22\"", + "physical-index": "50" + }, + "component_uuid": { + "uuid": "bcc111db-cfdf-5444-9a89-a21bf906b1cb" + }, + "name": "eth-1/0/22", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"27\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "61", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "bd6b179c-8e3a-58a9-bdf3-3fbeba753dae" + }, + "name": "Transceiver#27", + "parent": "eth-1/0/27", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "id": "\"1\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "oper-status": "\"oc-platform-types:ACTIVE\"", + "physical-index": "1", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "bfe4a9b8-1a67-5883-b18e-1a7bfd46fca2" + }, + "name": "Fan#1", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"9\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "25", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "c0a8adc7-906c-521b-922e-40cb7018814c" + }, + "name": "Transceiver#9", + "parent": "eth-1/0/9", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"13\"", + "physical-index": "32" + }, + "component_uuid": { + "uuid": "c95eb4cc-a9f5-5d73-a564-04dda718059e" + }, + "name": "eth-1/0/13", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"1\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "9", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "d111f7a6-4810-56cf-99e5-57dd8343687b" + }, + "name": "Transceiver#1", + "parent": "eth-1/0/1", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"5\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "17", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "da3ed3f4-d21a-5cd6-9480-bea3c7adfcdc" + }, + "name": "Transceiver#5", + "parent": "eth-1/0/5", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"7\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "21", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "e251662d-582c-5956-9e6f-a4427c06c0cd" + }, + "name": "Transceiver#7", + "parent": "eth-1/0/7", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "id": "\"11\"", + "oper-status": "\"oc-platform-types:INACTIVE\"", + "physical-index": "29", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "e3e1c32d-298f-59f0-975d-bffdc1c344f9" + }, + "name": "Transceiver#11", + "parent": "eth-1/0/11", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"24\"", + "physical-index": "54" + }, + "component_uuid": { + "uuid": "e5e0812c-ff1a-5c1a-8b29-988bf5306be0" + }, + "name": "eth-1/0/24", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"19\"", + "physical-index": "44" + }, + "component_uuid": { + "uuid": "e9268a00-1b19-5c3e-a17f-3ffd08f08fd1" + }, + "name": "eth-1/0/19", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"", + "id": "\"1\"", + "physical-index": "8" + }, + "component_uuid": { + "uuid": "ea0eb62c-5928-50a6-b0c2-16bd35e97684" + }, + "name": "eth-1/0/1", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"21\"", + "physical-index": "48" + }, + "component_uuid": { + "uuid": "f1c80cb7-9ac4-5459-aded-ac008b6acadc" + }, + "name": "eth-1/0/21", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"", + "id": "\"12\"", + "physical-index": "30" + }, + "component_uuid": { + "uuid": "febcf719-09bb-5cb7-91a6-50ee7a9b5990" + }, + "name": "eth-1/0/12", + "parent": "", + "type": "PORT" + } + ], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "10.95.90.125" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "830" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/chassis", + "resource_value": "{\"attributes\": {\"description\": \"DRX-30\", \"empty\": \"false\", \"hardware-rev\": \"R0D\", \"id\": \"DRX-30\", \"manufacturer-name\": \"DRX-30\", \"mfg-date\": \"2020-01-08\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 0, \"removable\": \"false\", \"serial-num\": \"731527XB1952144\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#1", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"1\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 1, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#2", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"2\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 2, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#3", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"3\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 3, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#4", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"4\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 4, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#5", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"5\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 5, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#1", + "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12A\", \"empty\": \"false\", \"id\": \"1\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12A\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 6, \"removable\": \"true\", \"serial-num\": \"19330053\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#2", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"id\": \"2\", \"location\": \"Power Supplies tray\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 7, \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/1", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\", \"id\": \"1\", \"physical-index\": 8}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#1", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"1\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 9, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/2", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"2\", \"physical-index\": 10}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#2", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"2\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 11, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/3", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"3\", \"physical-index\": 12}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#3", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"3\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 13, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/4", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"4\", \"physical-index\": 14}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#4", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"4\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 15, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/5", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"5\", \"physical-index\": 16}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#5", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"5\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 17, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/6", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"6\", \"physical-index\": 18}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#6", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"6\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 19, \"removable\": \"true\", \"serial-num\": \"AZG28W2 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/7", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"7\", \"physical-index\": 20}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#7", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"7\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 21, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/8", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"8\", \"physical-index\": 22}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#8", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"8\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 23, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/9", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"9\", \"physical-index\": 24}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#9", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"9\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 25, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/10", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"10\", \"physical-index\": 26}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#10", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"10\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 27, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/11", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"11\", \"physical-index\": 28}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#11", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"11\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 29, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/12", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"12\", \"physical-index\": 30}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#12", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"12\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 31, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/13", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"13\", \"physical-index\": 32}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#13", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"13\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 33, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/14", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"14\", \"physical-index\": 34}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#14", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"14\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 35, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/15", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"15\", \"physical-index\": 36}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#15", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"15\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 37, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/16", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"16\", \"physical-index\": 38}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#16", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"16\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 39, \"removable\": \"true\", \"serial-num\": \"030SBF6TH661789\", \"vendor\": \"HISILICON \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/17", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"17\", \"physical-index\": 40}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#17", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"17\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 41, \"removable\": \"true\", \"serial-num\": \"CN04HG00183038D\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/18", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"18\", \"physical-index\": 42}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#18", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"18\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 43, \"removable\": \"true\", \"serial-num\": \"P22224B0261 \", \"vendor\": \"PDDG \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/19", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"19\", \"physical-index\": 44}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#19", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"19\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 45, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/20", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"20\", \"physical-index\": 46}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#20", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"20\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 47, \"removable\": \"true\", \"serial-num\": \"CN04HG0018P1452\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/21", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"21\", \"physical-index\": 48}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#21", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"21\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 49, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/22", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"22\", \"physical-index\": 50}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#22", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"22\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 51, \"removable\": \"true\", \"serial-num\": \"F162250019 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/23", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"23\", \"physical-index\": 52}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#23", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"23\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 53, \"removable\": \"true\", \"serial-num\": \"PYA2FD5 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/24", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"24\", \"physical-index\": 54}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#24", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"24\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 55, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/25", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"25\", \"physical-index\": 56}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#25", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"25\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 57, \"removable\": \"true\", \"serial-num\": \"F162250016 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/26", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\", \"id\": \"26\", \"physical-index\": 58}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#26", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"26\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 59, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/27", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\", \"id\": \"27\", \"physical-index\": 60}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#27", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"27\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 61, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/1]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/2]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/3]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/4]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/5]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/6]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/7]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/8]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/9]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/10]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/11]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/12]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/13]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/14]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/15]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/16]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/17]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/18]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/19]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/20]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/21]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/22]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/23]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/24]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/25]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/26]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/27]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/1]", + "resource_value": "{\"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/2]", + "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/3]", + "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/4]", + "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/5]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/6]", + "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/7]", + "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/8]", + "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/9]", + "resource_value": "{\"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10]", + "resource_value": "{\"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/11]", + "resource_value": "{\"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/12]", + "resource_value": "{\"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/13]", + "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/14]", + "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15]", + "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16]", + "resource_value": "{\"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/17]", + "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/18]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19]", + "resource_value": "{\"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21]", + "resource_value": "{\"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23]", + "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/24]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/26]", + "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/27]", + "resource_value": "{\"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]/subinterface[0]", + "resource_value": "{\"address_ip\": \"10.95.90.125\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]", + "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]/subinterface[0]", + "resource_value": "{\"address_ip\": \"5.5.5.5\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]", + "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10.42]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.4.42.5\", \"address_ipv6\": \"2001::99:4:42:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\", \"vlan_id\": 42}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10.42]", + "resource_value": "{\"description\": \"\\\"Conexion con HL4-2-2\\\"\", \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.125]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.16.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.125]", + "resource_value": "{\"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.20.3\", \"address_ipv6\": \"2001::99:5:20:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 20}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22.111]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.4.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22.111]", + "resource_value": "{\"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.125]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.61.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.125]", + "resource_value": "{\"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.55.2\", \"address_ipv6\": \"2001::99:5:55:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.996]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\", \"vlan_id\": 996}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.996]", + "resource_value": "{\"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.533]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.12.12\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\", \"vlan_id\": 533}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.533]", + "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.534]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.17.47\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\", \"vlan_id\": 534}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.534]", + "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_POLICY_BGP]", + "resource_value": "{\"policy_name\": \"MY_POLICY_BGP\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_AS_PATH]", + "resource_value": "{\"policy_name\": \"MY_AS_PATH\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_STANDARD_COMMUNITY]", + "resource_value": "{\"policy_name\": \"MY_STANDARD_COMMUNITY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_EXTENDED_COMMUNITY]", + "resource_value": "{\"policy_name\": \"MY_EXTENDED_COMMUNITY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_POLICY]", + "resource_value": "{\"policy_name\": \"MY_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv_ACL]", + "resource_value": "{\"policy_name\": \"srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv_ACLr]", + "resource_value": "{\"policy_name\": \"srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[RT_POLICY]", + "resource_value": "{\"policy_name\": \"RT_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL]", + "resource_value": "{\"ext_community_set_name\": \"set_srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL][65000:533]", + "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr]", + "resource_value": "{\"ext_community_set_name\": \"set_srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr][65000:533]", + "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY]", + "resource_value": "{\"ext_community_set_name\": \"set_RT_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY][65001:456]", + "resource_value": "{\"ext_community_member\": \"65001:456\", \"ext_community_set_name\": \"set_RT_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]", + "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.5\", \"type\": \"DEFAULT_INSTANCE\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[OSPF]", + "resource_value": "{\"identifier\": \"OSPF\", \"name\": \"default\", \"protocol_name\": \"OSPF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[ISIS]", + "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[BGP]", + "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:996]", + "resource_value": "{\"name\": \"ELAN-AC:996\", \"type\": \"L2VSI\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]", + "resource_value": "{\"name\": \"5603d4487d23-NetInst\", \"route_distinguisher\": \"65000:533\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACL]", + "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23-NetInst\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACLr]", + "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23-NetInst\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[TestPablo]", + "resource_value": "{\"name\": \"TestPablo\", \"route_distinguisher\": \"65000:934\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[TestPablo]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"TestPablo\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]", + "resource_value": "{\"name\": \"VRF_TEST\", \"route_distinguisher\": \"65000:11\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/protocols[BGP]", + "resource_value": "{\"as\": 100, \"identifier\": \"BGP\", \"name\": \"VRF_TEST\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"VRF_TEST\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"VRF_TEST\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/inter_instance_policies[RT_POLICY]", + "resource_value": "{\"export_policy\": \"RT_POLICY\", \"import_policy\": \"RT_POLICY\", \"name\": \"VRF_TEST\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]", + "resource_value": "{\"name\": \"5603d4487d23\", \"route_distinguisher\": \"65000:101\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23\", \"protocol_name\": \"BGP\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACL]", + "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACLr]", + "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/acl/interfaces/ingress[udp][oc-acl:ACL_IPV4]", + "resource_value": "{\"id\": \"eth-1/0/16.125\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_OPENCONFIG" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "17d02669-86db-543e-b91b-f6159af1a6a0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "1b988154-78ec-5da2-b174-39898da62244" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "1dcec577-ac69-53e4-a72b-f5f1871043d9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "224fb033-10b8-55a8-8f52-7234b1327833" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "2448396a-ff1d-500c-8c51-993a138cf5dd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "29a8fe73-556b-5410-9a61-750846fcfe54" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "2afbfd30-8777-57e9-abae-9172f6df384a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "2f5bfa77-d0c8-548b-8444-7455276efebb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "3a401361-75ef-591f-8ff3-23505170735a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "468107a5-0bcd-537b-b60a-6c191cd148e6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "480037b4-e62a-5ab5-abf2-0a3c53db288f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "4aa2606b-85de-5366-85ce-77a2ed3b74ee" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "4e86de78-3926-5050-aae8-0de5c27461ba" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "5812a4d9-dff2-5e30-9abc-a5060767c7f3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "6fb6e6f9-ce33-5be3-9512-fdaebf84c6c3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "798e885d-2ec5-549b-8e61-4215a1b0f6ec" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "851bdc12-af64-54d3-af8d-42e433810dfe" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "90a511d8-39e5-541e-bc05-c32712c89ac5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "a5eeaebb-6583-5204-8ba2-e9ddc03bc2d3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "acb2cf16-b7c5-58bd-bffc-a76298691da2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "b18c0cfd-c702-50da-b85c-c37f5025518f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "bf308228-ecab-5a13-bd60-33560173306f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "ce7a28be-fded-5bde-af47-889798e8658b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "daebc390-ab9b-52a4-b83f-5211b6a85df1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "dfdebf8e-2ef5-5f6f-8ce3-005d5ef537d1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "e2eda1cb-5771-5b3f-bf48-a3ee9f426424" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "endpoint_uuid": { + "uuid": "fdcce611-b4e1-5c2c-97df-89cbb45e472d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/8" + } + ], + "device_id": { + "device_uuid": { + "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "packet-router", + "name": "R125" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/1\"\n},\n{\n\"uuid\": \"1/7\"\n},\n{\n\"uuid\": \"1/9\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/1]", + "resource_value": "{\"uuid\": \"1/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/7]", + "resource_value": "{\"uuid\": \"1/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/9]", + "resource_value": "{\"uuid\": \"1/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "037f7430-f5ab-5053-ac02-de41457c5a17" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "0a379200-ae33-5577-be8a-d60f45309d00" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "0a762890-e214-58b1-9228-57ec345030fc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "154fcd4d-73e7-54f1-9c05-47693f3faa01" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "1552ae79-9b32-5494-9c8e-db27d155abaf" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "15a1ac97-a829-5c29-a8a2-91caab138138" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "19e45693-9e93-5b36-a76e-f7fcfdf90ce2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "268d6497-c646-5db4-a520-8a17065ebabc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "364b4d72-cb11-59fb-9ba3-4fcdcbf1cfcd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "37ccf393-ba82-51cf-8ee8-b16b8269b1e4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "386e4b93-4bd3-5ff6-b225-9324ef5f71f9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "39bda16d-fce5-58c8-9045-7a7e5c4d09ce" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "3dc6c727-c503-52bd-ad1c-fb96f5dbd708" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "41f9da47-4836-5eed-b1fd-bd91f68ee073" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "44029518-4863-557d-9541-dbcbcdd85640" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "4b074c39-cf2b-53bc-8db8-f587f3802647" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "52578371-33c9-5911-b0c4-eaa23f3a4e6b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "52a67a14-0196-502a-9c37-54c5dd2833d4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "5932aa92-75ad-55f5-9e0d-f0af02ad365c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "5ba0880c-8163-5db9-86e5-af27820a531e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "5c86108b-4b64-5da7-93b2-52a318a43713" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "5d47d75a-0722-56b9-888f-74dfa117fb61" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "60ffcfcb-83fd-5c9e-ac47-81145221ac66" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "650d5af8-50bf-5300-a7da-4ea6a451caf5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "6a2b55a3-6fe2-5164-a804-dff2715c8562" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "6b552eca-f001-5bca-91e5-dcbe448bbf94" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "6d31fee2-29cc-5cbc-a6e0-a8f0ce5fdba9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "708b2080-5c74-5e7e-ba58-44cae1ca7a2a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "788ca42f-7735-549c-aa3a-8d250c27e272" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "7d77f735-0bd7-5e72-8816-ced7a60f5dc8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "94a83c56-7970-5df7-9e3b-bc9f6c228aac" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "97d7fc2c-42f2-580a-ba26-9da11f079bd5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "97fe1ccd-70f1-5459-a31a-f16c173dc230" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "98c9fa61-11c7-5374-8e36-2c8955d172d5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "a8954fa0-60dc-5249-848d-4b44f73bd335" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "abac7bd2-30fe-535d-a48a-6ebb67d43476" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "ac5d6716-1be8-560e-a0c7-f8c8a198d417" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "baaedd5a-580b-5a61-89db-6803da9ee8b9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "bc92b7f6-fc30-5f94-b91b-0a92fd66475e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "be647b29-9138-50ca-99e0-1446fcbc3012" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "c5d48627-6be1-5793-8cde-267758ac5eb1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "ca7a06e1-e71b-58ea-ba35-eb710ef5f8f5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "d1779939-a1b2-55bd-98cf-d59da0fa5aa6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "d55e10ad-2953-5704-a880-e2f21b55c0cd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "dd924310-5dbe-5fa9-a591-b348ca37e04b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "de5ea8e9-2d02-5d19-9e2b-d6c9d43db1a3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "e5a77c27-31c3-54a9-87f9-0d6d179f2fc5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "e98055ca-c229-5dfa-91ba-aeaca70f4871" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "eaeab62e-23c9-5a28-86f5-988e3d8d16e1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "ec0ed2ed-3f0e-51cd-a077-9f26f946cd72" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "f26a1731-2a94-5a8a-8fdc-a5d47bbae721" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "f4f834aa-c147-538e-8610-fbd8186914fc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "endpoint_uuid": { + "uuid": "ff15c130-3b49-5f8a-bba6-9fcb1777570f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + } + ], + "device_id": { + "device_uuid": { + "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R8" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/8\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/4]", + "resource_value": "{\"uuid\": \"1/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/8]", + "resource_value": "{\"uuid\": \"1/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/14]", + "resource_value": "{\"uuid\": \"1/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "0100690e-3895-52c1-8a21-7b3f60c7f66c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "079a99ac-c1c3-5c5c-9c62-37aa2898cc1b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "0cc7df0f-9f6c-509f-a53c-69eaf93f6806" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "146f9064-0115-5c16-8d03-6baf42e5c3e4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "19496a31-be7c-57d9-97e7-801eb3d95904" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "1c871316-106b-5f38-85fd-20fdb63b0d6b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "1f036258-17bb-52af-9a22-45d2bbe2396e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "2068cd00-bc64-5708-9e1c-571ab79b48e2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "212753f8-a4f7-50c6-9664-847cf74514e3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "28bf479f-dcb6-5688-ae2a-b2ee5bef5e0e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "2be53199-b9dd-5d70-b5d8-696a18196cab" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "2d084e2f-2519-51d4-8c46-3e85ac9d5f72" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "354aceeb-5ef3-562c-9361-f697da38304c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "45fc7226-0545-585a-966d-6f66297f9e44" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "615fbf3a-b9e5-5257-af89-f0f94fa29543" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "639a020e-1b97-5ebc-827e-764667418879" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "678c17de-c52a-56ac-bac8-6b4ba43e4401" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "781f25f0-a6aa-50ff-9c21-b5041e90f2dc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "80f5d49e-df94-562e-ae4d-acb1033f4e14" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "84f6d7c0-0429-560e-9272-6ad942c02764" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "85e3af6f-d013-55d7-b669-00641b936fcd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "85fa2e32-1a9a-54e1-9e10-323052ebd15b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "8c9fc634-7618-5b13-a19d-c94dc5b6f869" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "8f798e45-b64e-5f0c-a0d3-6b722bd441ff" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "962c3886-73f6-51b2-983b-3dfa7d56a7f4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "9f767898-eaea-52ff-90b4-7d81d765402a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "a42337bf-7831-5f6c-8904-537e10f07f95" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "a7eacb1f-27b3-59ca-b9fd-d46856edd254" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "a8252100-ed12-5285-86d5-3952e9ac5889" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "a8b9e525-7a34-5995-9433-0503c352b842" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "aa706ca3-6a74-5b13-8c85-80424c29ae1a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "aa8169c6-06ec-503a-81f0-9cb9fa811ef4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "aa8d4e36-ebec-5ffe-aa02-69522cd06081" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "ac836b09-bbe7-5598-a900-9dfa1b2134bb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "acf56414-a2f0-5e0c-a7b3-d3086eed6e44" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "b3818e0c-9837-5a24-9621-0d3f4ff1f531" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "b72e8207-9864-5be9-8137-dedae06e2ad6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "b95e07c2-c5b9-50f8-ba97-22278550040a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "c73cf5dc-9cae-53cc-8457-a7b9df417275" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "cb427ac2-10d8-5ee3-987a-b12dcb3244b6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "cef2a510-7d30-53a4-a512-c84f37bc4318" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "d149af55-6b39-5ac9-8cfd-e61d5a31ef43" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "d2d84901-1b9f-5432-ac64-9d6cc23d5250" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "d61bc584-a267-556a-a2fa-39dd8f6d62a5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "d8d6ef46-6890-5c4c-a3f7-5914e6e85317" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "e0e44a18-328b-5296-810d-a0be0f5dad42" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "e10afe74-90da-5675-9b9d-8179b5921c3b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "e51d12e5-d4a2-5930-8595-c784c888ef2e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "e75cde7d-83db-566c-a8c0-0bdbd79b650d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "ef57d42c-165f-5c30-adea-be1d47b1c007" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "f4d123a2-094f-5d32-a051-2a7ec4ef3e29" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "f9332cb6-604e-5bfa-81ce-5e2fd9aa0ef2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "endpoint_uuid": { + "uuid": "f93e41a9-e384-5eb3-ac73-02a62b747123" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + } + ], + "device_id": { + "device_uuid": { + "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R7" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/5\"\n},\n{\n\"uuid\": \"1/6\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/5]", + "resource_value": "{\"uuid\": \"1/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/6]", + "resource_value": "{\"uuid\": \"1/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/14]", + "resource_value": "{\"uuid\": \"1/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:000]", + "resource_value": "{\"name\": \"ELAN-AC:000\", \"type\": \"L2VSI\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[1/5.000]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"1/5.000\", \"type\": \"l2vlan\", \"vlan_id\": \"111\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:000]/interface[1/5.000]", + "resource_value": "{\"id\": \"1/5.000\", \"interface\": \"1/5.000\", \"name\": \"ELAN-AC:000\", \"subinterface\": 0}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:000]/connection_point[VC-1]", + "resource_value": "{\"VC_ID\": \"000\", \"connection_point\": \"VC-1\", \"name\": \"ELAN-AC:000\", \"remote_system\": \"0.0.0.0\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "0084615d-9ee8-5c20-9d90-b39919d29e41" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "0b2a9589-abc6-594b-82ec-9f78abe62ee8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "13bb84e0-840c-5c33-a49c-90b6a3ed42e7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "13f577e6-22d1-5e74-87bf-a4637070ca66" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "1db66d37-657a-5e6f-b041-8b06b98d7acc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "1f9dda95-ce9c-521c-b266-78ef2fa7f4c2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "22aa739b-9c97-5b16-8b0a-b20e23b99c3f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "28a1229c-6605-5887-9b5d-71cc797735a8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "2d0dc070-f7c4-57ae-b591-772e52a9c6ad" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "31d345a2-79fe-57b1-a5d0-7f6cc2b9ce7f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "357f8504-89bc-5de7-b9ca-2c844902c433" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "381bac1d-e967-541a-919d-c0bcaafe42b4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "3a313405-5a41-5c76-a320-8197740a098c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "3db0a124-c38e-5618-ac0a-2fca33b384f2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "41291f42-94ff-55f1-a497-5197d7d8cdb5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "43b0c971-7239-5345-b079-d590582f83c2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "45081e48-0505-513f-b1f0-6b21a5005b44" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "4eeb9876-4ef8-5e33-9711-bf317bc8d432" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "506d8a04-f42c-50a6-9105-593feb3e12fa" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "5534e9bb-eac0-59b9-a5c7-3e6991a93bed" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "55c1c4ae-6430-5a1f-95df-05cf1c6b92e8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "566b9c46-d7fd-5d84-99e0-1f60b0efc4a3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "5ce767d8-2c33-54cb-bfad-6b034a806f4e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "675c0b5c-430b-51f3-9af6-f6aea569332b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "7011cd9a-c0ed-587f-a5ab-12574c3be5c3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "7aaf3ea9-1599-5494-9505-8a4e051b8c6c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "7ac6bbaa-8a09-57d4-a0b1-855725ba4182" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "8ae1c361-f3d5-56b6-acb9-c895c7a3cd88" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "8ec7d9ca-831b-5915-aa4b-dc34aec0c410" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "9298b921-f122-5eee-9056-87a20e26b60f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "966cd010-8153-5cec-aa23-27a71d3ff751" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "97ac3b56-cf17-501a-9036-69a13ca765a8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "9add37aa-b443-5401-a462-6d445ea932d2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "9bcfa964-bb10-5236-84a3-df5b164abbf0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "9e14fa09-52ca-557d-bf16-cf42e0389d1f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "a7d9714c-72fb-5b72-930c-8d2b6784b283" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "a8cf2848-336e-5c46-ba54-0bf5ba3f7f18" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "adce05cd-a9df-5e82-aa1b-ec5e39c8bffa" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "ae22cace-e779-53ee-b62f-f1d6e45b7f7e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "ae708852-0637-523a-80c5-f7189203e6eb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "c0eb57ad-3794-5074-8719-3b9e60887457" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "c3431acf-ec73-54b2-8819-306361e42c77" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "c87fa96a-4c63-5a04-b056-6e64bb6c852d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "ca171433-75f4-57b8-94f5-13f3427df375" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "d5ad7003-2f5b-5bad-9f13-786361255217" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "e3f124b0-29d2-5a95-a756-0464a58a9874" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "e63d7bc0-289f-5c7b-82f0-5e3144ec6b79" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "e6e19828-37d4-55fc-bac8-d82923a1e757" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "e9f29af9-a987-5758-91cf-1d145522f2ea" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "eae2b879-812a-5d03-945f-9a459ee46ffa" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "eeaa592c-3593-58b6-a074-4b6f24b719be" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "ef6f5552-25a5-5a47-97ff-ae9e6790d1ff" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "endpoint_uuid": { + "uuid": "f3720b6f-2a59-5a60-98c9-cf91109b317b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + } + ], + "device_id": { + "device_uuid": { + "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R2" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/6\"\n},\n{\n\"uuid\": \"1/10\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/4]", + "resource_value": "{\"uuid\": \"1/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/6]", + "resource_value": "{\"uuid\": \"1/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/10]", + "resource_value": "{\"uuid\": \"1/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "03eff8fd-7cd6-5c17-bc04-027d8184f9e8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "09e10417-951d-5c7c-91b1-9dce994f3d58" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "10de7378-62ba-5b11-b9de-f74142827224" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "128709cf-0fed-50ad-9329-0bbcc4e28d61" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "13ebd77c-55a7-5a40-a5fe-442f7b2b1071" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "14e44da2-a3bc-5c98-9b44-4275f0be6484" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "1e4cf7b4-60a4-5a13-aef1-5399d3d062b6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "20ab8e79-1099-5cb1-a957-2dc9889f14e6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "224647f3-683b-5cfe-b641-21cb1cd9cc1a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "2cd45b0a-36a6-523a-8b6e-7a3deb67de37" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "3cb074d0-5ee3-5790-b9f9-9f76c3aea143" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "3f554f40-68a3-5b8d-9979-658a11970cb5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "432abfe6-927c-5085-9111-3a95f9ebd218" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "49d88e1a-b91a-5fda-bcdf-930b69c25787" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "4b3d6bbd-3ea3-56a6-8b50-5c152cba93a5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "4d5956bc-8a98-52b2-a1b2-b6a172a85314" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "5e25b4b5-fe42-548c-a839-5edd214f8e76" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "6756b6f2-0157-5084-afa8-d5fa6993ad4c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "68af6907-fbc3-5bc4-8207-2dcc7a87a1fd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "712bff5c-b7ad-5871-9462-0a25f5c5d20b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "71662469-a8ee-5764-891a-420f25086c15" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "7a3235cd-d8dd-5be4-a984-710906843dd4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "7ed377cc-7df6-5922-9b4e-7d65ac5fe442" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "812c93a6-95ae-550f-82d3-7b12914b0f74" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "83479b0e-929d-5be7-a12e-ffcb91eddf64" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "8496f85b-7e4e-59be-b467-2983d2069c1e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "8addb2d0-3f3f-5a06-bdb6-08fdb572555d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "98479548-4d3a-57e0-854e-badb61675c0e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "9e01a7c7-b408-5f36-9b8c-1faa87d66730" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "9f1fecc8-c29e-539f-803c-0b491bb89f80" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "a1383e4c-97c2-55c9-9bcc-4bec854d81aa" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "aa08da93-23dd-57ed-82c2-669cd77c9c35" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "aeacd3d9-b961-51b7-b26b-14f81b9afca0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "b441b8ab-da87-5fca-87f1-869b7a716e04" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "b5ab414c-a510-5ce5-91b0-82f3c67bdc1f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "bf2bca6f-f662-5f4a-a690-f5b4438ba86f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "c1808b35-b562-5bd6-ab08-e3b8905b8f2d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "c34823f6-ca28-58e4-8517-fd8c99ce0b6d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "c5c40c28-1b6f-528e-afec-d1326eca4cc8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "c6437ab5-6e5b-5f5a-8ea6-5b901f09b43c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "d1deef50-0782-5feb-80ba-78ed6d9a6e3b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "d2ce8b55-d1d1-5e97-965a-5ba607ae33fc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "d35343cd-2d91-5e8e-9560-ad439996c5eb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "d471ae0a-b7c3-5883-a597-bf076b9b335c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "dc979840-e6ef-5a4c-9a79-ed52e2c8069c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "dd1b9b1d-51b3-5a97-96e3-5c83d739db98" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "e54fa1f6-08ec-5623-9235-70e977d9d287" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "e820464d-7d21-5fa9-95e4-94e9e2b69d7a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "e8ffce6a-0bd2-5939-b923-de9e883f8d6e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "eb934cc2-89aa-54ae-8116-6c28f3d25516" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "f30f66e0-9f39-584e-ae9e-5657df5f7abc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "f81506a6-48fb-5b91-882c-3fb508f7f477" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "endpoint_uuid": { + "uuid": "fa42214f-5919-5e4d-81bd-62873f9fae53" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + } + ], + "device_id": { + "device_uuid": { + "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R12" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/5\"\n},\n{\n\"uuid\": \"1/6\"\n},\n{\n\"uuid\": \"1/7\"\n},\n{\n\"uuid\": \"1/9\"\n},\n{\n\"uuid\": \"1/11\"\n},\n{\n\"uuid\": \"1/12\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/5]", + "resource_value": "{\"uuid\": \"1/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/6]", + "resource_value": "{\"uuid\": \"1/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/7]", + "resource_value": "{\"uuid\": \"1/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/9]", + "resource_value": "{\"uuid\": \"1/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/11]", + "resource_value": "{\"uuid\": \"1/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/12]", + "resource_value": "{\"uuid\": \"1/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "05661ed1-3e9d-5fa0-9373-9ed4eb5ab3bc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "11c69adf-559e-5534-9233-bf70df2748cb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "13d6baa1-009e-5abb-a510-0046213c49d6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "18b7ea84-9a40-5969-9663-7c5a5cf12e37" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "2131c85a-44e4-5cdb-8651-20ab0736117c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "24210426-b86e-53c1-a3fd-b143eadc9717" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "27dc9cd6-4375-5067-9be2-904cd283cec0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "2b76b851-ebf9-5e90-adde-67d4f86f722c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "2f972610-1dd8-578b-b724-ab9158ef8f7e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "30fe8a90-681c-5964-918d-5fa0ba83183d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "33b1e706-e68e-5b1b-97d7-ed32f40e64b2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "39643748-adf4-5258-9603-3987f4ef9a4e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "39985bbe-3fa1-5827-b010-3cb67fa68067" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "3e15b4df-5b29-560f-99e1-961f88512c77" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "4114ad6a-8488-530a-8149-3d9c08fd2aea" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "47bb825a-892d-5764-804c-ba82fe4a1ef6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "58792e02-ec97-53db-880e-7da6e8acd9ba" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "5b934da6-2f79-55de-b592-48b86e336b28" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "5dd48c55-cc16-53d5-91ad-90d405964d13" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "693fce09-3d31-5efe-9d93-274cb3f5e981" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "7349ec90-121a-5a0c-bb17-ae34ae0b1243" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "78552442-91f4-5479-986c-97e69defb056" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "7b82279e-791c-5a52-ac86-8c8198922e59" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "81e87ce4-62cb-59f4-b2d7-5165038a4b6e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "828fee99-f0ff-5fca-b531-97f8e0e14a51" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "846d1ffa-c868-5000-90cc-2f5749b0c553" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "84faa49c-e3cc-5d60-9599-f0d2029d9df7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "8b036261-5965-54ca-92dd-23c2a9c48859" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "8cc1349e-3a12-5f04-bb57-951191756b03" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "8d12e4e4-d407-587f-b859-9bb2b0c6767c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "902733fb-61de-5bc9-8d9d-a49de1569ce1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "9b4f8481-1fb1-5e72-bd7b-ef9f09fbd035" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "9d1a54b7-cf7c-553f-a827-20c69ed24a27" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "aa6ba73a-462f-55be-ba5f-c07aa76e75d5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "ab3a7b0e-89e0-5297-8787-3416118f8274" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "af898720-14f6-55e3-baf0-4cecf1c18531" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "b7371df6-39bc-5cbf-8fc0-a760fcf3e50e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "bbf23ce1-a56f-5c9a-b46f-1d82f5e78e59" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "c48f5af0-ff48-50de-ba87-c7d908361458" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "ca729bde-b5de-5e0f-b8dd-916b27ff17d8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "ca92ca24-5a5d-5cc6-8e00-932f3efaacb1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "d64cca05-2f6e-5ddd-a9eb-dee064fd1676" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "daacf08c-4ca9-538f-ac3d-1bf7c7b9bc0a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "dbc84f66-7c04-57a2-9cb5-56ec2c598127" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "de2e77ea-caf2-5a8b-836a-ba44a09e75d6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "e0863a90-2e41-553b-8df6-7f834aae8cfd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "e12d9832-e64a-5bad-851f-c503ceecbbc0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "e1fc5ca3-08a8-55ae-8001-020d2d85c829" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "e3fa040b-21e5-5bc6-91c3-9505956d3c07" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "e41107ff-90a4-5d7b-afb3-9ba6885f3ed9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "e86d3b79-08eb-5734-b0cf-1f0c98767856" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "ebae031f-0001-516d-9408-5905d7fe58c3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "fa0cf8e5-1890-56bb-98a3-64721f655b00" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "fb42b232-bfcb-5331-83f2-1064bdd1084f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "fc784924-f2e2-58b5-8993-a04f52829439" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "endpoint_uuid": { + "uuid": "febed417-0137-50c1-9050-c2118fe85463" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + } + ], + "device_id": { + "device_uuid": { + "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R4" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/3\"\n},\n{\n\"uuid\": \"1/11\"\n},\n{\n\"uuid\": \"1/12\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/3]", + "resource_value": "{\"uuid\": \"1/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/11]", + "resource_value": "{\"uuid\": \"1/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/12]", + "resource_value": "{\"uuid\": \"1/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "077e15f9-76fe-5333-9408-968c2b41cdae" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "0efd6983-cb30-5b44-a70f-aea7eef73ee7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "180e0e89-c31a-59a4-ba51-78f8808b0142" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "1b12d0c3-6525-5c59-b0fc-a8767d5a234b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "205c228a-6d13-5dd9-a096-3d0f32aa623e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "2107946e-8ba6-590b-b46a-ae4657ef40d7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "2356dc7c-cbdf-591d-b0ee-6c7ce833875d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "25f2edc5-6d82-5ed2-9e45-116d25832ecc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "2666e58b-6cee-5e1c-a88d-00e2905b0f32" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "271733ae-018f-54fc-88bf-0632f3cdb7f9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "27e611ee-5dc2-5029-8e57-5ca6ee2cfc2f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "2a108849-e226-508f-994e-8361591fb5a6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "316b145e-aa6c-5df4-af66-715d6b4e5a17" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "33442303-1f87-5232-884f-edb5d9e3ffd5" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "36fe1f19-dba3-51d2-9e1b-2e3c704a6b19" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "37ab9a53-2ef7-5dc0-920f-52cbf126a560" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "3fe69c47-9ee9-5aeb-bf00-b18e82fc99b1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "40587a07-793f-5b4e-aa55-72b927b07438" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "49acea8d-74bd-55db-90bd-cc2103782103" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "56f7a8f0-1333-52d9-9b8d-4f193c0eae50" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "58f5c4e9-bd47-538a-b165-835c17f8fb22" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "5a769adf-c6e8-5f56-9283-7e5b89c1eb7c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "5ceb2ff8-cf7a-5a98-a0ea-c8db55539cd3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "65941ce9-090b-5eb0-92e2-159d8fa7be6b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "66d6ee8a-d31f-52f3-a543-d065a1d8f230" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "70a11827-5f5f-5fd8-bc4e-625b96f49cfa" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "761f413c-e81f-5ef3-906e-15ee7a7cf979" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "7899ce16-bbf9-5aec-860b-03b632b2415e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "79dcdbdd-295c-5cc5-8bc5-b9e3f5781259" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "7c88df78-ac8b-5b21-9d4a-9fb5cb9b2ab7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "86e1d7d9-8196-501d-89e0-81a29ab329c1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "8f371d4d-437f-5dcd-8da5-49aed0a10591" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "9114b7f3-d37d-5c06-b836-fe9ae5be5e31" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "95535457-347b-5087-9334-34e9c3108a14" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "9584839b-c968-555b-b365-7d45b158da93" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "a4601696-fbf8-5542-93bc-1a0b1a584290" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "a5937e81-da6e-5c10-b112-632c91c59c80" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "a6e3def0-24dd-58ce-8dc2-3b76a7e59a54" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "ae66e1f3-388e-50a6-84dd-ab3011abd7c8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "bf37f73c-1d04-5502-bbcd-b0c774f5321d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "c2323639-cc62-51c0-824d-d407f021487e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "c7867a3e-6777-5da4-86e6-b3f8cfcc2206" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "df10edad-6e34-5e21-b3df-b707d1996152" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "e474474e-736d-50f5-a67c-6c64fc1ecbb0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "e872518a-7b5d-5ddc-b32b-537f0eb448ce" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "ed3ab9eb-7d0e-5af0-8bc6-20e09c9244d9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "eecd6a9e-3f25-53d4-aaaf-86c9233f3e00" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "f899702b-ea5a-56f8-ab09-6084ab8cdafb" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "f973a042-5400-5b24-8dd4-cc74392e30f7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "fbdb17d1-78a5-50dc-bb9e-c1e74dfa1e88" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "fd9dfc42-9756-5efb-8198-e5c6906bf347" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "fe88e415-7414-5870-ba3d-b08f31840680" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "endpoint_uuid": { + "uuid": "ffff2d64-d04c-54e2-a006-9a5fa0d7ab84" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/12" + } + ], + "device_id": { + "device_uuid": { + "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R10" + }, + { + "components": [ + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "015374ab-9cae-58c3-8e0e-a438482511d1" + }, + "name": "eth-1/0/6", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "030e2ea4-7cdf-5212-9a28-88dc24c52629" + }, + "name": "eth-1/0/20", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "11e08bd6-770d-55a0-a635-e54cf3dbccc7" + }, + "name": "eth-1/0/17", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "1c93cb2d-2c23-50df-95d8-f32fe26e1373" + }, + "name": "Transceiver#15", + "parent": "eth-1/0/15", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "1feb16b7-ccd9-5cd6-a958-56400aafb910" + }, + "name": "Fan#4", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "2033bacd-7ca6-5226-ad88-e05f3b36881b" + }, + "name": "eth-1/0/1", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2058b20d-6517-5380-8b20-e1ebda347ff1" + }, + "name": "eth-1/0/22", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2733b361-a1e5-5a22-b0ff-f20346c233b7" + }, + "name": "eth-1/0/14", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2ca154b0-4e4b-5024-92b0-b7cf4bcc4fac" + }, + "name": "eth-1/0/8", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "2dc02c86-6a77-5767-9c6f-07b20d09bcc5" + }, + "name": "Transceiver#8", + "parent": "eth-1/0/8", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2e08a6e2-10f9-5b61-b358-a46e5d2168c7" + }, + "name": "eth-1/0/10", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "2febcb3d-0afa-594e-9ebe-c6f23c8b7e8a" + }, + "name": "eth-1/0/16", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"PYA2FD5 \"", + "vendor": "\"FINISAR CORP. \"" + }, + "component_uuid": { + "uuid": "330654aa-1136-58c7-9836-dce23b03e84b" + }, + "name": "Transceiver#23", + "parent": "eth-1/0/23", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "36c2ad7f-3191-5d73-ba5b-a90eee210e28" + }, + "name": "eth-1/0/2", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"AZG28W2 \"", + "vendor": "\"FINISAR CORP. \"" + }, + "component_uuid": { + "uuid": "380c56d9-4da7-52a0-8902-17e44d84182d" + }, + "name": "Transceiver#6", + "parent": "eth-1/0/6", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "383a5fda-c038-5273-919e-e2fdebec614a" + }, + "name": "eth-1/0/5", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "389fa34a-d04c-5328-af4b-f3d825907e11" + }, + "name": "Transceiver#5", + "parent": "eth-1/0/5", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "399007c8-f6c1-5b1e-9c88-19d5815b447f" + }, + "name": "Transceiver#9", + "parent": "eth-1/0/9", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"F162250019 \"", + "vendor": "\"Edgecore \"" + }, + "component_uuid": { + "uuid": "4f052094-76bf-57e9-8c50-ab087f7585fc" + }, + "name": "Transceiver#22", + "parent": "eth-1/0/22", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"CRXT-T0T12A\"", + "empty": "\"false\"", + "location": "\"Power Supplies tray\"", + "manufacturer-name": "\"CRXT-T0T12A\"", + "removable": "\"true\"", + "serial-num": "\"19330053\"" + }, + "component_uuid": { + "uuid": "52494162-56ba-5362-84c2-de654f647fd4" + }, + "name": "Power-Supply#1", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "60bd77bf-2c0e-5058-ac6a-f4b107888668" + }, + "name": "eth-1/0/23", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "638f45d1-e274-5c90-bd6c-6d0b43354705" + }, + "name": "eth-1/0/7", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "6548a5c7-3dc3-56d3-9521-3b8f1bcd00f5" + }, + "name": "Transceiver#3", + "parent": "eth-1/0/3", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "669a0888-e577-511f-8bb1-a78854d21236" + }, + "name": "eth-1/0/4", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "66f3fad6-f259-558c-87cb-85c267bf872d" + }, + "name": "eth-1/0/18", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "68748f18-ee2c-5650-9476-375489dcf90c" + }, + "name": "Transceiver#14", + "parent": "eth-1/0/14", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "6c5296eb-eeaa-5d24-b274-3cc24095ebfe" + }, + "name": "eth-1/0/19", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "6f156244-93a8-5b24-8300-3bcb1d390ec5" + }, + "name": "eth-1/0/11", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "7317a965-f981-59e8-87ca-0aa8c87634b1" + }, + "name": "Transceiver#21", + "parent": "eth-1/0/21", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "7a57c318-8e6c-5b45-89e5-fae2c611fb03" + }, + "name": "Transceiver#19", + "parent": "eth-1/0/19", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "7c8a8160-a11b-588d-8302-c2fa37b7acd3" + }, + "name": "Fan#5", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "86b7296f-1bc6-5ed6-9019-89776c5e624c" + }, + "name": "Transceiver#24", + "parent": "eth-1/0/24", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "88619a40-3670-5447-8264-a5a44e75f8ea" + }, + "name": "eth-1/0/12", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "8ba82a4b-08cc-5f84-89da-ce532af55224" + }, + "name": "Transceiver#11", + "parent": "eth-1/0/11", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "8cd2af8e-072a-56e3-88d0-dd3a73b14ca3" + }, + "name": "Transceiver#4", + "parent": "eth-1/0/4", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "8dab697e-efe0-5818-b072-841bcd57340e" + }, + "name": "eth-1/0/27", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "9f20d73a-2898-5bcb-8dcf-09441dcaaa14" + }, + "name": "Transceiver#10", + "parent": "eth-1/0/10", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"DRX-30\"", + "empty": "\"false\"", + "hardware-rev": "\"R0D\"", + "manufacturer-name": "\"DRX-30\"", + "mfg-date": "\"2020-01-08\"", + "removable": "\"false\"", + "serial-num": "\"731527XB1952144\"", + "software-rev": "\"21.5.1 (9799)\"" + }, + "component_uuid": { + "uuid": "a0307926-d58c-51ef-aeaf-a8587065ddb2" + }, + "name": "chassis", + "parent": "chassis", + "type": "CHASSIS" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"CN04HG0018P1452\"", + "vendor": "\"DELL EMC \"" + }, + "component_uuid": { + "uuid": "a537dd75-55ed-5f80-bbe0-a5fcec8fe992" + }, + "name": "Transceiver#20", + "parent": "eth-1/0/20", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "a548914d-f039-5463-a7cf-e3a2d0e970ce" + }, + "name": "Fan#3", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"030SBF6TH661789\"", + "vendor": "\"HISILICON \"" + }, + "component_uuid": { + "uuid": "a86ad9f3-d5f7-5e4b-911a-89e15cf56cbb" + }, + "name": "Transceiver#16", + "parent": "eth-1/0/16", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "abb4254a-f8fc-5c88-a884-cba09af44e2f" + }, + "name": "Transceiver#2", + "parent": "eth-1/0/2", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "b1fe3b03-236d-509f-9738-0863a0051cc0" + }, + "name": "eth-1/0/24", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "b9326b3e-4bfd-5334-8205-17964ca521d3" + }, + "name": "Transceiver#1", + "parent": "eth-1/0/1", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "bddb5da3-8ca6-50a8-91e2-4ab1d7bca8b1" + }, + "name": "Transceiver#27", + "parent": "eth-1/0/27", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "cae5f45f-0442-5ea1-ba3f-beac8c1e2e55" + }, + "name": "eth-1/0/21", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "cbb8d2b5-a57f-508b-a054-509ace91bc88" + }, + "name": "Fan#2", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"CN04HG00183038D\"", + "vendor": "\"DELL EMC \"" + }, + "component_uuid": { + "uuid": "cdcb47b3-3fe9-5db0-a70a-df607933c68b" + }, + "name": "Transceiver#17", + "parent": "eth-1/0/17", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "d20d0c2a-5cbd-5602-b54b-a44134b391b7" + }, + "name": "eth-1/0/13", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"false\"", + "location": "\"Power Supplies tray\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "d35ae2b7-88e8-5f8e-bb1c-6b1b04c41652" + }, + "name": "Power-Supply#2", + "parent": "chassis", + "type": "POWER_SUPPLY" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "d3cbf635-9c86-542b-b169-53a77dea2d75" + }, + "name": "eth-1/0/25", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "d425d98d-4f08-5519-a754-63fa109ba13b" + }, + "name": "eth-1/0/15", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"100G/40G Fiber\"" + }, + "component_uuid": { + "uuid": "d71a754a-1d95-5fa9-956a-fba4da2e9841" + }, + "name": "eth-1/0/26", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "description": "\"25G/10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "d976f4a3-6490-5006-8452-65d8b80af1b6" + }, + "name": "eth-1/0/3", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"F162250016 \"", + "vendor": "\"Edgecore \"" + }, + "component_uuid": { + "uuid": "d9a36c03-d934-5ca3-ab94-047b6114ce5a" + }, + "name": "Transceiver#25", + "parent": "eth-1/0/25", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "connector-type": "\"LC_CONNECTOR\"", + "empty": "\"false\"", + "form-factor": "\"SFP\"", + "removable": "\"true\"", + "serial-num": "\"P22224B0261 \"", + "vendor": "\"PDDG \"" + }, + "component_uuid": { + "uuid": "e2dc2aaf-afea-5356-8ea5-c77e9895da0b" + }, + "name": "Transceiver#18", + "parent": "eth-1/0/18", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "e3a4825b-62c2-5119-bed1-9c4b7edeb0bf" + }, + "name": "Transceiver#12", + "parent": "eth-1/0/12", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "e7c4e4dc-5f70-53a8-9680-6d1d1f382611" + }, + "name": "Transceiver#26", + "parent": "eth-1/0/26", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"10G/1G Fiber\"" + }, + "component_uuid": { + "uuid": "f0c6922f-c0bb-5f69-920b-0d8ebc3f7c63" + }, + "name": "eth-1/0/9", + "parent": "", + "type": "PORT" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "f441b766-d83b-51f0-bb87-9feacbaa222e" + }, + "name": "Transceiver#13", + "parent": "eth-1/0/13", + "type": "TRANSCEIVER" + }, + { + "attributes": { + "description": "\"AS7315\"", + "empty": "\"false\"", + "location": "\"Fans tray\"", + "manufacturer-name": "\"AS7315\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "fbee5498-f04b-543b-b0df-054b8ddcdab5" + }, + "name": "Fan#1", + "parent": "chassis", + "type": "FAN" + }, + { + "attributes": { + "empty": "\"true\"", + "removable": "\"true\"" + }, + "component_uuid": { + "uuid": "ff8fc959-332f-5e3d-8b4b-ad52935ab386" + }, + "name": "Transceiver#7", + "parent": "eth-1/0/7", + "type": "TRANSCEIVER" + } + ], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "10.95.90.125" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "830" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/chassis", + "resource_value": "{\"attributes\": {\"description\": \"DRX-30\", \"empty\": \"false\", \"hardware-rev\": \"R0D\", \"manufacturer-name\": \"DRX-30\", \"mfg-date\": \"2020-01-08\", \"removable\": \"false\", \"serial-num\": \"731527XB1952144\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#1", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#2", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#3", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#4", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Fan#5", + "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#1", + "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12A\", \"empty\": \"false\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12A\", \"removable\": \"true\", \"serial-num\": \"19330053\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Power-Supply#2", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"location\": \"Power Supplies tray\", \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/1", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#1", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/2", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#2", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/3", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#3", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/4", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#4", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/5", + "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#5", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/6", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#6", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"AZG28W2 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/7", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#7", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/8", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#8", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/9", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#9", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/10", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#10", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/11", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#11", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/12", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#12", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/13", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#13", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/14", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#14", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/15", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#15", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/16", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#16", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"030SBF6TH661789\", \"vendor\": \"HISILICON \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/17", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#17", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG00183038D\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/18", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#18", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"P22224B0261 \", \"vendor\": \"PDDG \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/19", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#19", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/20", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#20", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG0018P1452\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/21", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#21", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/22", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#22", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F162250019 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/23", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#23", + "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"PYA2FD5 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/24", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#24", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/25", + "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#25", + "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F162250016 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/26", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#26", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/eth-1/0/27", + "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/inventory/Transceiver#27", + "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/1]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/2]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/3]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/4]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/5]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/6]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/7]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/8]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/9]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/10]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/11]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/12]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/13]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/14]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/15]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/16]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/17]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/18]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/19]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/20]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/21]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/22]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/23]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/24]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/25]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/26]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[eth-1/0/27]", + "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/1]", + "resource_value": "{\"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/2]", + "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/3]", + "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/4]", + "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/5]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/6]", + "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/7]", + "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/8]", + "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/9]", + "resource_value": "{\"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10]", + "resource_value": "{\"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/11]", + "resource_value": "{\"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/12]", + "resource_value": "{\"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/13]", + "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/14]", + "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/15]", + "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16]", + "resource_value": "{\"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/17]", + "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/18]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/19]", + "resource_value": "{\"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21]", + "resource_value": "{\"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23]", + "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/24]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25]", + "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/26]", + "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/27]", + "resource_value": "{\"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]/subinterface[0]", + "resource_value": "{\"address_ip\": \"10.95.90.125\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth0]", + "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]/subinterface[0]", + "resource_value": "{\"address_ip\": \"5.5.5.5\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[dummy1]", + "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10.42]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.4.42.5\", \"address_ipv6\": \"2001::99:4:42:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\", \"vlan_id\": 42}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/10.42]", + "resource_value": "{\"description\": \"\\\"Conexion con HL4-2-2\\\"\", \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.125]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.16.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/16.125]", + "resource_value": "{\"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.20.3\", \"address_ipv6\": \"2001::99:5:20:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 20}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22.111]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.4.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/22.111]", + "resource_value": "{\"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.125]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.61.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.125]", + "resource_value": "{\"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25.55]/subinterface[0]", + "resource_value": "{\"address_ip\": \"99.5.55.2\", \"address_ipv6\": \"2001::99:5:55:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/25.55]", + "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.996]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\", \"vlan_id\": 996}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/23.996]", + "resource_value": "{\"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.533]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.12.12\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\", \"vlan_id\": 533}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/20.533]", + "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.534]/subinterface[0]", + "resource_value": "{\"address_ip\": \"172.16.17.47\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\", \"vlan_id\": 534}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.534]", + "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.999]/subinterface[0]", + "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/21.999\", \"type\": \"l2vlan\", \"vlan_id\": 999}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/interface[eth-1/0/21.999]", + "resource_value": "{\"name\": \"eth-1/0/21.999\", \"type\": \"l2vlan\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_POLICY_BGP]", + "resource_value": "{\"policy_name\": \"MY_POLICY_BGP\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_AS_PATH]", + "resource_value": "{\"policy_name\": \"MY_AS_PATH\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_STANDARD_COMMUNITY]", + "resource_value": "{\"policy_name\": \"MY_STANDARD_COMMUNITY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_EXTENDED_COMMUNITY]", + "resource_value": "{\"policy_name\": \"MY_EXTENDED_COMMUNITY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[MY_POLICY]", + "resource_value": "{\"policy_name\": \"MY_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv_ACL]", + "resource_value": "{\"policy_name\": \"srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv_ACLr]", + "resource_value": "{\"policy_name\": \"srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[RT_POLICY]", + "resource_value": "{\"policy_name\": \"RT_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv11_ACL]", + "resource_value": "{\"policy_name\": \"srv11_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/policy_definition[srv11_ACLr]", + "resource_value": "{\"policy_name\": \"srv11_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL]", + "resource_value": "{\"ext_community_set_name\": \"set_srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL][65000:533]", + "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr]", + "resource_value": "{\"ext_community_set_name\": \"set_srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr][65000:533]", + "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY]", + "resource_value": "{\"ext_community_set_name\": \"set_RT_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY][65001:456]", + "resource_value": "{\"ext_community_member\": \"65001:456\", \"ext_community_set_name\": \"set_RT_POLICY\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACL]", + "resource_value": "{\"ext_community_set_name\": \"set_srv11_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACL][65000:101]", + "resource_value": "{\"ext_community_member\": \"65000:101\", \"ext_community_set_name\": \"set_srv11_ACL\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACLr]", + "resource_value": "{\"ext_community_set_name\": \"set_srv11_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACLr][65000:101]", + "resource_value": "{\"ext_community_member\": \"65000:101\", \"ext_community_set_name\": \"set_srv11_ACLr\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]", + "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.5\", \"type\": \"DEFAULT_INSTANCE\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[OSPF]", + "resource_value": "{\"identifier\": \"OSPF\", \"name\": \"default\", \"protocol_name\": \"OSPF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[ISIS]", + "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[BGP]", + "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:996]", + "resource_value": "{\"name\": \"ELAN-AC:996\", \"type\": \"L2VSI\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]", + "resource_value": "{\"name\": \"5603d4487d23-NetInst\", \"route_distinguisher\": \"65000:533\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACL]", + "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23-NetInst\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACLr]", + "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23-NetInst\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[TestPablo]", + "resource_value": "{\"name\": \"TestPablo\", \"route_distinguisher\": \"65000:934\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[TestPablo]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"TestPablo\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]", + "resource_value": "{\"name\": \"VRF_TEST\", \"route_distinguisher\": \"65000:11\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/protocols[BGP]", + "resource_value": "{\"as\": 100, \"identifier\": \"BGP\", \"name\": \"VRF_TEST\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"VRF_TEST\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"VRF_TEST\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[VRF_TEST]/inter_instance_policies[RT_POLICY]", + "resource_value": "{\"export_policy\": \"RT_POLICY\", \"import_policy\": \"RT_POLICY\", \"name\": \"VRF_TEST\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]", + "resource_value": "{\"name\": \"5603d4487d23\", \"route_distinguisher\": \"65000:101\", \"type\": \"L3VRF\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[BGP]", + "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23\", \"protocol_name\": \"BGP\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[DIRECTLY_CONNECTED]", + "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/protocols[STATIC]", + "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23\", \"protocol_name\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/table_connections[STATIC][BGP][IPV4]", + "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"STATIC\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACL]", + "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv11_ACL]", + "resource_value": "{\"import_policy\": \"srv11_ACL\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACLr]", + "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv11_ACLr]", + "resource_value": "{\"export_policy\": \"srv11_ACLr\", \"name\": \"5603d4487d23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/network_instance[ELAN-AC:999]", + "resource_value": "{\"name\": \"ELAN-AC:999\", \"type\": \"L2VSI\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/acl/interfaces/ingress[udp][oc-acl:ACL_IPV4]", + "resource_value": "{\"id\": \"eth-1/0/16.125\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_OPENCONFIG" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "041a75da-c050-5ca3-b146-42b0f00ee29d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "0b2a4334-b88b-5309-b405-58e12f2b50af" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "15acb931-1879-5b9a-9b03-7a55af809ee8" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "1840078d-cbf3-5da7-bf6a-362af86c3348" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "2db099e4-8ed6-560e-a711-b9740d8c2207" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "3ea44221-bdb4-5d7f-a9d3-72fdca6bd157" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "49f0a9c8-2a92-5d99-9130-1e5fe78a54d6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "54c77c3f-74f8-51e7-9327-1cc58966dd49" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "5bf6d901-a375-5c10-9c50-e3b32245384c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "61b1b61a-2a81-5726-b9f8-4e12aa9e8f0b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "704521ab-79dc-5816-a349-326ec9105dad" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "748eaf56-dd46-57fb-b174-b2e5118ef595" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "749fb7f2-6090-5b1b-ab34-85bb81dc8839" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "85ed1309-aa02-5f4e-8895-39a1bc3b2a0d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "90af834b-3150-5f29-8d64-3f32e1b06cc3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "98217d3a-063e-5700-8baf-42194da9876d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "be264f6e-2526-5396-8816-7ef83ac0283f" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "c52d4511-cc44-57bd-aa81-c1a10666686b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "c68adeba-a5cd-54b5-9cce-a697f994ac4a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "d91dd1c7-cc89-5c3a-bc35-7ba60d3deb7d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "dca3594e-3e72-5880-a7d9-cde710bd010c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "ddc92c2d-5548-5056-9cfc-ad6cafb56d82" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "e3f8a96f-b3fa-5eb5-9ff4-1a823794c82e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "e6143da8-29b4-57ed-b2df-436ceeb966cc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "ec930b06-c6f5-5be1-aac0-655d31655782" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "f1e57176-aaca-594a-b0ff-c0fc609554b6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "endpoint_uuid": { + "uuid": "fc8dc95c-f59d-56a3-ac4c-989b3748bc3d" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [ + "KPISAMPLETYPE_BYTES_RECEIVED", + "KPISAMPLETYPE_BYTES_TRANSMITTED", + "KPISAMPLETYPE_PACKETS_RECEIVED", + "KPISAMPLETYPE_PACKETS_TRANSMITTED" + ], + "name": "eth-1/0/20" + } + ], + "device_id": { + "device_uuid": { + "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "packet-router", + "name": "R149" + }, + { + "components": [], + "controller_id": {}, + "device_config": { + "config_rules": [ + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/address", + "resource_value": "127.0.0.1" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/port", + "resource_value": "0" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "_connect/settings", + "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/2\"\n},\n{\n\"uuid\": \"1/5\"\n},\n{\n\"uuid\": \"1/7\"\n},\n{\n\"uuid\": \"1/13\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/2]", + "resource_value": "{\"uuid\": \"1/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/5]", + "resource_value": "{\"uuid\": \"1/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/7]", + "resource_value": "{\"uuid\": \"1/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[1/13]", + "resource_value": "{\"uuid\": \"1/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/1]", + "resource_value": "{\"uuid\": \"2/1\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/2]", + "resource_value": "{\"uuid\": \"2/2\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/3]", + "resource_value": "{\"uuid\": \"2/3\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/4]", + "resource_value": "{\"uuid\": \"2/4\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/5]", + "resource_value": "{\"uuid\": \"2/5\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/6]", + "resource_value": "{\"uuid\": \"2/6\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/7]", + "resource_value": "{\"uuid\": \"2/7\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/8]", + "resource_value": "{\"uuid\": \"2/8\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/9]", + "resource_value": "{\"uuid\": \"2/9\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/10]", + "resource_value": "{\"uuid\": \"2/10\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/11]", + "resource_value": "{\"uuid\": \"2/11\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/12]", + "resource_value": "{\"uuid\": \"2/12\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/13]", + "resource_value": "{\"uuid\": \"2/13\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/14]", + "resource_value": "{\"uuid\": \"2/14\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/15]", + "resource_value": "{\"uuid\": \"2/15\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/16]", + "resource_value": "{\"uuid\": \"2/16\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/17]", + "resource_value": "{\"uuid\": \"2/17\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/18]", + "resource_value": "{\"uuid\": \"2/18\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/19]", + "resource_value": "{\"uuid\": \"2/19\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/20]", + "resource_value": "{\"uuid\": \"2/20\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/21]", + "resource_value": "{\"uuid\": \"2/21\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/22]", + "resource_value": "{\"uuid\": \"2/22\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/23]", + "resource_value": "{\"uuid\": \"2/23\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/24]", + "resource_value": "{\"uuid\": \"2/24\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/25]", + "resource_value": "{\"uuid\": \"2/25\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/26]", + "resource_value": "{\"uuid\": \"2/26\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/27]", + "resource_value": "{\"uuid\": \"2/27\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/28]", + "resource_value": "{\"uuid\": \"2/28\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/29]", + "resource_value": "{\"uuid\": \"2/29\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/30]", + "resource_value": "{\"uuid\": \"2/30\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/31]", + "resource_value": "{\"uuid\": \"2/31\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/32]", + "resource_value": "{\"uuid\": \"2/32\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/33]", + "resource_value": "{\"uuid\": \"2/33\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/34]", + "resource_value": "{\"uuid\": \"2/34\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/35]", + "resource_value": "{\"uuid\": \"2/35\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/36]", + "resource_value": "{\"uuid\": \"2/36\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/37]", + "resource_value": "{\"uuid\": \"2/37\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/38]", + "resource_value": "{\"uuid\": \"2/38\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/39]", + "resource_value": "{\"uuid\": \"2/39\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/40]", + "resource_value": "{\"uuid\": \"2/40\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/41]", + "resource_value": "{\"uuid\": \"2/41\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/42]", + "resource_value": "{\"uuid\": \"2/42\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/43]", + "resource_value": "{\"uuid\": \"2/43\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/44]", + "resource_value": "{\"uuid\": \"2/44\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/45]", + "resource_value": "{\"uuid\": \"2/45\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/46]", + "resource_value": "{\"uuid\": \"2/46\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/47]", + "resource_value": "{\"uuid\": \"2/47\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/48]", + "resource_value": "{\"uuid\": \"2/48\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/49]", + "resource_value": "{\"uuid\": \"2/49\"}" + } + }, + { + "action": "CONFIGACTION_SET", + "custom": { + "resource_key": "/endpoints/endpoint[2/50]", + "resource_value": "{\"uuid\": \"2/50\"}" + } + } + ] + }, + "device_drivers": [ + "DEVICEDRIVER_UNDEFINED" + ], + "device_endpoints": [ + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "107c1980-770a-54de-a36f-58208f12d5ee" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/23" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "111054e4-0200-5962-97db-ce23ab2656e7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/20" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "13a7345f-59be-50eb-a25a-de341d11fa78" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/25" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "14b95c1c-6a3a-5593-8cac-e1caf4e99f43" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/40" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "14dbd8fb-0a03-59c1-8d4a-2efb53dc50e4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "168aff21-f1c7-5770-a134-9c486ff3aed6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/48" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "1a0a53dc-83a8-558a-8514-bcdbea18bf8a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/6" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "1ce4b25c-d70b-5328-b452-3ba2665d26a2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/36" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "1d8d733b-3992-5196-8900-89bbfd6813c6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/45" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "217daacf-5908-5daf-93a8-ed5f57f5d033" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/12" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "240b2035-d953-5306-abcb-bb43fd721768" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/27" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "36dc4ac9-2617-5592-b6ce-e80ea5e7a128" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/15" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "3a0ff6b7-6c46-5e9c-a2ce-baf0aef8d9be" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/8" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "3b60b8d8-2cf1-5221-a4b4-ef44d995a5bd" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/24" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "3bde5d04-c6be-5a4c-beda-426ab3f51f6c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/2" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "3d3dd83b-7ff0-5ed8-a927-741c975b06d1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "40d5f4fe-1d0a-5cc8-9c5c-65777fb26009" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/5" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "45fbac46-1ed3-5176-a49f-64faa53f0dbc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/47" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "4632048f-707a-5f2f-b6de-4fc943cb06e1" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/26" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "4bdcbfc1-b3b1-5900-9a8f-309ebe99838e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "549cac05-4c03-5d37-9a48-0da872901daf" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/49" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "6025a0cd-8881-5589-a120-572663c05882" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/1" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "6190825d-3688-5d85-839b-d8b5bc5cea93" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/34" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "6fdf1a44-796a-5e96-91f5-325ae3df2453" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/29" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "6fdf2a1b-6767-5d40-ad24-9a081d59522b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/50" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "761dd4b9-c6ec-5388-8edc-b667f767c98a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/41" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "82dc2b4c-89d9-5e20-9b92-c2868ab0847a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/19" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "8a37fce2-a3a3-52d0-9901-b7c04cd15afc" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/43" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "8c07cc9a-7f0b-5bb4-bd30-d6327b253df3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/11" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "8c1005fd-4b0a-50ad-b2db-ae5aba7bd36e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/39" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "8c586d70-13ce-546e-8dc1-6a5f37cd5c82" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/31" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "8cc2f60f-783c-52cd-a1e9-82568bc16212" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "8d26040f-ee92-5f07-a179-f159bd5a04ec" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/37" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "90672de3-0560-5d15-8111-b6f84c8fa61b" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "1/7" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "94d75508-97b0-5f7c-af3e-6feacffeb956" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/13" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "a7bd0c6b-6303-51fc-85d2-2234c85eb7b6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/44" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "aa033a4b-3c94-5652-a819-d73c52ed7c84" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/33" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "ab1f0d53-bc56-5838-94d0-60f0f6cb73c9" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/46" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "acdd2c22-7cf0-57ad-8fb8-11998781f64c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/21" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "adfe16f5-c52e-583c-b1a3-c392afdb2754" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/22" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "b39be508-bf21-52bc-9452-e9e72ed0ce7c" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/32" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "b53cf34e-e6c5-5622-9287-a7309796ccc4" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/35" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "b6f85cb2-0818-5c9e-b2e2-dcea08a13b87" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/38" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "b75fb81a-c009-5a90-bd1e-3e367196d2ba" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/3" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "bb6439d7-d9ca-5266-856f-2241f3aa792a" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/17" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "ce50639f-3614-5a81-9591-c62da0d8ec61" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/18" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "d8fccb2a-2b5c-53fd-a3a9-03a12d7518b7" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/42" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "dc804210-aff8-539d-ae72-e66c096d9361" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/16" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "ea531797-4b90-5ced-9539-7052bfafd408" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/10" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "f89ac9c4-e7c2-5720-ad54-fb2cc651fca3" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/28" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "f8f14f28-040d-5c4e-90f3-821e0bb733f6" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/9" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "f981bc30-0d0f-5165-b8d9-a0c749ae7dc2" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/14" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "fcab81c5-76dc-59a8-9a2b-eee0570704a0" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/4" + }, + { + "endpoint_id": { + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "endpoint_uuid": { + "uuid": "fff7a2d8-4510-5cbd-9119-62c9603c0a3e" + }, + "topology_id": { + "context_id": { + "context_uuid": { + "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" + } + }, + "topology_uuid": { + "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" + } + } + }, + "endpoint_location": {}, + "endpoint_type": "-", + "kpi_sample_types": [], + "name": "2/30" + } + ], + "device_id": { + "device_uuid": { + "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" + } + }, + "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", + "device_type": "emu-packet-router", + "name": "R14" + } + ] +} \ No newline at end of file diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py new file mode 100644 index 000000000..31a7e8ffb --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py @@ -0,0 +1,116 @@ +import libyang, os +from common.proto.context_pb2 import Device +from typing import Dict, Optional + +YANG_DIR = os.path.join(os.path.dirname(__file__), 'yang') +MODULE_NAME = 'ietf-hardware' + +class YangHandler: + def __init__(self) -> None: + self._yang_context = libyang.Context(YANG_DIR) + self._yang_module = self._yang_context.load_module(MODULE_NAME) + self._yang_module.feature_enable_all() + + def parse_to_dict(self, message : Dict) -> Dict: + dnode : Optional[libyang.DNode] = self._yang_module.parse_data_dict( + message, validate_present=True, validate=True, strict=True + ) + if dnode is None: raise Exception('Unable to parse Message({:s})'.format(str(message))) + message = dnode.print_dict() + dnode.free() + return message + + def compose(self, device : Device) -> Dict: + # compose device iterating through the components + + hardware = self._yang_context.create_data_path('/ietf-hardware:hardware') + physical_index = 0 + + for component in device.components: + attributes = component.attributes + + component_new = hardware.create_path('component[name="{:s}"]'.format(component.name)) + component_new.create_path('name', component.name) + + #Cambiar las clases especiales, su formato y añadir isfru + component_type = component.type + if component_type == "TRANSCEIVER" : + component_type = "module" + + if component_type == "FRU" : + component_type = "slack" + component_new.create_path('isfru', True) + else : + component_new.create_path('isfru', False) + + component_type = component_type.replace("_", "-").lower() + + component_new.create_path('class', component_type) + + #Añadir resto de atributos en IETF + + physical_index += physical_index + component_new.create_path('physical-index', physical_index) + + component_new.create_path('description', attributes["description"]) + + component_new.create_path('parent', component.parent) + + component_new.create_path('hardware-rev', attributes["hardware-rev"]) + component_new.create_path('software-rev', attributes["software-rev"]) + component_new.create_path('firmware-rev', attributes["firmware-version"]) + component_new.create_path('serial-num', attributes["serial-num"]) + component_new.create_path('mfg-name', attributes["mfg-name"]) + component_new.create_path('mfg-date', attributes["mfg-date"]) + component_new.create_path('parent-rel-pos', attributes["id"]) + + component_new.create_path('uri', component.name) + + + component_new.create_path('uuid', component.component_uuid.uuid) + + contains_child = [] + for component2 in device.components: + if component.name == component2.parent : + contains_child.append(component2.name) + + component_new.create_path('contains-child', contains_child) + + return hardware.print_mem('json') + + + + '''# example methods (based on openconfig, to be adapted): + #str_path = '/interfaces/interface[name={:s}]'.format(if_name) + if_name = 'my-if' + interfaces = self._yang_context.create_data_path('/openconfig-interfaces:interfaces') + my_if = interfaces.create_path('interface[name="{:s}"]'.format(if_name)) + my_if.create_path('config/name', if_name) + my_if.create_path('config/enabled', True) + + my_subifs = my_if.create_path('subinterfaces') + + subif_index = 3 + my_subif = my_subifs.create_path('subinterface[index="{:d}"]'.format(subif_index)) + my_subif.create_path('config/index', subif_index) + my_subif.create_path('config/enabled', True) + + vlan_id = 123 + my_subif_vlan = my_subif.create_path('openconfig-vlan:vlan') + my_subif_vlan.create_path('match/single-tagged/config/vlan-id', vlan_id) + + my_subif_ipv4 = my_subif.create_path('openconfig-if-ip:ipv4') + my_subif_ipv4.create_path('config/enabled', True) + + my_subif_ipv4_addrs = my_subif_ipv4.create_path('addresses') + my_ipv4_addr_ip = '10.0.1.10' + my_ipv4_addr_prefix = 24 + my_subif_ipv4_addr = my_subif_ipv4_addrs.create_path('address[ip="{:s}"]'.format(my_ipv4_addr_ip)) + my_subif_ipv4_addr.create_path('config/ip', my_ipv4_addr_ip) + my_subif_ipv4_addr.create_path('config/prefix-length', my_ipv4_addr_prefix) + + return my_if.print_mem('json')''' + + + def destroy(self) -> None: + self._yang_context.destroy() \ No newline at end of file diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py new file mode 100644 index 000000000..b69cdc837 --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py @@ -0,0 +1,7 @@ +from nbi.service.rest_server.nbi_plugins.ietf_hardware.Hardware import Hardware +from nbi.service.rest_server.RestServer import RestServer + +URL_PREFIX = "/restconf/data/device=/ietf-hardware:hardware" + +def register_ietf_hardware(rest_server: RestServer): + rest_server.add_resource(Hardware, URL_PREFIX) \ No newline at end of file diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/iana-hardware@2018-03-13.yang b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/iana-hardware@2018-03-13.yang new file mode 100644 index 000000000..5cd52648f --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/iana-hardware@2018-03-13.yang @@ -0,0 +1,189 @@ +module iana-hardware { + yang-version 1.1; + namespace "urn:ietf:params:xml:ns:yang:iana-hardware"; + prefix ianahw; + + organization "IANA"; + contact + " Internet Assigned Numbers Authority + + Postal: ICANN + 12025 Waterfront Drive, Suite 300 + Los Angeles, CA 90094-2536 + United States of America + + Tel: +1 310 301 5800 + E-Mail: iana@iana.org>"; + + description + "IANA-defined identities for hardware class. + + The latest revision of this YANG module can be obtained from + the IANA website. + + Requests for new values should be made to IANA via + email (iana@iana.org). + + Copyright (c) 2018 IETF Trust and the persons identified as + authors of the code. All rights reserved. + + Redistribution and use in source and binary forms, with or + without modification, is permitted pursuant to, and subject + to the license terms contained in, the Simplified BSD License + + set forth in Section 4.c of the IETF Trust's Legal Provisions + Relating to IETF Documents + (https://trustee.ietf.org/license-info). + + The initial version of this YANG module is part of RFC 8348; + see the RFC itself for full legal notices."; + reference + "https://www.iana.org/assignments/yang-parameters"; + + revision 2018-03-13 { + description + "Initial revision."; + reference + "RFC 8348: A YANG Data Model for Hardware Management"; + } + + /* + * Identities + */ + + identity hardware-class { + description + "This identity is the base for all hardware class + identifiers."; + } + + identity unknown { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is unknown + to the server."; + } + + identity chassis { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is an + overall container for networking equipment. Any class of + physical component, except a stack, may be contained within a + chassis; a chassis may only be contained within a stack."; + } + + identity backplane { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of device for aggregating and forwarding networking traffic, + such as a shared backplane in a modular ethernet switch. Note + that an implementation may model a backplane as a single + physical component, which is actually implemented as multiple + discrete physical components (within a chassis or stack)."; + } + + identity container { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is capable + of containing one or more removable physical entities, + possibly of different types. For example, each (empty or + full) slot in a chassis will be modeled as a container. Note + that all removable physical components should be modeled + within a container component, such as field-replaceable + modules, fans, or power supplies. Note that all known + containers should be modeled by the agent, including empty + containers."; + } + + identity power-supply { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is a + power-supplying component."; + } + + identity fan { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is a fan or + other heat-reduction component."; + } + + identity sensor { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of sensor, such as a temperature sensor within a router + chassis."; + } + + identity module { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of self-contained sub-system. If a module component is + removable, then it should be modeled within a container + + component; otherwise, it should be modeled directly within + another physical component (e.g., a chassis or another + module)."; + } + + identity port { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of networking port capable of receiving and/or transmitting + networking traffic."; + } + + identity stack { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of super-container (possibly virtual) intended to group + together multiple chassis entities. A stack may be realized + by a virtual cable, a real interconnect cable attached to + multiple chassis, or multiple interconnect cables. A stack + should not be modeled within any other physical components, + but a stack may be contained within another stack. Only + chassis components should be contained within a stack."; + } + + identity cpu { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of central processing unit."; + } + + identity energy-object { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of energy object, i.e., it is a piece of equipment that is + part of or attached to a communications network that is + monitored, it is controlled, or it aids in the management of + another device for Energy Management."; + } + + identity battery { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of battery."; + } + + identity storage-drive { + base ianahw:hardware-class; + description + "This identity is applicable if the hardware class is some sort + of component with data storage capability as its main + functionality, e.g., hard disk drive (HDD), solid-state device + (SSD), solid-state hybrid drive (SSHD), object storage device + (OSD), or other."; + } +} diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-hardware@2018-03-13.yang b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-hardware@2018-03-13.yang new file mode 100644 index 000000000..4f984b616 --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-hardware@2018-03-13.yang @@ -0,0 +1,1194 @@ +module ietf-hardware { + yang-version 1.1; + namespace "urn:ietf:params:xml:ns:yang:ietf-hardware"; + prefix hw; + + import ietf-inet-types { + prefix inet; + } + import ietf-yang-types { + prefix yang; + } + import iana-hardware { + prefix ianahw; + } + + organization + "IETF NETMOD (Network Modeling) Working Group"; + + contact + "WG Web: + WG List: + + Editor: Andy Bierman + + + Editor: Martin Bjorklund + + + Editor: Jie Dong + + + Editor: Dan Romascanu + "; + + description + "This module contains a collection of YANG definitions for + managing hardware. + + This data model is designed for the Network Management Datastore + Architecture (NMDA) defined in RFC 8342. + Copyright (c) 2018 IETF Trust and the persons identified as + authors of the code. All rights reserved. + + Redistribution and use in source and binary forms, with or + without modification, is permitted pursuant to, and subject + to the license terms contained in, the Simplified BSD License + set forth in Section 4.c of the IETF Trust's Legal Provisions + Relating to IETF Documents + (https://trustee.ietf.org/license-info). + + This version of this YANG module is part of RFC 8348; see + the RFC itself for full legal notices."; + + revision 2018-03-13 { + description + "Initial revision."; + reference + "RFC 8348: A YANG Data Model for Hardware Management"; + } + + /* + * Features + */ + + feature entity-mib { + description + "This feature indicates that the device implements + the ENTITY-MIB."; + reference + "RFC 6933: Entity MIB (Version 4)"; + } + + feature hardware-state { + description + "Indicates that ENTITY-STATE-MIB objects are supported"; + reference + "RFC 4268: Entity State MIB"; + } + + feature hardware-sensor { + description + "Indicates that ENTITY-SENSOR-MIB objects are supported"; + reference + "RFC 3433: Entity Sensor Management Information Base"; + } + + /* + * Typedefs + */ + + typedef admin-state { + type enumeration { + enum unknown { + value 1; + description + "The resource is unable to report administrative state."; + } + enum locked { + value 2; + description + "The resource is administratively prohibited from use."; + } + enum shutting-down { + value 3; + description + "The resource usage is administratively limited to current + instances of use."; + } + enum unlocked { + value 4; + description + "The resource is not administratively prohibited from + use."; + } + } + description + "Represents the various possible administrative states."; + reference + "RFC 4268: Entity State MIB - EntityAdminState"; + } + + typedef oper-state { + type enumeration { + enum unknown { + value 1; + description + "The resource is unable to report its operational state."; + } + enum disabled { + value 2; + description + "The resource is totally inoperable."; + } + enum enabled { + value 3; + + description + "The resource is partially or fully operable."; + } + enum testing { + value 4; + description + "The resource is currently being tested and cannot + therefore report whether or not it is operational."; + } + } + description + "Represents the possible values of operational states."; + reference + "RFC 4268: Entity State MIB - EntityOperState"; + } + + typedef usage-state { + type enumeration { + enum unknown { + value 1; + description + "The resource is unable to report usage state."; + } + enum idle { + value 2; + description + "The resource is servicing no users."; + } + enum active { + value 3; + description + "The resource is currently in use, and it has sufficient + spare capacity to provide for additional users."; + } + enum busy { + value 4; + description + "The resource is currently in use, but it currently has no + spare capacity to provide for additional users."; + } + } + description + "Represents the possible values of usage states."; + reference + "RFC 4268: Entity State MIB - EntityUsageState"; + } + + typedef alarm-state { + type bits { + bit unknown { + position 0; + description + "The resource is unable to report alarm state."; + } + bit under-repair { + position 1; + description + "The resource is currently being repaired, which, depending + on the implementation, may make the other values in this + bit string not meaningful."; + } + bit critical { + position 2; + description + "One or more critical alarms are active against the + resource."; + } + bit major { + position 3; + description + "One or more major alarms are active against the + resource."; + } + bit minor { + position 4; + description + "One or more minor alarms are active against the + resource."; + } + bit warning { + position 5; + description + "One or more warning alarms are active against the + resource."; + } + bit indeterminate { + position 6; + description + "One or more alarms of whose perceived severity cannot be + determined are active against this resource."; + } + } + description + "Represents the possible values of alarm states. An alarm is a + persistent indication of an error or warning condition. + + When no bits of this attribute are set, then no active alarms + are known against this component and it is not under repair."; + reference + "RFC 4268: Entity State MIB - EntityAlarmStatus"; + } + + typedef standby-state { + type enumeration { + enum unknown { + value 1; + description + "The resource is unable to report standby state."; + } + enum hot-standby { + value 2; + description + "The resource is not providing service, but it will be + immediately able to take over the role of the resource to + be backed up, without the need for initialization + activity, and will contain the same information as the + resource to be backed up."; + } + enum cold-standby { + value 3; + description + "The resource is to back up another resource, but it will + not be immediately able to take over the role of a + resource to be backed up and will require some + initialization activity."; + } + enum providing-service { + value 4; + description + "The resource is providing service."; + } + } + description + "Represents the possible values of standby states."; + reference + "RFC 4268: Entity State MIB - EntityStandbyStatus"; + } + + typedef sensor-value-type { + type enumeration { + enum other { + value 1; + description + "A measure other than those listed below."; + } + enum unknown { + value 2; + description + "An unknown measurement or arbitrary, relative numbers"; + } + enum volts-AC { + value 3; + description + "A measure of electric potential (alternating current)."; + } + enum volts-DC { + value 4; + description + "A measure of electric potential (direct current)."; + } + enum amperes { + value 5; + description + "A measure of electric current."; + } + enum watts { + value 6; + description + "A measure of power."; + } + enum hertz { + value 7; + description + "A measure of frequency."; + } + enum celsius { + value 8; + description + "A measure of temperature."; + } + enum percent-RH { + value 9; + description + "A measure of percent relative humidity."; + } + enum rpm { + value 10; + description + "A measure of shaft revolutions per minute."; + } + enum cmm { + value 11; + description + "A measure of cubic meters per minute (airflow)."; + } + enum truth-value { + value 12; + description + "Value is one of 1 (true) or 2 (false)"; + } + } + description + "A node using this data type represents the sensor measurement + data type associated with a physical sensor value. The actual + data units are determined by examining a node of this type + together with the associated sensor-value-scale node. + + A node of this type SHOULD be defined together with nodes of + type sensor-value-scale and type sensor-value-precision. + These three types are used to identify the semantics of a node + of type sensor-value."; + reference + "RFC 3433: Entity Sensor Management Information Base - + EntitySensorDataType"; + } + + typedef sensor-value-scale { + type enumeration { + enum yocto { + value 1; + description + "Data scaling factor of 10^-24."; + } + enum zepto { + value 2; + description + "Data scaling factor of 10^-21."; + } + enum atto { + value 3; + description + "Data scaling factor of 10^-18."; + } + enum femto { + value 4; + description + "Data scaling factor of 10^-15."; + } + enum pico { + value 5; + description + "Data scaling factor of 10^-12."; + } + enum nano { + value 6; + description + "Data scaling factor of 10^-9."; + } + enum micro { + value 7; + description + "Data scaling factor of 10^-6."; + } + enum milli { + value 8; + description + "Data scaling factor of 10^-3."; + } + enum units { + value 9; + description + "Data scaling factor of 10^0."; + } + enum kilo { + value 10; + description + "Data scaling factor of 10^3."; + } + enum mega { + value 11; + description + "Data scaling factor of 10^6."; + } + enum giga { + value 12; + description + "Data scaling factor of 10^9."; + } + enum tera { + value 13; + description + "Data scaling factor of 10^12."; + } + enum peta { + value 14; + description + "Data scaling factor of 10^15."; + } + enum exa { + value 15; + description + "Data scaling factor of 10^18."; + } + enum zetta { + value 16; + description + "Data scaling factor of 10^21."; + } + enum yotta { + value 17; + description + "Data scaling factor of 10^24."; + } + } + description + "A node using this data type represents a data scaling factor, + represented with an International System of Units (SI) prefix. + The actual data units are determined by examining a node of + this type together with the associated sensor-value-type. + + A node of this type SHOULD be defined together with nodes of + type sensor-value-type and type sensor-value-precision. + Together, associated nodes of these three types are used to + identify the semantics of a node of type sensor-value."; + reference + "RFC 3433: Entity Sensor Management Information Base - + EntitySensorDataScale"; + } + + typedef sensor-value-precision { + type int8 { + range "-8 .. 9"; + } + description + "A node using this data type represents a sensor value + precision range. + + A node of this type SHOULD be defined together with nodes of + type sensor-value-type and type sensor-value-scale. Together, + associated nodes of these three types are used to identify the + semantics of a node of type sensor-value. + + If a node of this type contains a value in the range 1 to 9, + it represents the number of decimal places in the fractional + part of an associated sensor-value fixed-point number. + + If a node of this type contains a value in the range -8 to -1, + it represents the number of accurate digits in the associated + sensor-value fixed-point number. + + The value zero indicates the associated sensor-value node is + not a fixed-point number. + + Server implementers must choose a value for the associated + sensor-value-precision node so that the precision and accuracy + of the associated sensor-value node is correctly indicated. + + For example, a component representing a temperature sensor + that can measure 0 to 100 degrees C in 0.1 degree + increments, +/- 0.05 degrees, would have a + sensor-value-precision value of '1', a sensor-value-scale + value of 'units', and a sensor-value ranging from '0' to + '1000'. The sensor-value would be interpreted as + 'degrees C * 10'."; + reference + "RFC 3433: Entity Sensor Management Information Base - + EntitySensorPrecision"; + } + + typedef sensor-value { + type int32 { + range "-1000000000 .. 1000000000"; + } + description + "A node using this data type represents a sensor value. + + A node of this type SHOULD be defined together with nodes of + type sensor-value-type, type sensor-value-scale, and + type sensor-value-precision. Together, associated nodes of + those three types are used to identify the semantics of a node + of this data type. + + The semantics of a node using this data type are determined by + the value of the associated sensor-value-type node. + + If the associated sensor-value-type node is equal to 'voltsAC', + 'voltsDC', 'amperes', 'watts', 'hertz', 'celsius', or 'cmm', + then a node of this type MUST contain a fixed-point number + ranging from -999,999,999 to +999,999,999. The value + -1000000000 indicates an underflow error. The value + +1000000000 indicates an overflow error. The + sensor-value-precision indicates how many fractional digits + are represented in the associated sensor-value node. + + If the associated sensor-value-type node is equal to + 'percentRH', then a node of this type MUST contain a number + ranging from 0 to 100. + + If the associated sensor-value-type node is equal to 'rpm', + then a node of this type MUST contain a number ranging from + -999,999,999 to +999,999,999. + + If the associated sensor-value-type node is equal to + 'truth-value', then a node of this type MUST contain either the + value 1 (true) or the value 2 (false). + + If the associated sensor-value-type node is equal to 'other' or + 'unknown', then a node of this type MUST contain a number + ranging from -1000000000 to 1000000000."; + reference + "RFC 3433: Entity Sensor Management Information Base - + EntitySensorValue"; + } + + typedef sensor-status { + type enumeration { + enum ok { + value 1; + description + "Indicates that the server can obtain the sensor value."; + } + enum unavailable { + value 2; + description + "Indicates that the server presently cannot obtain the + sensor value."; + } + enum nonoperational { + value 3; + description + "Indicates that the server believes the sensor is broken. + The sensor could have a hard failure (disconnected wire) + or a soft failure such as out-of-range, jittery, or wildly + fluctuating readings."; + } + } + description + "A node using this data type represents the operational status + of a physical sensor."; + reference + "RFC 3433: Entity Sensor Management Information Base - + EntitySensorStatus"; + } + + /* + * Data nodes + */ + + container hardware { + description + "Data nodes representing components. + + If the server supports configuration of hardware components, + then this data model is instantiated in the configuration + datastores supported by the server. The leaf-list 'datastore' + for the module 'ietf-hardware' in the YANG library provides + this information."; + + leaf last-change { + type yang:date-and-time; + config false; + description + "The time the '/hardware/component' list changed in the + operational state."; + } + + list component { + key name; + description + "List of components. + + When the server detects a new hardware component, it + initializes a list entry in the operational state. + + If the server does not support configuration of hardware + components, list entries in the operational state are + initialized with values for all nodes as detected by the + implementation. + + Otherwise, this procedure is followed: + + 1. If there is an entry in the '/hardware/component' list + in the intended configuration with values for the nodes + 'class', 'parent', and 'parent-rel-pos' that are equal + to the detected values, then the list entry in the + operational state is initialized with the configured + values, including the 'name'. + + 2. Otherwise (i.e., there is no matching configuration + entry), the list entry in the operational state is + initialized with values for all nodes as detected by + the implementation. + + If the '/hardware/component' list in the intended + configuration is modified, then the system MUST behave as if + it re-initializes itself and follow the procedure in (1)."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalEntry"; + + leaf name { + type string; + description + "The name assigned to this component. + + This name is not required to be the same as + entPhysicalName."; + } + + leaf class { + type identityref { + base ianahw:hardware-class; + } + mandatory true; + description + "An indication of the general hardware type of the + component."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalClass"; + } + + leaf physical-index { + if-feature entity-mib; + type int32 { + range "1..2147483647"; + } + config false; + description + "The entPhysicalIndex for the entPhysicalEntry represented + by this list entry."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalIndex"; + } + + leaf description { + type string; + config false; + description + "A textual description of the component. This node should + contain a string that identifies the manufacturer's name + for the component and should be set to a distinct value + for each version or model of the component."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalDescr"; + } + + leaf parent { + type leafref { + path "../../component/name"; + require-instance false; + } + description + "The name of the component that physically contains this + component. + + If this leaf is not instantiated, it indicates that this + component is not contained in any other component. + + In the event that a physical component is contained by + more than one physical component (e.g., double-wide + modules), this node contains the name of one of these + components. An implementation MUST use the same name + every time this node is instantiated."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalContainedIn"; + } + + leaf parent-rel-pos { + type int32 { + range "0 .. 2147483647"; + } + description + "An indication of the relative position of this child + component among all its sibling components. Sibling + components are defined as components that: + + o share the same value of the 'parent' node and + + o share a common base identity for the 'class' node. + + Note that the last rule gives implementations flexibility + in how components are numbered. For example, some + implementations might have a single number series for all + components derived from 'ianahw:port', while some others + might have different number series for different + components with identities derived from 'ianahw:port' (for + example, one for registered jack 45 (RJ45) and one for + small form-factor pluggable (SFP))."; + + reference + "RFC 6933: Entity MIB (Version 4) - + entPhysicalParentRelPos"; + } + + leaf-list contains-child { + type leafref { + path "../../component/name"; + } + config false; + description + "The name of the contained component."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalChildIndex"; + } + + leaf hardware-rev { + type string; + config false; + description + "The vendor-specific hardware revision string for the + component. The preferred value is the hardware revision + identifier actually printed on the component itself (if + present)."; + reference + "RFC 6933: Entity MIB (Version 4) - + entPhysicalHardwareRev"; + } + + leaf firmware-rev { + type string; + config false; + description + "The vendor-specific firmware revision string for the + component."; + reference + "RFC 6933: Entity MIB (Version 4) - + entPhysicalFirmwareRev"; + } + + leaf software-rev { + type string; + config false; + + description + "The vendor-specific software revision string for the + component."; + reference + "RFC 6933: Entity MIB (Version 4) - + entPhysicalSoftwareRev"; + } + + leaf serial-num { + type string; + config false; + description + "The vendor-specific serial number string for the + component. The preferred value is the serial number + string actually printed on the component itself (if + present)."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalSerialNum"; + } + + leaf mfg-name { + type string; + config false; + description + "The name of the manufacturer of this physical component. + The preferred value is the manufacturer name string + actually printed on the component itself (if present). + + Note that comparisons between instances of the + 'model-name', 'firmware-rev', 'software-rev', and + 'serial-num' nodes are only meaningful amongst components + with the same value of 'mfg-name'. + + If the manufacturer name string associated with the + physical component is unknown to the server, then this + node is not instantiated."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalMfgName"; + } + + leaf model-name { + type string; + config false; + description + "The vendor-specific model name identifier string + associated with this physical component. The preferred + value is the customer-visible part number, which may be + printed on the component itself. + If the model name string associated with the physical + component is unknown to the server, then this node is not + instantiated."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalModelName"; + } + + leaf alias { + type string; + description + "An 'alias' name for the component, as specified by a + network manager, that provides a non-volatile 'handle' for + the component. + + If no configured value exists, the server MAY set the + value of this node to a locally unique value in the + operational state. + + A server implementation MAY map this leaf to the + entPhysicalAlias MIB object. Such an implementation needs + to use some mechanism to handle the differences in size + and characters allowed between this leaf and + entPhysicalAlias. The definition of such a mechanism is + outside the scope of this document."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalAlias"; + } + + leaf asset-id { + type string; + description + "This node is a user-assigned asset tracking identifier for + the component. + + A server implementation MAY map this leaf to the + entPhysicalAssetID MIB object. Such an implementation + needs to use some mechanism to handle the differences in + size and characters allowed between this leaf and + entPhysicalAssetID. The definition of such a mechanism is + outside the scope of this document."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalAssetID"; + } + + leaf is-fru { + type boolean; + config false; + + description + "This node indicates whether or not this component is + considered a 'field-replaceable unit' by the vendor. If + this node contains the value 'true', then this component + identifies a field-replaceable unit. For all components + that are permanently contained within a field-replaceable + unit, the value 'false' should be returned for this + node."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalIsFRU"; + } + + leaf mfg-date { + type yang:date-and-time; + config false; + description + "The date of manufacturing of the managed component."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalMfgDate"; + } + + leaf-list uri { + type inet:uri; + description + "This node contains identification information about the + component."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalUris"; + } + + leaf uuid { + type yang:uuid; + config false; + description + "A Universally Unique Identifier of the component."; + reference + "RFC 6933: Entity MIB (Version 4) - entPhysicalUUID"; + } + + container state { + if-feature hardware-state; + description + "State-related nodes"; + reference + "RFC 4268: Entity State MIB"; + + leaf state-last-changed { + type yang:date-and-time; + config false; + description + "The date and time when the value of any of the + admin-state, oper-state, usage-state, alarm-state, or + standby-state changed for this component. + + If there has been no change since the last + re-initialization of the local system, this node + contains the date and time of local system + initialization. If there has been no change since the + component was added to the local system, this node + contains the date and time of the insertion."; + reference + "RFC 4268: Entity State MIB - entStateLastChanged"; + } + + leaf admin-state { + type admin-state; + description + "The administrative state for this component. + + This node refers to a component's administrative + permission to service both other components within its + containment hierarchy as well other users of its + services defined by means outside the scope of this + module. + + Some components exhibit only a subset of the remaining + administrative state values. Some components cannot be + locked; hence, this node exhibits only the 'unlocked' + state. Other components cannot be shut down gracefully; + hence, this node does not exhibit the 'shutting-down' + state."; + reference + "RFC 4268: Entity State MIB - entStateAdmin"; + } + + leaf oper-state { + type oper-state; + config false; + description + "The operational state for this component. + + Note that this node does not follow the administrative + state. An administrative state of 'down' does not + predict an operational state of 'disabled'. + + Note that some implementations may not be able to + accurately report oper-state while the admin-state node + has a value other than 'unlocked'. In these cases, this + node MUST have a value of 'unknown'."; + reference + "RFC 4268: Entity State MIB - entStateOper"; + } + + leaf usage-state { + type usage-state; + config false; + description + "The usage state for this component. + + This node refers to a component's ability to service + more components in a containment hierarchy. + + Some components will exhibit only a subset of the usage + state values. Components that are unable to ever + service any components within a containment hierarchy + will always have a usage state of 'busy'. In some + cases, a component will be able to support only one + other component within its containment hierarchy and + will therefore only exhibit values of 'idle' and + 'busy'."; + reference + "RFC 4268: Entity State MIB - entStateUsage"; + } + + leaf alarm-state { + type alarm-state; + config false; + description + "The alarm state for this component. It does not + include the alarms raised on child components within its + containment hierarchy."; + reference + "RFC 4268: Entity State MIB - entStateAlarm"; + } + + leaf standby-state { + type standby-state; + config false; + description + "The standby state for this component. + + Some components will exhibit only a subset of the + remaining standby state values. If this component + cannot operate in a standby role, the value of this node + will always be 'providing-service'."; + reference + "RFC 4268: Entity State MIB - entStateStandby"; + } + } + + container sensor-data { + when 'derived-from-or-self(../class, + "ianahw:sensor")' { + description + "Sensor data nodes present for any component of type + 'sensor'"; + } + if-feature hardware-sensor; + config false; + + description + "Sensor-related nodes."; + reference + "RFC 3433: Entity Sensor Management Information Base"; + + leaf value { + type sensor-value; + description + "The most recent measurement obtained by the server + for this sensor. + + A client that periodically fetches this node should also + fetch the nodes 'value-type', 'value-scale', and + 'value-precision', since they may change when the value + is changed."; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorValue"; + } + + leaf value-type { + type sensor-value-type; + description + "The type of data units associated with the + sensor value"; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorType"; + } + leaf value-scale { + type sensor-value-scale; + description + "The (power of 10) scaling factor associated + with the sensor value"; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorScale"; + } + + leaf value-precision { + type sensor-value-precision; + description + "The number of decimal places of precision + associated with the sensor value"; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorPrecision"; + } + + leaf oper-status { + type sensor-status; + description + "The operational status of the sensor."; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorOperStatus"; + } + + leaf units-display { + type string; + description + "A textual description of the data units that should be + used in the display of the sensor value."; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorUnitsDisplay"; + } + + leaf value-timestamp { + type yang:date-and-time; + description + "The time the status and/or value of this sensor was last + obtained by the server."; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorValueTimeStamp"; + } + leaf value-update-rate { + type uint32; + units "milliseconds"; + description + "An indication of the frequency that the server updates + the associated 'value' node, represented in + milliseconds. The value zero indicates: + + - the sensor value is updated on demand (e.g., + when polled by the server for a get-request), + + - the sensor value is updated when the sensor + value changes (event-driven), or + + - the server does not know the update rate."; + reference + "RFC 3433: Entity Sensor Management Information Base - + entPhySensorValueUpdateRate"; + } + } + } + } + + /* + * Notifications + */ + + notification hardware-state-change { + description + "A hardware-state-change notification is generated when the + value of /hardware/last-change changes in the operational + state."; + reference + "RFC 6933: Entity MIB (Version 4) - entConfigChange"; + } + + notification hardware-state-oper-enabled { + if-feature hardware-state; + description + "A hardware-state-oper-enabled notification signifies that a + component has transitioned into the 'enabled' state."; + + leaf name { + type leafref { + path "/hardware/component/name"; + } + + description + "The name of the component that has transitioned into the + 'enabled' state."; + } + leaf admin-state { + type leafref { + path "/hardware/component/state/admin-state"; + } + description + "The administrative state for the component."; + } + leaf alarm-state { + type leafref { + path "/hardware/component/state/alarm-state"; + } + description + "The alarm state for the component."; + } + reference + "RFC 4268: Entity State MIB - entStateOperEnabled"; + } + + notification hardware-state-oper-disabled { + if-feature hardware-state; + description + "A hardware-state-oper-disabled notification signifies that a + component has transitioned into the 'disabled' state."; + + leaf name { + type leafref { + path "/hardware/component/name"; + } + description + "The name of the component that has transitioned into the + 'disabled' state."; + } + leaf admin-state { + type leafref { + path "/hardware/component/state/admin-state"; + } + description + "The administrative state for the component."; + } + leaf alarm-state { + type leafref { + path "/hardware/component/state/alarm-state"; + } + + description + "The alarm state for the component."; + } + reference + "RFC 4268: Entity State MIB - entStateOperDisabled"; + } + +} diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-inet-types@2013-07-15.yang b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-inet-types@2013-07-15.yang new file mode 100644 index 000000000..eacefb636 --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-inet-types@2013-07-15.yang @@ -0,0 +1,458 @@ +module ietf-inet-types { + + namespace "urn:ietf:params:xml:ns:yang:ietf-inet-types"; + prefix "inet"; + + organization + "IETF NETMOD (NETCONF Data Modeling Language) Working Group"; + + contact + "WG Web: + WG List: + + WG Chair: David Kessens + + + WG Chair: Juergen Schoenwaelder + + + Editor: Juergen Schoenwaelder + "; + + description + "This module contains a collection of generally useful derived + YANG data types for Internet addresses and related things. + + Copyright (c) 2013 IETF Trust and the persons identified as + authors of the code. All rights reserved. + + Redistribution and use in source and binary forms, with or + without modification, is permitted pursuant to, and subject + to the license terms contained in, the Simplified BSD License + set forth in Section 4.c of the IETF Trust's Legal Provisions + Relating to IETF Documents + (http://trustee.ietf.org/license-info). + + This version of this YANG module is part of RFC 6991; see + the RFC itself for full legal notices."; + + revision 2013-07-15 { + description + "This revision adds the following new data types: + - ip-address-no-zone + - ipv4-address-no-zone + - ipv6-address-no-zone"; + reference + "RFC 6991: Common YANG Data Types"; + } + + revision 2010-09-24 { + description + "Initial revision."; + reference + "RFC 6021: Common YANG Data Types"; + } + + /*** collection of types related to protocol fields ***/ + + typedef ip-version { + type enumeration { + enum unknown { + value "0"; + description + "An unknown or unspecified version of the Internet + protocol."; + } + enum ipv4 { + value "1"; + description + "The IPv4 protocol as defined in RFC 791."; + } + enum ipv6 { + value "2"; + description + "The IPv6 protocol as defined in RFC 2460."; + } + } + description + "This value represents the version of the IP protocol. + + In the value set and its semantics, this type is equivalent + to the InetVersion textual convention of the SMIv2."; + reference + "RFC 791: Internet Protocol + RFC 2460: Internet Protocol, Version 6 (IPv6) Specification + RFC 4001: Textual Conventions for Internet Network Addresses"; + } + + typedef dscp { + type uint8 { + range "0..63"; + } + description + "The dscp type represents a Differentiated Services Code Point + that may be used for marking packets in a traffic stream. + In the value set and its semantics, this type is equivalent + to the Dscp textual convention of the SMIv2."; + reference + "RFC 3289: Management Information Base for the Differentiated + Services Architecture + RFC 2474: Definition of the Differentiated Services Field + (DS Field) in the IPv4 and IPv6 Headers + RFC 2780: IANA Allocation Guidelines For Values In + the Internet Protocol and Related Headers"; + } + + typedef ipv6-flow-label { + type uint32 { + range "0..1048575"; + } + description + "The ipv6-flow-label type represents the flow identifier or Flow + Label in an IPv6 packet header that may be used to + discriminate traffic flows. + + In the value set and its semantics, this type is equivalent + to the IPv6FlowLabel textual convention of the SMIv2."; + reference + "RFC 3595: Textual Conventions for IPv6 Flow Label + RFC 2460: Internet Protocol, Version 6 (IPv6) Specification"; + } + + typedef port-number { + type uint16 { + range "0..65535"; + } + description + "The port-number type represents a 16-bit port number of an + Internet transport-layer protocol such as UDP, TCP, DCCP, or + SCTP. Port numbers are assigned by IANA. A current list of + all assignments is available from . + + Note that the port number value zero is reserved by IANA. In + situations where the value zero does not make sense, it can + be excluded by subtyping the port-number type. + In the value set and its semantics, this type is equivalent + to the InetPortNumber textual convention of the SMIv2."; + reference + "RFC 768: User Datagram Protocol + RFC 793: Transmission Control Protocol + RFC 4960: Stream Control Transmission Protocol + RFC 4340: Datagram Congestion Control Protocol (DCCP) + RFC 4001: Textual Conventions for Internet Network Addresses"; + } + + /*** collection of types related to autonomous systems ***/ + + typedef as-number { + type uint32; + description + "The as-number type represents autonomous system numbers + which identify an Autonomous System (AS). An AS is a set + of routers under a single technical administration, using + an interior gateway protocol and common metrics to route + packets within the AS, and using an exterior gateway + protocol to route packets to other ASes. IANA maintains + the AS number space and has delegated large parts to the + regional registries. + + Autonomous system numbers were originally limited to 16 + bits. BGP extensions have enlarged the autonomous system + number space to 32 bits. This type therefore uses an uint32 + base type without a range restriction in order to support + a larger autonomous system number space. + + In the value set and its semantics, this type is equivalent + to the InetAutonomousSystemNumber textual convention of + the SMIv2."; + reference + "RFC 1930: Guidelines for creation, selection, and registration + of an Autonomous System (AS) + RFC 4271: A Border Gateway Protocol 4 (BGP-4) + RFC 4001: Textual Conventions for Internet Network Addresses + RFC 6793: BGP Support for Four-Octet Autonomous System (AS) + Number Space"; + } + + /*** collection of types related to IP addresses and hostnames ***/ + + typedef ip-address { + type union { + type inet:ipv4-address; + type inet:ipv6-address; + } + description + "The ip-address type represents an IP address and is IP + version neutral. The format of the textual representation + implies the IP version. This type supports scoped addresses + by allowing zone identifiers in the address format."; + reference + "RFC 4007: IPv6 Scoped Address Architecture"; + } + + typedef ipv4-address { + type string { + pattern + '(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}' + + '([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])' + + '(%[\p{N}\p{L}]+)?'; + } + description + "The ipv4-address type represents an IPv4 address in + dotted-quad notation. The IPv4 address may include a zone + index, separated by a % sign. + + The zone index is used to disambiguate identical address + values. For link-local addresses, the zone index will + typically be the interface index number or the name of an + interface. If the zone index is not present, the default + zone of the device will be used. + + The canonical format for the zone index is the numerical + format"; + } + + typedef ipv6-address { + type string { + pattern '((:|[0-9a-fA-F]{0,4}):)([0-9a-fA-F]{0,4}:){0,5}' + + '((([0-9a-fA-F]{0,4}:)?(:|[0-9a-fA-F]{0,4}))|' + + '(((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])\.){3}' + + '(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])))' + + '(%[\p{N}\p{L}]+)?'; + pattern '(([^:]+:){6}(([^:]+:[^:]+)|(.*\..*)))|' + + '((([^:]+:)*[^:]+)?::(([^:]+:)*[^:]+)?)' + + '(%.+)?'; + } + description + "The ipv6-address type represents an IPv6 address in full, + mixed, shortened, and shortened-mixed notation. The IPv6 + address may include a zone index, separated by a % sign. + + The zone index is used to disambiguate identical address + values. For link-local addresses, the zone index will + typically be the interface index number or the name of an + interface. If the zone index is not present, the default + zone of the device will be used. + + The canonical format of IPv6 addresses uses the textual + representation defined in Section 4 of RFC 5952. The + canonical format for the zone index is the numerical + format as described in Section 11.2 of RFC 4007."; + reference + "RFC 4291: IP Version 6 Addressing Architecture + RFC 4007: IPv6 Scoped Address Architecture + RFC 5952: A Recommendation for IPv6 Address Text + Representation"; + } + + typedef ip-address-no-zone { + type union { + type inet:ipv4-address-no-zone; + type inet:ipv6-address-no-zone; + } + description + "The ip-address-no-zone type represents an IP address and is + IP version neutral. The format of the textual representation + implies the IP version. This type does not support scoped + addresses since it does not allow zone identifiers in the + address format."; + reference + "RFC 4007: IPv6 Scoped Address Architecture"; + } + + typedef ipv4-address-no-zone { + type inet:ipv4-address { + pattern '[0-9\.]*'; + } + description + "An IPv4 address without a zone index. This type, derived from + ipv4-address, may be used in situations where the zone is + known from the context and hence no zone index is needed."; + } + + typedef ipv6-address-no-zone { + type inet:ipv6-address { + pattern '[0-9a-fA-F:\.]*'; + } + description + "An IPv6 address without a zone index. This type, derived from + ipv6-address, may be used in situations where the zone is + known from the context and hence no zone index is needed."; + reference + "RFC 4291: IP Version 6 Addressing Architecture + RFC 4007: IPv6 Scoped Address Architecture + RFC 5952: A Recommendation for IPv6 Address Text + Representation"; + } + + typedef ip-prefix { + type union { + type inet:ipv4-prefix; + type inet:ipv6-prefix; + } + description + "The ip-prefix type represents an IP prefix and is IP + version neutral. The format of the textual representations + implies the IP version."; + } + + typedef ipv4-prefix { + type string { + pattern + '(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}' + + '([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])' + + '/(([0-9])|([1-2][0-9])|(3[0-2]))'; + } + description + "The ipv4-prefix type represents an IPv4 address prefix. + The prefix length is given by the number following the + slash character and must be less than or equal to 32. + + A prefix length value of n corresponds to an IP address + mask that has n contiguous 1-bits from the most + significant bit (MSB) and all other bits set to 0. + + The canonical format of an IPv4 prefix has all bits of + the IPv4 address set to zero that are not part of the + IPv4 prefix."; + } + + typedef ipv6-prefix { + type string { + pattern '((:|[0-9a-fA-F]{0,4}):)([0-9a-fA-F]{0,4}:){0,5}' + + '((([0-9a-fA-F]{0,4}:)?(:|[0-9a-fA-F]{0,4}))|' + + '(((25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])\.){3}' + + '(25[0-5]|2[0-4][0-9]|[01]?[0-9]?[0-9])))' + + '(/(([0-9])|([0-9]{2})|(1[0-1][0-9])|(12[0-8])))'; + pattern '(([^:]+:){6}(([^:]+:[^:]+)|(.*\..*)))|' + + '((([^:]+:)*[^:]+)?::(([^:]+:)*[^:]+)?)' + + '(/.+)'; + } + + description + "The ipv6-prefix type represents an IPv6 address prefix. + The prefix length is given by the number following the + slash character and must be less than or equal to 128. + + A prefix length value of n corresponds to an IP address + mask that has n contiguous 1-bits from the most + significant bit (MSB) and all other bits set to 0. + + The IPv6 address should have all bits that do not belong + to the prefix set to zero. + + The canonical format of an IPv6 prefix has all bits of + the IPv6 address set to zero that are not part of the + IPv6 prefix. Furthermore, the IPv6 address is represented + as defined in Section 4 of RFC 5952."; + reference + "RFC 5952: A Recommendation for IPv6 Address Text + Representation"; + } + + /*** collection of domain name and URI types ***/ + + typedef domain-name { + type string { + pattern + '((([a-zA-Z0-9_]([a-zA-Z0-9\-_]){0,61})?[a-zA-Z0-9]\.)*' + + '([a-zA-Z0-9_]([a-zA-Z0-9\-_]){0,61})?[a-zA-Z0-9]\.?)' + + '|\.'; + length "1..253"; + } + description + "The domain-name type represents a DNS domain name. The + name SHOULD be fully qualified whenever possible. + + Internet domain names are only loosely specified. Section + 3.5 of RFC 1034 recommends a syntax (modified in Section + 2.1 of RFC 1123). The pattern above is intended to allow + for current practice in domain name use, and some possible + future expansion. It is designed to hold various types of + domain names, including names used for A or AAAA records + (host names) and other records, such as SRV records. Note + that Internet host names have a stricter syntax (described + in RFC 952) than the DNS recommendations in RFCs 1034 and + 1123, and that systems that want to store host names in + schema nodes using the domain-name type are recommended to + adhere to this stricter standard to ensure interoperability. + + The encoding of DNS names in the DNS protocol is limited + to 255 characters. Since the encoding consists of labels + prefixed by a length bytes and there is a trailing NULL + byte, only 253 characters can appear in the textual dotted + notation. + + The description clause of schema nodes using the domain-name + type MUST describe when and how these names are resolved to + IP addresses. Note that the resolution of a domain-name value + may require to query multiple DNS records (e.g., A for IPv4 + and AAAA for IPv6). The order of the resolution process and + which DNS record takes precedence can either be defined + explicitly or may depend on the configuration of the + resolver. + + Domain-name values use the US-ASCII encoding. Their canonical + format uses lowercase US-ASCII characters. Internationalized + domain names MUST be A-labels as per RFC 5890."; + reference + "RFC 952: DoD Internet Host Table Specification + RFC 1034: Domain Names - Concepts and Facilities + RFC 1123: Requirements for Internet Hosts -- Application + and Support + RFC 2782: A DNS RR for specifying the location of services + (DNS SRV) + RFC 5890: Internationalized Domain Names in Applications + (IDNA): Definitions and Document Framework"; + } + + typedef host { + type union { + type inet:ip-address; + type inet:domain-name; + } + description + "The host type represents either an IP address or a DNS + domain name."; + } + + typedef uri { + type string; + description + "The uri type represents a Uniform Resource Identifier + (URI) as defined by STD 66. + + Objects using the uri type MUST be in US-ASCII encoding, + and MUST be normalized as described by RFC 3986 Sections + 6.2.1, 6.2.2.1, and 6.2.2.2. All unnecessary + percent-encoding is removed, and all case-insensitive + characters are set to lowercase except for hexadecimal + digits, which are normalized to uppercase as described in + Section 6.2.2.1. + + The purpose of this normalization is to help provide + unique URIs. Note that this normalization is not + sufficient to provide uniqueness. Two URIs that are + textually distinct after this normalization may still be + equivalent. + + Objects using the uri type may restrict the schemes that + they permit. For example, 'data:' and 'urn:' schemes + might not be appropriate. + + A zero-length URI is not a valid URI. This can be used to + express 'URI absent' where required. + + In the value set and its semantics, this type is equivalent + to the Uri SMIv2 textual convention defined in RFC 5017."; + reference + "RFC 3986: Uniform Resource Identifier (URI): Generic Syntax + RFC 3305: Report from the Joint W3C/IETF URI Planning Interest + Group: Uniform Resource Identifiers (URIs), URLs, + and Uniform Resource Names (URNs): Clarifications + and Recommendations + RFC 5017: MIB Textual Conventions for Uniform Resource + Identifiers (URIs)"; + } + +} diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-yang-types@2013-07-15.yang b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-yang-types@2013-07-15.yang new file mode 100644 index 000000000..ee58fa3ab --- /dev/null +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/yang/ietf-yang-types@2013-07-15.yang @@ -0,0 +1,474 @@ +module ietf-yang-types { + + namespace "urn:ietf:params:xml:ns:yang:ietf-yang-types"; + prefix "yang"; + + organization + "IETF NETMOD (NETCONF Data Modeling Language) Working Group"; + + contact + "WG Web: + WG List: + + WG Chair: David Kessens + + + WG Chair: Juergen Schoenwaelder + + + Editor: Juergen Schoenwaelder + "; + + description + "This module contains a collection of generally useful derived + YANG data types. + + Copyright (c) 2013 IETF Trust and the persons identified as + authors of the code. All rights reserved. + + Redistribution and use in source and binary forms, with or + without modification, is permitted pursuant to, and subject + to the license terms contained in, the Simplified BSD License + set forth in Section 4.c of the IETF Trust's Legal Provisions + Relating to IETF Documents + (http://trustee.ietf.org/license-info). + + This version of this YANG module is part of RFC 6991; see + the RFC itself for full legal notices."; + + revision 2013-07-15 { + description + "This revision adds the following new data types: + - yang-identifier + - hex-string + - uuid + - dotted-quad"; + reference + "RFC 6991: Common YANG Data Types"; + } + + revision 2010-09-24 { + description + "Initial revision."; + reference + "RFC 6021: Common YANG Data Types"; + } + + /*** collection of counter and gauge types ***/ + + typedef counter32 { + type uint32; + description + "The counter32 type represents a non-negative integer + that monotonically increases until it reaches a + maximum value of 2^32-1 (4294967295 decimal), when it + wraps around and starts increasing again from zero. + + Counters have no defined 'initial' value, and thus, a + single value of a counter has (in general) no information + content. Discontinuities in the monotonically increasing + value normally occur at re-initialization of the + management system, and at other times as specified in the + description of a schema node using this type. If such + other times can occur, for example, the creation of + a schema node of type counter32 at times other than + re-initialization, then a corresponding schema node + should be defined, with an appropriate type, to indicate + the last discontinuity. + + The counter32 type should not be used for configuration + schema nodes. A default statement SHOULD NOT be used in + combination with the type counter32. + + In the value set and its semantics, this type is equivalent + to the Counter32 type of the SMIv2."; + reference + "RFC 2578: Structure of Management Information Version 2 + (SMIv2)"; + } + + typedef zero-based-counter32 { + type yang:counter32; + default "0"; + description + "The zero-based-counter32 type represents a counter32 + that has the defined 'initial' value zero. + + A schema node of this type will be set to zero (0) on creation + and will thereafter increase monotonically until it reaches + a maximum value of 2^32-1 (4294967295 decimal), when it + wraps around and starts increasing again from zero. + + Provided that an application discovers a new schema node + of this type within the minimum time to wrap, it can use the + 'initial' value as a delta. It is important for a management + station to be aware of this minimum time and the actual time + between polls, and to discard data if the actual time is too + long or there is no defined minimum time. + + In the value set and its semantics, this type is equivalent + to the ZeroBasedCounter32 textual convention of the SMIv2."; + reference + "RFC 4502: Remote Network Monitoring Management Information + Base Version 2"; + } + + typedef counter64 { + type uint64; + description + "The counter64 type represents a non-negative integer + that monotonically increases until it reaches a + maximum value of 2^64-1 (18446744073709551615 decimal), + when it wraps around and starts increasing again from zero. + + Counters have no defined 'initial' value, and thus, a + single value of a counter has (in general) no information + content. Discontinuities in the monotonically increasing + value normally occur at re-initialization of the + management system, and at other times as specified in the + description of a schema node using this type. If such + other times can occur, for example, the creation of + a schema node of type counter64 at times other than + re-initialization, then a corresponding schema node + should be defined, with an appropriate type, to indicate + the last discontinuity. + + The counter64 type should not be used for configuration + schema nodes. A default statement SHOULD NOT be used in + combination with the type counter64. + + In the value set and its semantics, this type is equivalent + to the Counter64 type of the SMIv2."; + reference + "RFC 2578: Structure of Management Information Version 2 + (SMIv2)"; + } + + typedef zero-based-counter64 { + type yang:counter64; + default "0"; + description + "The zero-based-counter64 type represents a counter64 that + has the defined 'initial' value zero. + + A schema node of this type will be set to zero (0) on creation + and will thereafter increase monotonically until it reaches + a maximum value of 2^64-1 (18446744073709551615 decimal), + when it wraps around and starts increasing again from zero. + + Provided that an application discovers a new schema node + of this type within the minimum time to wrap, it can use the + 'initial' value as a delta. It is important for a management + station to be aware of this minimum time and the actual time + between polls, and to discard data if the actual time is too + long or there is no defined minimum time. + + In the value set and its semantics, this type is equivalent + to the ZeroBasedCounter64 textual convention of the SMIv2."; + reference + "RFC 2856: Textual Conventions for Additional High Capacity + Data Types"; + } + + typedef gauge32 { + type uint32; + description + "The gauge32 type represents a non-negative integer, which + may increase or decrease, but shall never exceed a maximum + value, nor fall below a minimum value. The maximum value + cannot be greater than 2^32-1 (4294967295 decimal), and + the minimum value cannot be smaller than 0. The value of + a gauge32 has its maximum value whenever the information + being modeled is greater than or equal to its maximum + value, and has its minimum value whenever the information + being modeled is smaller than or equal to its minimum value. + If the information being modeled subsequently decreases + below (increases above) the maximum (minimum) value, the + gauge32 also decreases (increases). + + In the value set and its semantics, this type is equivalent + to the Gauge32 type of the SMIv2."; + reference + "RFC 2578: Structure of Management Information Version 2 + (SMIv2)"; + } + + typedef gauge64 { + type uint64; + description + "The gauge64 type represents a non-negative integer, which + may increase or decrease, but shall never exceed a maximum + value, nor fall below a minimum value. The maximum value + cannot be greater than 2^64-1 (18446744073709551615), and + the minimum value cannot be smaller than 0. The value of + a gauge64 has its maximum value whenever the information + being modeled is greater than or equal to its maximum + value, and has its minimum value whenever the information + being modeled is smaller than or equal to its minimum value. + If the information being modeled subsequently decreases + below (increases above) the maximum (minimum) value, the + gauge64 also decreases (increases). + + In the value set and its semantics, this type is equivalent + to the CounterBasedGauge64 SMIv2 textual convention defined + in RFC 2856"; + reference + "RFC 2856: Textual Conventions for Additional High Capacity + Data Types"; + } + + /*** collection of identifier-related types ***/ + + typedef object-identifier { + type string { + pattern '(([0-1](\.[1-3]?[0-9]))|(2\.(0|([1-9]\d*))))' + + '(\.(0|([1-9]\d*)))*'; + } + description + "The object-identifier type represents administratively + assigned names in a registration-hierarchical-name tree. + + Values of this type are denoted as a sequence of numerical + non-negative sub-identifier values. Each sub-identifier + value MUST NOT exceed 2^32-1 (4294967295). Sub-identifiers + are separated by single dots and without any intermediate + whitespace. + + The ASN.1 standard restricts the value space of the first + sub-identifier to 0, 1, or 2. Furthermore, the value space + of the second sub-identifier is restricted to the range + 0 to 39 if the first sub-identifier is 0 or 1. Finally, + the ASN.1 standard requires that an object identifier + has always at least two sub-identifiers. The pattern + captures these restrictions. + + Although the number of sub-identifiers is not limited, + module designers should realize that there may be + implementations that stick with the SMIv2 limit of 128 + sub-identifiers. + + This type is a superset of the SMIv2 OBJECT IDENTIFIER type + since it is not restricted to 128 sub-identifiers. Hence, + this type SHOULD NOT be used to represent the SMIv2 OBJECT + IDENTIFIER type; the object-identifier-128 type SHOULD be + used instead."; + reference + "ISO9834-1: Information technology -- Open Systems + Interconnection -- Procedures for the operation of OSI + Registration Authorities: General procedures and top + arcs of the ASN.1 Object Identifier tree"; + } + + typedef object-identifier-128 { + type object-identifier { + pattern '\d*(\.\d*){1,127}'; + } + description + "This type represents object-identifiers restricted to 128 + sub-identifiers. + + In the value set and its semantics, this type is equivalent + to the OBJECT IDENTIFIER type of the SMIv2."; + reference + "RFC 2578: Structure of Management Information Version 2 + (SMIv2)"; + } + + typedef yang-identifier { + type string { + length "1..max"; + pattern '[a-zA-Z_][a-zA-Z0-9\-_.]*'; + pattern '.|..|[^xX].*|.[^mM].*|..[^lL].*'; + } + description + "A YANG identifier string as defined by the 'identifier' + rule in Section 12 of RFC 6020. An identifier must + start with an alphabetic character or an underscore + followed by an arbitrary sequence of alphabetic or + numeric characters, underscores, hyphens, or dots. + + A YANG identifier MUST NOT start with any possible + combination of the lowercase or uppercase character + sequence 'xml'."; + reference + "RFC 6020: YANG - A Data Modeling Language for the Network + Configuration Protocol (NETCONF)"; + } + + /*** collection of types related to date and time***/ + + typedef date-and-time { + type string { + pattern '\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?' + + '(Z|[\+\-]\d{2}:\d{2})'; + } + description + "The date-and-time type is a profile of the ISO 8601 + standard for representation of dates and times using the + Gregorian calendar. The profile is defined by the + date-time production in Section 5.6 of RFC 3339. + + The date-and-time type is compatible with the dateTime XML + schema type with the following notable exceptions: + + (a) The date-and-time type does not allow negative years. + + (b) The date-and-time time-offset -00:00 indicates an unknown + time zone (see RFC 3339) while -00:00 and +00:00 and Z + all represent the same time zone in dateTime. + + (c) The canonical format (see below) of data-and-time values + differs from the canonical format used by the dateTime XML + schema type, which requires all times to be in UTC using + the time-offset 'Z'. + + This type is not equivalent to the DateAndTime textual + convention of the SMIv2 since RFC 3339 uses a different + separator between full-date and full-time and provides + higher resolution of time-secfrac. + + The canonical format for date-and-time values with a known time + zone uses a numeric time zone offset that is calculated using + the device's configured known offset to UTC time. A change of + the device's offset to UTC time will cause date-and-time values + to change accordingly. Such changes might happen periodically + in case a server follows automatically daylight saving time + (DST) time zone offset changes. The canonical format for + date-and-time values with an unknown time zone (usually + referring to the notion of local time) uses the time-offset + -00:00."; + reference + "RFC 3339: Date and Time on the Internet: Timestamps + RFC 2579: Textual Conventions for SMIv2 + XSD-TYPES: XML Schema Part 2: Datatypes Second Edition"; + } + + typedef timeticks { + type uint32; + description + "The timeticks type represents a non-negative integer that + represents the time, modulo 2^32 (4294967296 decimal), in + hundredths of a second between two epochs. When a schema + node is defined that uses this type, the description of + the schema node identifies both of the reference epochs. + + In the value set and its semantics, this type is equivalent + to the TimeTicks type of the SMIv2."; + reference + "RFC 2578: Structure of Management Information Version 2 + (SMIv2)"; + } + + typedef timestamp { + type yang:timeticks; + description + "The timestamp type represents the value of an associated + timeticks schema node at which a specific occurrence + happened. The specific occurrence must be defined in the + description of any schema node defined using this type. When + the specific occurrence occurred prior to the last time the + associated timeticks attribute was zero, then the timestamp + value is zero. Note that this requires all timestamp values + to be reset to zero when the value of the associated timeticks + attribute reaches 497+ days and wraps around to zero. + + The associated timeticks schema node must be specified + in the description of any schema node using this type. + + In the value set and its semantics, this type is equivalent + to the TimeStamp textual convention of the SMIv2."; + reference + "RFC 2579: Textual Conventions for SMIv2"; + } + + /*** collection of generic address types ***/ + + typedef phys-address { + type string { + pattern '([0-9a-fA-F]{2}(:[0-9a-fA-F]{2})*)?'; + } + + description + "Represents media- or physical-level addresses represented + as a sequence octets, each octet represented by two hexadecimal + numbers. Octets are separated by colons. The canonical + representation uses lowercase characters. + + In the value set and its semantics, this type is equivalent + to the PhysAddress textual convention of the SMIv2."; + reference + "RFC 2579: Textual Conventions for SMIv2"; + } + + typedef mac-address { + type string { + pattern '[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){5}'; + } + description + "The mac-address type represents an IEEE 802 MAC address. + The canonical representation uses lowercase characters. + + In the value set and its semantics, this type is equivalent + to the MacAddress textual convention of the SMIv2."; + reference + "IEEE 802: IEEE Standard for Local and Metropolitan Area + Networks: Overview and Architecture + RFC 2579: Textual Conventions for SMIv2"; + } + + /*** collection of XML-specific types ***/ + + typedef xpath1.0 { + type string; + description + "This type represents an XPATH 1.0 expression. + + When a schema node is defined that uses this type, the + description of the schema node MUST specify the XPath + context in which the XPath expression is evaluated."; + reference + "XPATH: XML Path Language (XPath) Version 1.0"; + } + + /*** collection of string types ***/ + + typedef hex-string { + type string { + pattern '([0-9a-fA-F]{2}(:[0-9a-fA-F]{2})*)?'; + } + description + "A hexadecimal string with octets represented as hex digits + separated by colons. The canonical representation uses + lowercase characters."; + } + + typedef uuid { + type string { + pattern '[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-' + + '[0-9a-fA-F]{4}-[0-9a-fA-F]{12}'; + } + description + "A Universally Unique IDentifier in the string representation + defined in RFC 4122. The canonical representation uses + lowercase characters. + + The following is an example of a UUID in string representation: + f81d4fae-7dec-11d0-a765-00a0c91e6bf6 + "; + reference + "RFC 4122: A Universally Unique IDentifier (UUID) URN + Namespace"; + } + + typedef dotted-quad { + type string { + pattern + '(([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])\.){3}' + + '([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])'; + } + description + "An unsigned 32-bit number expressed in the dotted-quad + notation, i.e., four octets written as decimal numbers + and separated with the '.' (full stop) character."; + } +} diff --git a/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py b/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py index ce60bdea3..b5fd18971 100644 --- a/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py +++ b/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py @@ -23,6 +23,9 @@ from .Tools import ( format_grpc_to_json, grpc_connection_id, grpc_context_id, grpc_device_id, grpc_link_id, grpc_policy_rule_id, grpc_service_id, grpc_service, grpc_slice_id, grpc_topology_id) +from nbi.service.rest_server.nbi_plugins.ietf_hardware import YangHandler + + class _Resource(Resource): def __init__(self) -> None: super().__init__() @@ -173,7 +176,16 @@ class Devices(_Resource): class Device(_Resource): def get(self, device_uuid : str): return format_grpc_to_json(self.client.GetDevice(grpc_device_id(device_uuid))) +class Deviceshw(_Resource): + def get(self, device_uuid : str): + device =format_grpc_to_json(self.client.GetDevice(grpc_device_id(device_uuid))) + yang_handler = YangHandler('ietf-hardware') + + hardware_reply = yang_handler.compose(device) + device = jsonify(hardware_reply) + return device + class LinkIds(_Resource): def get(self): return format_grpc_to_json(self.client.ListLinkIds(Empty())) diff --git a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py index 41e8ff1ea..67391debf 100644 --- a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py +++ b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py @@ -16,7 +16,7 @@ from nbi.service.rest_server.RestServer import RestServer from .Resources import ( Connection, ConnectionIds, Connections, Context, ContextIds, Contexts, - Device, DeviceIds, Devices, + Device, DeviceIds, Deviceshw, DummyContexts, Link, LinkIds, Links, PolicyRule, PolicyRuleIds, PolicyRules, @@ -46,11 +46,13 @@ RESOURCES = [ ('api.slice_ids', SliceIds, '/context//slice_ids'), ('api.slices', Slices, '/context//slices'), ('api.slice', Slice, '/context//slice/'), - +''' ('api.device_ids', DeviceIds, '/device_ids'), ('api.devices', Devices, '/devices'), ('api.device', Device, '/device/'), - + ''' + ('api.deviceshw', Deviceshw, '/device//hardware'), + ('api.link_ids', LinkIds, '/link_ids'), ('api.links', Links, '/links'), ('api.link', Link, '/link/'), diff --git a/src/tests/ecoc22/tests/Objects.py b/src/tests/ecoc22/tests/Objects.py index 3a96e6625..9daac3265 100644 --- a/src/tests/ecoc22/tests/Objects.py +++ b/src/tests/ecoc22/tests/Objects.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from common.tools.object_factory.Device import json_device_id +from common.tools.object_factory.t json_device_id from common.tools.object_factory.EndPoint import json_endpoint_id from tests.tools.mock_osm.Tools import connection_point, wim_mapping diff --git a/src/tests/ofc23/descriptors/real/dc-2-dc-service.json b/src/tests/ofc23/descriptors/real/dc-2-dc-service.json index 3a83afa6d..beabd44e5 100644 --- a/src/tests/ofc23/descriptors/real/dc-2-dc-service.json +++ b/src/tests/ofc23/descriptors/real/dc-2-dc-service.json @@ -20,7 +20,7 @@ "mtu": 1512, "vlan_id": 111 }}}, {"action": 1, "custom": {"resource_key": "/device[R149]/endpoint[eth-1/0/22]/settings", "resource_value": { - "route_distinguisher": "65000:123", "router_id": "5.5.5.5", + "route_distinguisher": "65000:123", "router_id": "", "address_ip": "172.16.4.1", "address_prefix": 24, "sub_interface_index": 0, "vlan_id": 111 }}}, {"action": 1, "custom": {"resource_key": "/device[R155]/endpoint[eth-1/0/22]/settings", "resource_value": { diff --git a/test.py b/test.py new file mode 100644 index 000000000..49dff75f9 --- /dev/null +++ b/test.py @@ -0,0 +1,291 @@ + +import concurrent.futures, json, logging, operator +import sys +from typing import Any, Dict, List, Optional, Tuple, Union + +TypeResults = List[Tuple[str, str, int, List[str]]] # entity_name, action, num_ok, list[error] + +class DescriptorLoader: + def __init__( + self, descriptors : Optional[Union[str, Dict]] = None, descriptors_file : Optional[str] = None, + num_workers : int = 1, + ) -> None: + print('holaa') + descriptors = { + "ietf-network-slice-service:network-slice-services": { + "slo-sle-templates": { + "slo-sle-template": [ + { + "id": "high-BW-template", + "description": "take the highest BW forwarding path" + }, + { + "id": "low-latency-template", + "description": "lowest possible latency forwarding behavior" + } + ] + }, + "slice-service": [ + { + "id": "slice_d1_d2", + "description": "example slice p2p between two devices", + "slo-sle-template": "low-latency-template", + "status": {}, + "sdps": { + "sdp": [ + { + "id": "1", + "node-id": "4.4.4.4", + "service-match-criteria": { + "match-criterion": [ + { + "index": 1, + "match-type": "ietf-nss:service-any-match", + "target-connection-group-id": "matrix1" + } + ] + }, + "attachment-circuits": { + "attachment-circuit": [ + { + "id": "ac1", + "description": "AC1 connected to device 1", + "ac-node-id": "4.4.4.4", + "ac-tp-id": "to_HL3-1-2", + "ac-tags": { + "ac-tags": [ + { + "tag-type": "ietf-nss:vlan-id", + "value": [ + "100" + ] + } + ] + }, + "status": {} + } + ] + }, + "status": {} + }, + { + "id": "2", + "node-id": "5.5.5.5", + "service-match-criteria": { + "match-criterion": [ + { + "index": 1, + "match-type": "ietf-nss:service-any-match", + "target-connection-group-id": "matrix1" + } + ] + }, + "attachment-circuits": { + "attachment-circuit": [ + { + "id": "ac2", + "description": "AC2 connected to device 2", + "ac-node-id": "5.5.5.5", + "ac-tp-id": "eth-1/0/22.111", + "ac-tags": { + "ac-tags": [ + { + "tag-type": "ietf-nss:vlan-id", + "value": [ + "111" + ] + } + ] + }, + "status": {} + } + ] + }, + "status": {} + } + ] + }, + "connection-groups": { + "connection-group": [ + { + "id": "matrix1", + "connectivity-type": "ietf-nss:point-to-point", + "service-slo-sle-policy": { + "slo-policy": { + "metric-bound": [ + { + "metric-type": "ietf-nss:one-way-delay-maximum", + "metric-unit": "milliseconds", + "bound": "10" + } + ] + } + }, + "connectivity-construct": [ + { + "id": 1, + "p2p-sender-sdp": "1", + "p2p-receiver-sdp": "2", + "status": {} + }, + { + "id": 2, + "p2p-sender-sdp": "2", + "p2p-receiver-sdp": "1", + "status": {} + } + ] + } + ] + } + } + ] + } + } + + self.__descriptors = json.loads(descriptors) if isinstance(descriptors, str) else descriptors + + self.__slices = self.__descriptors.get('slices' , []) + #data = self.__descriptors.get('data' , {}) #Coge de la file el campo slices + #ns_slice_service = data.get('ietf-network-slice-service:network-slice-services', {}) + #self.__slices= ns_slice_service.get('slice-service', []) #nuevas slices + self.__slices = self.__descriptors.get('ietf-network-slice-service:network-slice-services', {}) + #hasta aqui bien + + print(type(self.__slices)) + print(type(self.__slices["slice-service"])) + + + json_out = {"slices": [ + { + "slice_id": { + "context_id": {"context_uuid": {"uuid": "admin"}}, + "slice_uuid": {} + }, + "name": {}, + "slice_config": {"config_rules": [ + {"action": 1, "custom": {"resource_key": "/settings", "resource_value": { + "address_families": ["IPV4"], "bgp_as": 65000, "bgp_route_target": "65000:333", "mtu": 1512 + }}} + + ]}, + "slice_constraints": [ + {"sla_capacity": {"capacity_gbps": 20.0}}, + {"sla_availability": {"availability": 20.0, "num_disjoint_paths": 1, "all_active": True}}, + {"sla_isolation": {"isolation_level": [0]}} + ], + "slice_endpoint_ids": [ + + ], + "slice_status": {"slice_status": 1} + } + ]} + + for slice_service in self.__slices["slice-service"]: + for slice in json_out["slices"]: + slice["slice_id"]["slice_uuid"] = { "uuid": slice_service["id"]} + slice["name"] = slice_service["description"] + sdp = slice_service["sdps"]["sdp"] + print(sdp) + for elemento in sdp: + slice["slice_config"]["config_rules"].append( {"action": 1, "custom": {"resource_key": "/device[R1]/endpoint[1/2]/settings", "resource_value": { + "router_id": elemento.get("node-id",[]), "sub_interface_index": 0, "vlan_id": 111 + }}}) + slice["slice_endpoint_ids"].append({ + "device_id": {"device_uuid": {"uuid": elemento["id"]}}, + "endpoint_uuid": {"uuid": "1/2"}, + "topology_id": {"context_id": {"context_uuid": {"uuid": "admin"}}, + "topology_uuid": {"uuid": "admin"}} + }) + attcircuits = elemento["attachment-circuits"]["attachment-circuit"] + for attcircuit in attcircuits: + slice["slice_constraints"].append({"endpoint_location": { + "endpoint_id": {"device_id": {"device_uuid": {"uuid": attcircuit["id"]}}, "endpoint_uuid": {"uuid": attcircuit["ac-tp-id"]}}, + "location": {"region": "4"} + }}) + + # Convertir a JSON de salida + #json_output = json.dumps(json_out, indent=2) + self.__slices = json_out.get('slices' , []) + print(self.__slices) + self.__results : TypeResults = list() + + + @property + def slices(self) -> Dict[str, List[Dict]]: + _slices = {} + for slice_ in self.__slices: + context_uuid = "admin" + _slices.setdefault(context_uuid, []).append(slice_) #no tenemos context_uuid en este formato, lo meto a mano? + self.__slices = [format_slice_custom_config_rules (slice_ ) for slice_ in self.__slices ] + return _slices + + @property + def num_slices(self) -> Dict[str, int]: + _num_slices = {} + for slice_ in self.__slices: + context_uuid = slice_['slice_id']['context_id']['context_uuid']['uuid'] + _num_slices[context_uuid] = _num_slices.get(context_uuid, 0) + 1 + return _num_slices + + # Format CustomConfigRules in Devices, Services and Slices provided in JSON format + + def process(self) -> TypeResults: + # Format CustomConfigRules in Devices, Services and Slices provided in JSON format + self.__slices = [format_slice_custom_config_rules (slice_ ) for slice_ in self.__slices ] + + # Context and Topology require to create the entity first, and add devices, links, services, + # slices, etc. in a second stage. + + print(self.__results) + return self.__results + + #UTILIZA LA FUNCION FORMAT_CUSTOM_CONFIG_RULES +#cambio + +TypeResourceValue = Union[str, int, bool, float, dict, list] +''' +def format_custom_config_rules(config_rules : List[Dict]) -> List[Dict]: + for config_rule in config_rules: + # if 'custom' not in config_rule: continue #suponemos que siempre son custom, quitamos esta linea + custom_resource_value : TypeResourceValue = config_rule['attachment-circuits']['attachment-circuit'] + if isinstance(custom_resource_value, (dict, list)): + custom_resource_value = json.dumps(custom_resource_value, sort_keys=True, indent=0) + config_rule['attachment-circuits']['attachment-circuit'] = custom_resource_value + elif not isinstance(custom_resource_value, str): + config_rule['attachment-circuits']['attachment-circuit'] = str(custom_resource_value) + return config_rules + +def format_slice_custom_config_rules(slice_ : Dict) -> Dict: + #donde cojo los config_rules + #las config_rules parecen estar en ACs? + sdps = slice_.get('sdps', {}) + config_rules = sdps.get('sdp', {}) + print("Tipo de sdp:", type(config_rules)) + print("sdps:", config_rules) + #Despues de mucho revisar, el campo sdp es List[Dict] asique voy a pasar directamente sdp a la funcion format_custom_config_rules(config_rules) + + config_rules = format_custom_config_rules(config_rules) + slice_['sdps']['sdp'] = config_rules + return slice_ +''' +def format_custom_config_rules(config_rules : List[Dict]) -> List[Dict]: + for config_rule in config_rules: + if 'custom' not in config_rule: continue + custom_resource_value : TypeResourceValue = config_rule['custom']['resource_value'] + if isinstance(custom_resource_value, (dict, list)): + custom_resource_value = json.dumps(custom_resource_value, sort_keys=True, indent=0) + config_rule['custom']['resource_value'] = custom_resource_value + return config_rules + +def format_slice_custom_config_rules(slice_ : Dict) -> Dict: + config_rules = slice_.get('slice_config', {}).get('config_rules', []) + config_rules = format_custom_config_rules(config_rules) + slice_['slice_config']['config_rules'] = config_rules + return slice_ + +# Crear una instancia de la clase +mi_cargador = DescriptorLoader() +results = mi_cargador.process() + + -- GitLab From 5bfe1990d0cdfd76a6302c984b54ba14c45a0ff9 Mon Sep 17 00:00:00 2001 From: armingol Date: Wed, 5 Jun 2024 17:36:40 +0200 Subject: [PATCH 2/6] HW inventroy NBI 1) Yang handler file 2) Hardware inventory file 3) Minor changes --- src/nbi/service/__main__.py | 3 +- .../nbi_plugins/ietf_hardware/Hardware.py | 2 +- .../nbi_plugins/ietf_hardware/YangHandler.py | 56 +++++++++++++++---- .../nbi_plugins/ietf_hardware/__init__.py | 2 +- .../nbi_plugins/tfs_api/__init__.py | 6 +- 5 files changed, 53 insertions(+), 16 deletions(-) diff --git a/src/nbi/service/__main__.py b/src/nbi/service/__main__.py index 7f3cec19d..d5bfdbb53 100644 --- a/src/nbi/service/__main__.py +++ b/src/nbi/service/__main__.py @@ -18,7 +18,7 @@ from common.Constants import ServiceNameEnum from common.Settings import ( ENVVAR_SUFIX_SERVICE_HOST, ENVVAR_SUFIX_SERVICE_PORT_GRPC, get_env_var_name, get_log_level, get_metrics_port, wait_for_environment_variables) -from src.nbi.service.rest_server.nbi_plugins.ietf_hardware import register_ietf_hardware + from .NbiService import NbiService from .rest_server.RestServer import RestServer from .rest_server.nbi_plugins.etsi_bwm import register_etsi_bwm_api @@ -27,6 +27,7 @@ from .rest_server.nbi_plugins.ietf_l3vpn import register_ietf_l3vpn from .rest_server.nbi_plugins.ietf_network import register_ietf_network from .rest_server.nbi_plugins.ietf_network_slice import register_ietf_nss from .rest_server.nbi_plugins.tfs_api import register_tfs_api +from .rest_server.nbi_plugins.ietf_hardware import register_ietf_hardware terminate = threading.Event() LOGGER = None diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py index ca8f4064f..f12efe49b 100644 --- a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py @@ -26,7 +26,7 @@ class Hardware(Resource): if device is None: raise Exception('Device({:s}) not found in database'.format(str(device_uuid))) - yang_handler = YangHandler('ietf-hardware') + yang_handler = YangHandler() hardware_reply = yang_handler.compose(device) yang_handler.destroy() diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py index 31a7e8ffb..88c9887c0 100644 --- a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py @@ -2,17 +2,27 @@ import libyang, os from common.proto.context_pb2 import Device from typing import Dict, Optional +import logging +import re +import datetime + +LOGGER = logging.getLogger(__name__) YANG_DIR = os.path.join(os.path.dirname(__file__), 'yang') -MODULE_NAME = 'ietf-hardware' +YANG_MODULES = [ + 'iana-hardware', + 'ietf-hardware' +] class YangHandler: def __init__(self) -> None: self._yang_context = libyang.Context(YANG_DIR) - self._yang_module = self._yang_context.load_module(MODULE_NAME) - self._yang_module.feature_enable_all() + for yang_module_name in YANG_MODULES: + LOGGER.info('Loading module: {:s}'.format(str(yang_module_name))) + self._yang_context.load_module(yang_module_name).feature_enable_all() def parse_to_dict(self, message : Dict) -> Dict: - dnode : Optional[libyang.DNode] = self._yang_module.parse_data_dict( + yang_module = self._yang_context.get_module('ietf-hardware') + dnode : Optional[libyang.DNode] = yang_module.parse_data_dict( message, validate_present=True, validate=True, strict=True ) if dnode is None: raise Exception('Unable to parse Message({:s})'.format(str(message))) @@ -20,11 +30,31 @@ class YangHandler: dnode.free() return message + + @staticmethod + def convert_to_iso_date(date_str: str) -> Optional[str]: + date_str = date_str.strip('"') + # Define the regex pattern for ISO 8601 date format + pattern = r"\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[\+\-]\d{2}:\d{2})" + # Check if the input date string matches the pattern + if re.match(pattern, date_str): + return date_str # Already in ISO format + else: + try: + # Parse the input date string as a datetime object + datetime_obj = datetime.datetime.strptime(date_str, "%Y-%m-%d") + # Convert to ISO format + iso_date = datetime_obj.isoformat() + "Z" + return iso_date + except ValueError: + return None # Invalid date format + + def compose(self, device : Device) -> Dict: # compose device iterating through the components hardware = self._yang_context.create_data_path('/ietf-hardware:hardware') - physical_index = 0 + physical_index = 1 for component in device.components: attributes = component.attributes @@ -39,30 +69,36 @@ class YangHandler: if component_type == "FRU" : component_type = "slack" - component_new.create_path('isfru', True) + component_new.create_path('is-fru', True) else : - component_new.create_path('isfru', False) + component_new.create_path('is-fru', False) component_type = component_type.replace("_", "-").lower() + component_type = 'iana-hardware:' + component_type component_new.create_path('class', component_type) #Añadir resto de atributos en IETF - physical_index += physical_index + physical_index += 1 component_new.create_path('physical-index', physical_index) component_new.create_path('description', attributes["description"]) component_new.create_path('parent', component.parent) + if attributes["mfg-date"] != "": + mfg_date = self.convert_to_iso_date(attributes["mfg-date"]) + LOGGER.info('component[name="{:s}"]'.format(attributes["mfg-date"])) + component_new.create_path('mfg-date', mfg_date) + component_new.create_path('hardware-rev', attributes["hardware-rev"]) component_new.create_path('software-rev', attributes["software-rev"]) component_new.create_path('firmware-rev', attributes["firmware-version"]) component_new.create_path('serial-num', attributes["serial-num"]) component_new.create_path('mfg-name', attributes["mfg-name"]) - component_new.create_path('mfg-date', attributes["mfg-date"]) - component_new.create_path('parent-rel-pos', attributes["id"]) + if attributes["id"]: + component_new.create_path('parent-rel-pos', attributes["id"]) component_new.create_path('uri', component.name) diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py index b69cdc837..7f4e219ff 100644 --- a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py @@ -1,7 +1,7 @@ from nbi.service.rest_server.nbi_plugins.ietf_hardware.Hardware import Hardware from nbi.service.rest_server.RestServer import RestServer -URL_PREFIX = "/restconf/data/device=/ietf-hardware:hardware" +URL_PREFIX = "/restconf/data/device=/ietf-hardware:hardware" def register_ietf_hardware(rest_server: RestServer): rest_server.add_resource(Hardware, URL_PREFIX) \ No newline at end of file diff --git a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py index 67391debf..cbb38e6f2 100644 --- a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py +++ b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py @@ -16,7 +16,7 @@ from nbi.service.rest_server.RestServer import RestServer from .Resources import ( Connection, ConnectionIds, Connections, Context, ContextIds, Contexts, - Device, DeviceIds, Deviceshw, + Device, DeviceIds, Devices, Deviceshw, DummyContexts, Link, LinkIds, Links, PolicyRule, PolicyRuleIds, PolicyRules, @@ -46,11 +46,11 @@ RESOURCES = [ ('api.slice_ids', SliceIds, '/context//slice_ids'), ('api.slices', Slices, '/context//slices'), ('api.slice', Slice, '/context//slice/'), -''' + ('api.device_ids', DeviceIds, '/device_ids'), ('api.devices', Devices, '/devices'), ('api.device', Device, '/device/'), - ''' + ('api.deviceshw', Deviceshw, '/device//hardware'), ('api.link_ids', LinkIds, '/link_ids'), -- GitLab From 857fa4ab233b6660d9caab0ec1e79c216b3ef6ca Mon Sep 17 00:00:00 2001 From: armingol Date: Tue, 11 Jun 2024 16:47:18 +0200 Subject: [PATCH 3/6] code clean up --- quick_deploy.sh | 438 ------------------ src/tests/ecoc22/tests/Objects.py | 2 +- .../descriptors/real/dc-2-dc-service.json | 2 +- 3 files changed, 2 insertions(+), 440 deletions(-) delete mode 100755 quick_deploy.sh diff --git a/quick_deploy.sh b/quick_deploy.sh deleted file mode 100755 index 79846559b..000000000 --- a/quick_deploy.sh +++ /dev/null @@ -1,438 +0,0 @@ -#!/bin/bash -# Copyright 2022-2023 ETSI TeraFlowSDN - TFS OSG (https://tfs.etsi.org/) -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - - -######################################################################################################################## -# Read deployment settings -######################################################################################################################## - - -# ----- TeraFlowSDN ------------------------------------------------------------ - -# If not already set, set the URL of the Docker registry where the images will be uploaded to. -# By default, assume internal MicroK8s registry is used. -export TFS_REGISTRY_IMAGES=${TFS_REGISTRY_IMAGES:-"http://localhost:32000/tfs/"} - -# If not already set, set the list of components, separated by spaces, you want to build images for, and deploy. -# By default, only basic components are deployed -export TFS_COMPONENTS=${TFS_COMPONENTS:-"context device pathcomp service slice nbi webui load_generator"} - -# If not already set, set the tag you want to use for your images. -export TFS_IMAGE_TAG=${TFS_IMAGE_TAG:-"dev"} - -# If not already set, set the name of the Kubernetes namespace to deploy TFS to. -export TFS_K8S_NAMESPACE=${TFS_K8S_NAMESPACE:-"tfs"} - -# If not already set, set additional manifest files to be applied after the deployment -export TFS_EXTRA_MANIFESTS=${TFS_EXTRA_MANIFESTS:-""} - -# If not already set, set the new Grafana admin password -export TFS_GRAFANA_PASSWORD=${TFS_GRAFANA_PASSWORD:-"admin123+"} - -# If not already set, disable skip-build flag to rebuild the Docker images. -# If TFS_SKIP_BUILD is "YES", the containers are not rebuilt-retagged-repushed and existing ones are used. -export TFS_SKIP_BUILD=${TFS_SKIP_BUILD:-"YES"} - -# If TFS_SKIP_BUILD is "YES", select the containers to be build -# Any other container will use previous docker images -export TFS_QUICK_COMPONENTS="slice" - -# ----- CockroachDB ------------------------------------------------------------ - -# If not already set, set the namespace where CockroackDB will be deployed. -export CRDB_NAMESPACE=${CRDB_NAMESPACE:-"crdb"} - -# If not already set, set the database username to be used by Context. -export CRDB_USERNAME=${CRDB_USERNAME:-"tfs"} - -# If not already set, set the database user's password to be used by Context. -export CRDB_PASSWORD=${CRDB_PASSWORD:-"tfs123"} - -# If not already set, set the database name to be used by Context. -export CRDB_DATABASE=${CRDB_DATABASE:-"tfs"} - - -# ----- NATS ------------------------------------------------------------------- - -# If not already set, set the namespace where NATS will be deployed. -export NATS_NAMESPACE=${NATS_NAMESPACE:-"nats"} - - -# ----- QuestDB ---------------------------------------------------------------- - -# If not already set, set the namespace where QuestDB will be deployed. -export QDB_NAMESPACE=${QDB_NAMESPACE:-"qdb"} - -# If not already set, set the database username to be used for QuestDB. -export QDB_USERNAME=${QDB_USERNAME:-"admin"} - -# If not already set, set the database user's password to be used for QuestDB. -export QDB_PASSWORD=${QDB_PASSWORD:-"quest"} - -# If not already set, set the table name to be used by Monitoring for KPIs. -export QDB_TABLE_MONITORING_KPIS=${QDB_TABLE_MONITORING_KPIS:-"tfs_monitoring_kpis"} - -# If not already set, set the table name to be used by Slice for plotting groups. -export QDB_TABLE_SLICE_GROUPS=${QDB_TABLE_SLICE_GROUPS:-"tfs_slice_groups"} - - -######################################################################################################################## -# Automated steps start here -######################################################################################################################## - -# Constants -GITLAB_REPO_URL="labs.etsi.org:5050/tfs/controller" -TMP_FOLDER="./tmp" - -# Create a tmp folder for files modified during the deployment -TMP_MANIFESTS_FOLDER="$TMP_FOLDER/manifests" -mkdir -p $TMP_MANIFESTS_FOLDER -TMP_LOGS_FOLDER="$TMP_FOLDER/logs" -mkdir -p $TMP_LOGS_FOLDER - -echo "Deleting and Creating a new namespace..." -kubectl delete namespace $TFS_K8S_NAMESPACE --ignore-not-found -kubectl create namespace $TFS_K8S_NAMESPACE -printf "\n" - -echo "Create secret with CockroachDB data" -CRDB_SQL_PORT=$(kubectl --namespace ${CRDB_NAMESPACE} get service cockroachdb-public -o 'jsonpath={.spec.ports[?(@.name=="sql")].port}') -kubectl create secret generic crdb-data --namespace ${TFS_K8S_NAMESPACE} --type='Opaque' \ - --from-literal=CRDB_NAMESPACE=${CRDB_NAMESPACE} \ - --from-literal=CRDB_SQL_PORT=${CRDB_SQL_PORT} \ - --from-literal=CRDB_DATABASE=${CRDB_DATABASE} \ - --from-literal=CRDB_USERNAME=${CRDB_USERNAME} \ - --from-literal=CRDB_PASSWORD=${CRDB_PASSWORD} \ - --from-literal=CRDB_SSLMODE=require -printf "\n" - -echo "Create secret with NATS data" -NATS_CLIENT_PORT=$(kubectl --namespace ${NATS_NAMESPACE} get service nats -o 'jsonpath={.spec.ports[?(@.name=="client")].port}') -kubectl create secret generic nats-data --namespace ${TFS_K8S_NAMESPACE} --type='Opaque' \ - --from-literal=NATS_NAMESPACE=${NATS_NAMESPACE} \ - --from-literal=NATS_CLIENT_PORT=${NATS_CLIENT_PORT} -printf "\n" - -echo "Create secret with QuestDB data" -QDB_HTTP_PORT=$(kubectl --namespace ${QDB_NAMESPACE} get service questdb-public -o 'jsonpath={.spec.ports[?(@.name=="http")].port}') -QDB_ILP_PORT=$(kubectl --namespace ${QDB_NAMESPACE} get service questdb-public -o 'jsonpath={.spec.ports[?(@.name=="ilp")].port}') -QDB_SQL_PORT=$(kubectl --namespace ${QDB_NAMESPACE} get service questdb-public -o 'jsonpath={.spec.ports[?(@.name=="sql")].port}') -METRICSDB_HOSTNAME="questdb-public.${QDB_NAMESPACE}.svc.cluster.local" -kubectl create secret generic qdb-data --namespace ${TFS_K8S_NAMESPACE} --type='Opaque' \ - --from-literal=QDB_NAMESPACE=${QDB_NAMESPACE} \ - --from-literal=METRICSDB_HOSTNAME=${METRICSDB_HOSTNAME} \ - --from-literal=METRICSDB_REST_PORT=${QDB_HTTP_PORT} \ - --from-literal=METRICSDB_ILP_PORT=${QDB_ILP_PORT} \ - --from-literal=METRICSDB_SQL_PORT=${QDB_SQL_PORT} \ - --from-literal=METRICSDB_TABLE_MONITORING_KPIS=${QDB_TABLE_MONITORING_KPIS} \ - --from-literal=METRICSDB_TABLE_SLICE_GROUPS=${QDB_TABLE_SLICE_GROUPS} \ - --from-literal=METRICSDB_USERNAME=${QDB_USERNAME} \ - --from-literal=METRICSDB_PASSWORD=${QDB_PASSWORD} -printf "\n" - -echo "Deploying components and collecting environment variables..." -ENV_VARS_SCRIPT=tfs_runtime_env_vars.sh -echo "# Environment variables for TeraFlowSDN deployment" > $ENV_VARS_SCRIPT -PYTHONPATH=$(pwd)/src -echo "export PYTHONPATH=${PYTHONPATH}" >> $ENV_VARS_SCRIPT - -for COMPONENT in $TFS_COMPONENTS; do - echo "Processing '$COMPONENT' component..." - - if [ "$TFS_SKIP_BUILD" != "YES" ]; then - echo " Building Docker image..." - BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}.log" - - if [ "$COMPONENT" == "automation" ] || [ "$COMPONENT" == "policy" ]; then - docker build -t "$COMPONENT:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/Dockerfile ./src/"$COMPONENT"/ > "$BUILD_LOG" - elif [ "$COMPONENT" == "pathcomp" ]; then - BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-frontend.log" - docker build -t "$COMPONENT-frontend:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/frontend/Dockerfile . > "$BUILD_LOG" - - BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-backend.log" - docker build -t "$COMPONENT-backend:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/backend/Dockerfile . > "$BUILD_LOG" - # next command is redundant, but helpful to keep cache updated between rebuilds - IMAGE_NAME="$COMPONENT-backend:$TFS_IMAGE_TAG-builder" - docker build -t "$IMAGE_NAME" --target builder -f ./src/"$COMPONENT"/backend/Dockerfile . >> "$BUILD_LOG" - elif [ "$COMPONENT" == "dlt" ]; then - BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-connector.log" - docker build -t "$COMPONENT-connector:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/connector/Dockerfile . > "$BUILD_LOG" - - BUILD_LOG="$TMP_LOGS_FOLDER/build_${COMPONENT}-gateway.log" - docker build -t "$COMPONENT-gateway:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/gateway/Dockerfile . > "$BUILD_LOG" - else - docker build -t "$COMPONENT:$TFS_IMAGE_TAG" -f ./src/"$COMPONENT"/Dockerfile . > "$BUILD_LOG" - fi - - echo " Pushing Docker image to '$TFS_REGISTRY_IMAGES'..." - - if [ "$COMPONENT" == "pathcomp" ]; then - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-frontend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - - TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-frontend.log" - docker tag "$COMPONENT-frontend:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" - - PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-frontend.log" - docker push "$IMAGE_URL" > "$PUSH_LOG" - - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-backend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - - TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-backend.log" - docker tag "$COMPONENT-backend:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" - - PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-backend.log" - docker push "$IMAGE_URL" > "$PUSH_LOG" - elif [ "$COMPONENT" == "dlt" ]; then - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-connector:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - - TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-connector.log" - docker tag "$COMPONENT-connector:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" - - PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-connector.log" - docker push "$IMAGE_URL" > "$PUSH_LOG" - - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-gateway:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - - TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}-gateway.log" - docker tag "$COMPONENT-gateway:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" - - PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}-gateway.log" - docker push "$IMAGE_URL" > "$PUSH_LOG" - else - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - - TAG_LOG="$TMP_LOGS_FOLDER/tag_${COMPONENT}.log" - docker tag "$COMPONENT:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" - - PUSH_LOG="$TMP_LOGS_FOLDER/push_${COMPONENT}.log" - docker push "$IMAGE_URL" > "$PUSH_LOG" - fi - else - for QUICK_COMPONENT in $TFS_QUICK_COMPONENTS; do - if [ "$COMPONENT" == "$QUICK_COMPONENT" ]; then - - echo " Building Docker image..." - BUILD_LOG="$TMP_LOGS_FOLDER/build_${QUICK_COMPONENT}.log" - - docker build -t "$QUICK_COMPONENT:$TFS_IMAGE_TAG" -f ./src/"$QUICK_COMPONENT"/Dockerfile . > "$BUILD_LOG" - echo " Pushing Docker image to '$TFS_REGISTRY_IMAGES'..." - - - - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$QUICK_COMPONENT:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - - TAG_LOG="$TMP_LOGS_FOLDER/tag_${QUICK_COMPONENT}.log" - docker tag "$QUICK_COMPONENT:$TFS_IMAGE_TAG" "$IMAGE_URL" > "$TAG_LOG" - - PUSH_LOG="$TMP_LOGS_FOLDER/push_${QUICK_COMPONENT}.log" - docker push "$IMAGE_URL" > "$PUSH_LOG" - fi - done - fi - - echo " Adapting '$COMPONENT' manifest file..." - MANIFEST="$TMP_MANIFESTS_FOLDER/${COMPONENT}service.yaml" - cp ./manifests/"${COMPONENT}"service.yaml "$MANIFEST" - - if [ "$COMPONENT" == "pathcomp" ]; then - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-frontend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-frontend:" "$MANIFEST" | cut -d ":" -f4) - sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-frontend:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" - - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-backend:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-backend:" "$MANIFEST" | cut -d ":" -f4) - sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-backend:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" - elif [ "$COMPONENT" == "dlt" ]; then - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-connector:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-connector:" "$MANIFEST" | cut -d ":" -f4) - sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-connector:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" - - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT-gateway:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}-gateway:" "$MANIFEST" | cut -d ":" -f4) - sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT-gateway:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" - else - IMAGE_URL=$(echo "$TFS_REGISTRY_IMAGES/$COMPONENT:$TFS_IMAGE_TAG" | sed 's,//,/,g' | sed 's,http:/,,g') - VERSION=$(grep -i "${GITLAB_REPO_URL}/${COMPONENT}:" "$MANIFEST" | cut -d ":" -f4) - sed -E -i "s#image: $GITLAB_REPO_URL/$COMPONENT:${VERSION}#image: $IMAGE_URL#g" "$MANIFEST" - fi - - sed -E -i "s#imagePullPolicy: .*#imagePullPolicy: Always#g" "$MANIFEST" - - # TODO: harmonize names of the monitoring component - - echo " Deploying '$COMPONENT' component to Kubernetes..." - DEPLOY_LOG="$TMP_LOGS_FOLDER/deploy_${COMPONENT}.log" - kubectl --namespace $TFS_K8S_NAMESPACE apply -f "$MANIFEST" > "$DEPLOY_LOG" - COMPONENT_OBJNAME=$(echo "${COMPONENT}" | sed "s/\_/-/") - #kubectl --namespace $TFS_K8S_NAMESPACE scale deployment --replicas=0 ${COMPONENT_OBJNAME}service >> "$DEPLOY_LOG" - #kubectl --namespace $TFS_K8S_NAMESPACE scale deployment --replicas=1 ${COMPONENT_OBJNAME}service >> "$DEPLOY_LOG" - - echo " Collecting env-vars for '$COMPONENT' component..." - - SERVICE_DATA=$(kubectl get service ${COMPONENT_OBJNAME}service --namespace $TFS_K8S_NAMESPACE -o json) - if [ -z "${SERVICE_DATA}" ]; then continue; fi - - # Env vars for service's host address - SERVICE_HOST=$(echo ${SERVICE_DATA} | jq -r '.spec.clusterIP') - if [ -z "${SERVICE_HOST}" ]; then continue; fi - ENVVAR_HOST=$(echo "${COMPONENT}service_SERVICE_HOST" | tr '[:lower:]' '[:upper:]') - echo "export ${ENVVAR_HOST}=${SERVICE_HOST}" >> $ENV_VARS_SCRIPT - - # Env vars for service's 'grpc' port (if any) - SERVICE_PORT_GRPC=$(echo ${SERVICE_DATA} | jq -r '.spec.ports[] | select(.name=="grpc") | .port') - if [ -n "${SERVICE_PORT_GRPC}" ]; then - ENVVAR_PORT_GRPC=$(echo "${COMPONENT}service_SERVICE_PORT_GRPC" | tr '[:lower:]' '[:upper:]') - echo "export ${ENVVAR_PORT_GRPC}=${SERVICE_PORT_GRPC}" >> $ENV_VARS_SCRIPT - fi - - # Env vars for service's 'http' port (if any) - SERVICE_PORT_HTTP=$(echo ${SERVICE_DATA} | jq -r '.spec.ports[] | select(.name=="http") | .port') - if [ -n "${SERVICE_PORT_HTTP}" ]; then - ENVVAR_PORT_HTTP=$(echo "${COMPONENT}service_SERVICE_PORT_HTTP" | tr '[:lower:]' '[:upper:]') - echo "export ${ENVVAR_PORT_HTTP}=${SERVICE_PORT_HTTP}" >> $ENV_VARS_SCRIPT - fi - - printf "\n" -done - -echo "Deploying extra manifests..." -for EXTRA_MANIFEST in $TFS_EXTRA_MANIFESTS; do - echo "Processing manifest '$EXTRA_MANIFEST'..." - if [[ "$EXTRA_MANIFEST" == *"servicemonitor"* ]]; then - kubectl apply -f $EXTRA_MANIFEST - else - kubectl --namespace $TFS_K8S_NAMESPACE apply -f $EXTRA_MANIFEST - fi - printf "\n" -done -printf "\n" - -for COMPONENT in $TFS_COMPONENTS; do - echo "Waiting for '$COMPONENT' component..." - COMPONENT_OBJNAME=$(echo "${COMPONENT}" | sed "s/\_/-/") - kubectl wait --namespace $TFS_K8S_NAMESPACE \ - --for='condition=available' --timeout=300s deployment/${COMPONENT_OBJNAME}service - printf "\n" -done - -if [[ "$TFS_COMPONENTS" == *"webui"* ]] && [[ "$TFS_COMPONENTS" == *"monitoring"* ]]; then - echo "Configuring WebUI DataStores and Dashboards..." - sleep 5 - - # Exposed through the ingress controller "tfs-ingress" - GRAFANA_URL="127.0.0.1:80/grafana" - - # Default Grafana credentials - GRAFANA_USERNAME="admin" - GRAFANA_PASSWORD="admin" - - # Configure Grafana Admin Password - # Ref: https://grafana.com/docs/grafana/latest/http_api/user/#change-password - GRAFANA_URL_DEFAULT="http://${GRAFANA_USERNAME}:${GRAFANA_PASSWORD}@${GRAFANA_URL}" - - echo ">> Updating Grafana 'admin' password..." - curl -X PUT -H "Content-Type: application/json" -d '{ - "oldPassword": "'${GRAFANA_PASSWORD}'", - "newPassword": "'${TFS_GRAFANA_PASSWORD}'", - "confirmNew" : "'${TFS_GRAFANA_PASSWORD}'" - }' ${GRAFANA_URL_DEFAULT}/api/user/password - echo - echo - - # Updated Grafana API URL - GRAFANA_URL_UPDATED="http://${GRAFANA_USERNAME}:${TFS_GRAFANA_PASSWORD}@${GRAFANA_URL}" - echo "export GRAFANA_URL_UPDATED=${GRAFANA_URL_UPDATED}" >> $ENV_VARS_SCRIPT - - echo ">> Installing Scatter Plot plugin..." - curl -X POST -H "Content-Type: application/json" -H "Content-Length: 0" \ - ${GRAFANA_URL_UPDATED}/api/plugins/michaeldmoore-scatter-panel/install - echo - - # Ref: https://grafana.com/docs/grafana/latest/http_api/data_source/ - QDB_HOST_PORT="${METRICSDB_HOSTNAME}:${QDB_SQL_PORT}" - echo ">> Creating datasources..." - curl -X POST -H "Content-Type: application/json" -H "Accept: application/json" -d '{ - "access" : "proxy", - "type" : "postgres", - "name" : "questdb-mon-kpi", - "url" : "'${QDB_HOST_PORT}'", - "database" : "'${QDB_TABLE_MONITORING_KPIS}'", - "user" : "'${QDB_USERNAME}'", - "basicAuth": false, - "isDefault": true, - "jsonData" : { - "sslmode" : "disable", - "postgresVersion" : 1100, - "maxOpenConns" : 0, - "maxIdleConns" : 2, - "connMaxLifetime" : 14400, - "tlsAuth" : false, - "tlsAuthWithCACert" : false, - "timescaledb" : false, - "tlsConfigurationMethod": "file-path", - "tlsSkipVerify" : true - }, - "secureJsonData": {"password": "'${QDB_PASSWORD}'"} - }' ${GRAFANA_URL_UPDATED}/api/datasources - echo - - curl -X POST -H "Content-Type: application/json" -H "Accept: application/json" -d '{ - "access" : "proxy", - "type" : "postgres", - "name" : "questdb-slc-grp", - "url" : "'${QDB_HOST_PORT}'", - "database" : "'${QDB_TABLE_SLICE_GROUPS}'", - "user" : "'${QDB_USERNAME}'", - "basicAuth": false, - "isDefault": false, - "jsonData" : { - "sslmode" : "disable", - "postgresVersion" : 1100, - "maxOpenConns" : 0, - "maxIdleConns" : 2, - "connMaxLifetime" : 14400, - "tlsAuth" : false, - "tlsAuthWithCACert" : false, - "timescaledb" : false, - "tlsConfigurationMethod": "file-path", - "tlsSkipVerify" : true - }, - "secureJsonData": {"password": "'${QDB_PASSWORD}'"} - }' ${GRAFANA_URL_UPDATED}/api/datasources - printf "\n\n" - - echo ">> Creating dashboards..." - # Ref: https://grafana.com/docs/grafana/latest/http_api/dashboard/ - curl -X POST -H "Content-Type: application/json" -d '@src/webui/grafana_db_mon_kpis_psql.json' \ - ${GRAFANA_URL_UPDATED}/api/dashboards/db - echo - - curl -X POST -H "Content-Type: application/json" -d '@src/webui/grafana_db_slc_grps_psql.json' \ - ${GRAFANA_URL_UPDATED}/api/dashboards/db - printf "\n\n" - - echo ">> Staring dashboards..." - DASHBOARD_URL="${GRAFANA_URL_UPDATED}/api/dashboards/uid/tfs-l3-monit" - DASHBOARD_ID=$(curl -s "${DASHBOARD_URL}" | jq '.dashboard.id') - curl -X POST ${GRAFANA_URL_UPDATED}/api/user/stars/dashboard/${DASHBOARD_ID} - echo - - DASHBOARD_URL="${GRAFANA_URL_UPDATED}/api/dashboards/uid/tfs-slice-grps" - DASHBOARD_ID=$(curl -s "${DASHBOARD_URL}" | jq '.dashboard.id') - curl -X POST ${GRAFANA_URL_UPDATED}/api/user/stars/dashboard/${DASHBOARD_ID} - echo - - printf "\n\n" -fi diff --git a/src/tests/ecoc22/tests/Objects.py b/src/tests/ecoc22/tests/Objects.py index 9daac3265..3a96e6625 100644 --- a/src/tests/ecoc22/tests/Objects.py +++ b/src/tests/ecoc22/tests/Objects.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from common.tools.object_factory.t json_device_id +from common.tools.object_factory.Device import json_device_id from common.tools.object_factory.EndPoint import json_endpoint_id from tests.tools.mock_osm.Tools import connection_point, wim_mapping diff --git a/src/tests/ofc23/descriptors/real/dc-2-dc-service.json b/src/tests/ofc23/descriptors/real/dc-2-dc-service.json index beabd44e5..3a83afa6d 100644 --- a/src/tests/ofc23/descriptors/real/dc-2-dc-service.json +++ b/src/tests/ofc23/descriptors/real/dc-2-dc-service.json @@ -20,7 +20,7 @@ "mtu": 1512, "vlan_id": 111 }}}, {"action": 1, "custom": {"resource_key": "/device[R149]/endpoint[eth-1/0/22]/settings", "resource_value": { - "route_distinguisher": "65000:123", "router_id": "", + "route_distinguisher": "65000:123", "router_id": "5.5.5.5", "address_ip": "172.16.4.1", "address_prefix": 24, "sub_interface_index": 0, "vlan_id": 111 }}}, {"action": 1, "custom": {"resource_key": "/device[R155]/endpoint[eth-1/0/22]/settings", "resource_value": { -- GitLab From 2519f1dcaa4a9d5967f0847fe2e491d499189816 Mon Sep 17 00:00:00 2001 From: armingol Date: Tue, 11 Jun 2024 16:48:36 +0200 Subject: [PATCH 4/6] code clean up --- test.py | 291 -------------------------------------------------------- 1 file changed, 291 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index 49dff75f9..000000000 --- a/test.py +++ /dev/null @@ -1,291 +0,0 @@ - -import concurrent.futures, json, logging, operator -import sys -from typing import Any, Dict, List, Optional, Tuple, Union - -TypeResults = List[Tuple[str, str, int, List[str]]] # entity_name, action, num_ok, list[error] - -class DescriptorLoader: - def __init__( - self, descriptors : Optional[Union[str, Dict]] = None, descriptors_file : Optional[str] = None, - num_workers : int = 1, - ) -> None: - print('holaa') - descriptors = { - "ietf-network-slice-service:network-slice-services": { - "slo-sle-templates": { - "slo-sle-template": [ - { - "id": "high-BW-template", - "description": "take the highest BW forwarding path" - }, - { - "id": "low-latency-template", - "description": "lowest possible latency forwarding behavior" - } - ] - }, - "slice-service": [ - { - "id": "slice_d1_d2", - "description": "example slice p2p between two devices", - "slo-sle-template": "low-latency-template", - "status": {}, - "sdps": { - "sdp": [ - { - "id": "1", - "node-id": "4.4.4.4", - "service-match-criteria": { - "match-criterion": [ - { - "index": 1, - "match-type": "ietf-nss:service-any-match", - "target-connection-group-id": "matrix1" - } - ] - }, - "attachment-circuits": { - "attachment-circuit": [ - { - "id": "ac1", - "description": "AC1 connected to device 1", - "ac-node-id": "4.4.4.4", - "ac-tp-id": "to_HL3-1-2", - "ac-tags": { - "ac-tags": [ - { - "tag-type": "ietf-nss:vlan-id", - "value": [ - "100" - ] - } - ] - }, - "status": {} - } - ] - }, - "status": {} - }, - { - "id": "2", - "node-id": "5.5.5.5", - "service-match-criteria": { - "match-criterion": [ - { - "index": 1, - "match-type": "ietf-nss:service-any-match", - "target-connection-group-id": "matrix1" - } - ] - }, - "attachment-circuits": { - "attachment-circuit": [ - { - "id": "ac2", - "description": "AC2 connected to device 2", - "ac-node-id": "5.5.5.5", - "ac-tp-id": "eth-1/0/22.111", - "ac-tags": { - "ac-tags": [ - { - "tag-type": "ietf-nss:vlan-id", - "value": [ - "111" - ] - } - ] - }, - "status": {} - } - ] - }, - "status": {} - } - ] - }, - "connection-groups": { - "connection-group": [ - { - "id": "matrix1", - "connectivity-type": "ietf-nss:point-to-point", - "service-slo-sle-policy": { - "slo-policy": { - "metric-bound": [ - { - "metric-type": "ietf-nss:one-way-delay-maximum", - "metric-unit": "milliseconds", - "bound": "10" - } - ] - } - }, - "connectivity-construct": [ - { - "id": 1, - "p2p-sender-sdp": "1", - "p2p-receiver-sdp": "2", - "status": {} - }, - { - "id": 2, - "p2p-sender-sdp": "2", - "p2p-receiver-sdp": "1", - "status": {} - } - ] - } - ] - } - } - ] - } - } - - self.__descriptors = json.loads(descriptors) if isinstance(descriptors, str) else descriptors - - self.__slices = self.__descriptors.get('slices' , []) - #data = self.__descriptors.get('data' , {}) #Coge de la file el campo slices - #ns_slice_service = data.get('ietf-network-slice-service:network-slice-services', {}) - #self.__slices= ns_slice_service.get('slice-service', []) #nuevas slices - self.__slices = self.__descriptors.get('ietf-network-slice-service:network-slice-services', {}) - #hasta aqui bien - - print(type(self.__slices)) - print(type(self.__slices["slice-service"])) - - - json_out = {"slices": [ - { - "slice_id": { - "context_id": {"context_uuid": {"uuid": "admin"}}, - "slice_uuid": {} - }, - "name": {}, - "slice_config": {"config_rules": [ - {"action": 1, "custom": {"resource_key": "/settings", "resource_value": { - "address_families": ["IPV4"], "bgp_as": 65000, "bgp_route_target": "65000:333", "mtu": 1512 - }}} - - ]}, - "slice_constraints": [ - {"sla_capacity": {"capacity_gbps": 20.0}}, - {"sla_availability": {"availability": 20.0, "num_disjoint_paths": 1, "all_active": True}}, - {"sla_isolation": {"isolation_level": [0]}} - ], - "slice_endpoint_ids": [ - - ], - "slice_status": {"slice_status": 1} - } - ]} - - for slice_service in self.__slices["slice-service"]: - for slice in json_out["slices"]: - slice["slice_id"]["slice_uuid"] = { "uuid": slice_service["id"]} - slice["name"] = slice_service["description"] - sdp = slice_service["sdps"]["sdp"] - print(sdp) - for elemento in sdp: - slice["slice_config"]["config_rules"].append( {"action": 1, "custom": {"resource_key": "/device[R1]/endpoint[1/2]/settings", "resource_value": { - "router_id": elemento.get("node-id",[]), "sub_interface_index": 0, "vlan_id": 111 - }}}) - slice["slice_endpoint_ids"].append({ - "device_id": {"device_uuid": {"uuid": elemento["id"]}}, - "endpoint_uuid": {"uuid": "1/2"}, - "topology_id": {"context_id": {"context_uuid": {"uuid": "admin"}}, - "topology_uuid": {"uuid": "admin"}} - }) - attcircuits = elemento["attachment-circuits"]["attachment-circuit"] - for attcircuit in attcircuits: - slice["slice_constraints"].append({"endpoint_location": { - "endpoint_id": {"device_id": {"device_uuid": {"uuid": attcircuit["id"]}}, "endpoint_uuid": {"uuid": attcircuit["ac-tp-id"]}}, - "location": {"region": "4"} - }}) - - # Convertir a JSON de salida - #json_output = json.dumps(json_out, indent=2) - self.__slices = json_out.get('slices' , []) - print(self.__slices) - self.__results : TypeResults = list() - - - @property - def slices(self) -> Dict[str, List[Dict]]: - _slices = {} - for slice_ in self.__slices: - context_uuid = "admin" - _slices.setdefault(context_uuid, []).append(slice_) #no tenemos context_uuid en este formato, lo meto a mano? - self.__slices = [format_slice_custom_config_rules (slice_ ) for slice_ in self.__slices ] - return _slices - - @property - def num_slices(self) -> Dict[str, int]: - _num_slices = {} - for slice_ in self.__slices: - context_uuid = slice_['slice_id']['context_id']['context_uuid']['uuid'] - _num_slices[context_uuid] = _num_slices.get(context_uuid, 0) + 1 - return _num_slices - - # Format CustomConfigRules in Devices, Services and Slices provided in JSON format - - def process(self) -> TypeResults: - # Format CustomConfigRules in Devices, Services and Slices provided in JSON format - self.__slices = [format_slice_custom_config_rules (slice_ ) for slice_ in self.__slices ] - - # Context and Topology require to create the entity first, and add devices, links, services, - # slices, etc. in a second stage. - - print(self.__results) - return self.__results - - #UTILIZA LA FUNCION FORMAT_CUSTOM_CONFIG_RULES -#cambio - -TypeResourceValue = Union[str, int, bool, float, dict, list] -''' -def format_custom_config_rules(config_rules : List[Dict]) -> List[Dict]: - for config_rule in config_rules: - # if 'custom' not in config_rule: continue #suponemos que siempre son custom, quitamos esta linea - custom_resource_value : TypeResourceValue = config_rule['attachment-circuits']['attachment-circuit'] - if isinstance(custom_resource_value, (dict, list)): - custom_resource_value = json.dumps(custom_resource_value, sort_keys=True, indent=0) - config_rule['attachment-circuits']['attachment-circuit'] = custom_resource_value - elif not isinstance(custom_resource_value, str): - config_rule['attachment-circuits']['attachment-circuit'] = str(custom_resource_value) - return config_rules - -def format_slice_custom_config_rules(slice_ : Dict) -> Dict: - #donde cojo los config_rules - #las config_rules parecen estar en ACs? - sdps = slice_.get('sdps', {}) - config_rules = sdps.get('sdp', {}) - print("Tipo de sdp:", type(config_rules)) - print("sdps:", config_rules) - #Despues de mucho revisar, el campo sdp es List[Dict] asique voy a pasar directamente sdp a la funcion format_custom_config_rules(config_rules) - - config_rules = format_custom_config_rules(config_rules) - slice_['sdps']['sdp'] = config_rules - return slice_ -''' -def format_custom_config_rules(config_rules : List[Dict]) -> List[Dict]: - for config_rule in config_rules: - if 'custom' not in config_rule: continue - custom_resource_value : TypeResourceValue = config_rule['custom']['resource_value'] - if isinstance(custom_resource_value, (dict, list)): - custom_resource_value = json.dumps(custom_resource_value, sort_keys=True, indent=0) - config_rule['custom']['resource_value'] = custom_resource_value - return config_rules - -def format_slice_custom_config_rules(slice_ : Dict) -> Dict: - config_rules = slice_.get('slice_config', {}).get('config_rules', []) - config_rules = format_custom_config_rules(config_rules) - slice_['slice_config']['config_rules'] = config_rules - return slice_ - -# Crear una instancia de la clase -mi_cargador = DescriptorLoader() -results = mi_cargador.process() - - -- GitLab From fe4fb4d3e7286475461c17154b5f3cabefca1a5a Mon Sep 17 00:00:00 2001 From: armingol Date: Tue, 11 Jun 2024 17:36:37 +0200 Subject: [PATCH 5/6] code clean up --- .../drivers/openconfig/templates/Inventory.py | 1 - src/nbi/service/__main__.py | 4 +- .../nbi_plugins/ietf_hardware/Hardware.py | 13 + .../nbi_plugins/ietf_hardware/Untitled-5.json | 37305 ---------------- .../nbi_plugins/ietf_hardware/YangHandler.py | 52 +- .../nbi_plugins/ietf_hardware/__init__.py | 14 + .../nbi_plugins/tfs_api/Resources.py | 12 - .../nbi_plugins/tfs_api/__init__.py | 4 +- 8 files changed, 46 insertions(+), 37359 deletions(-) delete mode 100644 src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json diff --git a/src/device/service/drivers/openconfig/templates/Inventory.py b/src/device/service/drivers/openconfig/templates/Inventory.py index d06f0ab89..4fca35bc3 100644 --- a/src/device/service/drivers/openconfig/templates/Inventory.py +++ b/src/device/service/drivers/openconfig/templates/Inventory.py @@ -76,7 +76,6 @@ def parse(xml_data : ET.Element) -> List[Tuple[str, Dict[str, Any]]]: if not component_location is None: add_value_from_tag(inventory['attributes'], 'location', component_location) - component_id = xml_component.find('ocp:state/ocp:id', namespaces=NAMESPACES) if not component_id is None: add_value_from_tag(inventory['attributes'], 'id', component_id) diff --git a/src/nbi/service/__main__.py b/src/nbi/service/__main__.py index d5bfdbb53..efe5c20ca 100644 --- a/src/nbi/service/__main__.py +++ b/src/nbi/service/__main__.py @@ -22,12 +22,12 @@ from common.Settings import ( from .NbiService import NbiService from .rest_server.RestServer import RestServer from .rest_server.nbi_plugins.etsi_bwm import register_etsi_bwm_api +from .rest_server.nbi_plugins.ietf_hardware import register_ietf_hardware from .rest_server.nbi_plugins.ietf_l2vpn import register_ietf_l2vpn from .rest_server.nbi_plugins.ietf_l3vpn import register_ietf_l3vpn from .rest_server.nbi_plugins.ietf_network import register_ietf_network from .rest_server.nbi_plugins.ietf_network_slice import register_ietf_nss from .rest_server.nbi_plugins.tfs_api import register_tfs_api -from .rest_server.nbi_plugins.ietf_hardware import register_ietf_hardware terminate = threading.Event() LOGGER = None @@ -65,12 +65,12 @@ def main(): rest_server = RestServer() register_etsi_bwm_api(rest_server) + register_ietf_hardware(rest_server) register_ietf_l2vpn(rest_server) # Registering L2VPN entrypoint register_ietf_l3vpn(rest_server) # Registering L3VPN entrypoint register_ietf_network(rest_server) register_ietf_nss(rest_server) # Registering NSS entrypoint register_tfs_api(rest_server) - register_ietf_hardware(rest_server) rest_server.start() # Wait for Ctrl+C or termination signal diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py index f12efe49b..a7404b924 100644 --- a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Hardware.py @@ -1,3 +1,16 @@ +# Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/) +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. import logging from flask import request diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json deleted file mode 100644 index e310632fa..000000000 --- a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/Untitled-5.json +++ /dev/null @@ -1,37305 +0,0 @@ -{ - "devices": [ - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/3\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/8\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/3]", - "resource_value": "{\"uuid\": \"1/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/4]", - "resource_value": "{\"uuid\": \"1/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/8]", - "resource_value": "{\"uuid\": \"1/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "008d9515-4174-5ef5-947f-10521d4c5afb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "0286058e-d5b2-5470-812c-700ee841763b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "0799c5b6-f94b-53c2-8136-4cc9c7cd7122" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "0acf7879-56ac-51d9-9030-8e62fb4951e7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "0ed3e9f2-2281-5b1e-a2b5-8000e0b0796a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "1446f716-e87a-5120-8652-93e7954dcffe" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "216d66e9-13e5-50dd-ace5-c2ee7adcb08d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "2c395317-8081-517d-9c29-4e502e277f8f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "352b6e37-d3e0-5cae-baf2-7e7422d60fed" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "36433475-17c6-56fa-afe8-411f4f505e66" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "3e6668ae-34b0-5802-a425-d8052e5b98ab" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "403f3e35-3581-5b3d-9ae6-2bebcc877a7a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "40a764b6-a89f-5673-b85b-c1602ee5e8c1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "448c1d22-bd32-5a7d-b8bd-101085de14e1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "498ad6ec-b283-56e2-a029-01332940066b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "49bb3010-d22a-5e88-93fe-773439e9e9b5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "55ec3f20-3631-5619-8aa8-2146ca8963f3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "59e9967a-9f20-5ab7-8085-3bf65f2fef14" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "5c973fa3-f6da-544e-bb63-6e2dfafa0bb8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "5e61474e-0278-51fe-9213-11c563a079d1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "6135e462-47f7-5a2a-9415-4d606a6c1636" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "661bdcf6-71d0-5c79-b999-057f5041af2a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "69ea76be-b363-58bd-8062-bc0c8ef4ccac" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "6a20f2de-dc11-5789-80ed-7b7a30d2f18a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "6ac7f8a6-8d7d-5ba3-8ac3-ffca89517a4c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "6f61e7da-6fa5-5305-9ab9-835f1e3e4dc0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "72ebcc64-eb48-5d8a-9523-f0f947a8a115" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "77330b46-f237-56c8-9f60-3da0ec2c4a55" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "77569bc1-90ec-5b3f-bc49-414dcd9c3834" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "782cbe5e-c31b-5845-80f5-b078a70f9ea0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "7d3652f0-3396-59e7-b8bb-4fd1c1482ee6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "81194f7f-7278-5375-96cb-a4bf671a4bfc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "8ed9276d-d0d6-54bc-a83c-c2f98cc951f2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "97faf862-54cc-5c56-a97b-b28898916de3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "9d3cd75b-6141-58ce-9ada-e9e6188dcba9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "9f7ceae8-cb1c-50c2-8381-dec7e2f9831c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "a2038e0a-c4b6-5009-bdf2-dc6c53554282" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "a335df94-788a-5d76-8fff-be9eb02f601b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "ab1e16cb-3465-5474-98d6-4320a09d5334" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "ac5e7f86-11dd-5475-aedc-21e3fd06bf4a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "b0cb74a9-1e64-5ef0-9fed-a56f47baa89c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "b3ce7fb1-6f98-5a5c-bfed-1802eedb54ed" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "b6711860-a240-59aa-928a-61c6791dc6ca" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "bd2b8065-ef71-54b8-99f6-11dc06944847" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "d164bd81-2f0b-53a5-b46e-381180423bda" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "dbac5c81-4de1-5bc6-b319-9cbf00cbfb22" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "e10e3c22-0309-502a-b633-9fe0477774dc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "e13f1da9-556c-5d37-992f-cdc06378629a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "e95d3616-7224-5364-bda7-28a38cc42d01" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "eb5e3d6e-8044-5e0e-a9e3-5af5801d03a2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "f3cd040d-f8cf-5b68-888e-79c0a3d87b8b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "f4824c23-67f1-5396-b7b4-8dee426a839a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "endpoint_uuid": { - "uuid": "f6d8fa4c-ddeb-5425-86bc-1529fed0a2e2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - } - ], - "device_id": { - "device_uuid": { - "uuid": "030eb3a2-41ab-5ec8-b81d-82f715d34f9d" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R9" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/9\"\n},\n{\n\"uuid\": \"1/10\"\n},\n{\n\"uuid\": \"1/11\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/9]", - "resource_value": "{\"uuid\": \"1/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/10]", - "resource_value": "{\"uuid\": \"1/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/11]", - "resource_value": "{\"uuid\": \"1/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "00f6aa6c-5788-5274-bc5f-7496cef3112f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "01bf7c0d-ec50-58d0-955a-4e968eb2de0e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "0350a28a-464f-51d9-9085-bdea7ef79ac2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "07251cd0-67b4-5e21-a4d6-3f3b089dcbcc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "115291b8-d6b1-5611-bcd8-9471814e643b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "11bbeac7-1648-5c9c-a4f8-779431030925" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "1de97406-ad9e-5ead-a7d9-fe44a43a0093" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "2f3e6481-caaf-596e-a948-55dfe5f1b894" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "3e045a1d-c9b1-5cd0-bddb-2d91570395ff" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "449225a7-9dee-5f5e-904f-84ad889a0913" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "46164501-1ca8-5811-bf4e-3f111f4dd832" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "4b01fbc3-a6a6-5f4c-b321-3b2478a36e3e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "4e7edd07-74b9-56e8-9f12-b1b33eb13c00" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "52947e65-183d-5f0e-be59-cd3ca1f70f7e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "59c6e3a8-69a2-5473-93d6-f74441b21e4d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "5b1c64fe-9dcd-5bca-a049-4b6f1afe3d0b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "5cc15e1c-37cf-5926-b119-8ecb61b112d3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "5e00e431-fdea-5443-b425-50655124cf25" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "61489364-2df5-528d-bc35-cc022daf3045" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "69520fec-e520-57d9-aa95-c5d99ddb5be0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "722ad097-5287-5088-b071-98e5a23427fe" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "748c165e-3bbd-59bf-9329-dd9fe25f78bb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "75121ae7-d93a-5aa2-9888-5c13c0effdbc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "81cb5dba-adf9-524e-9ddf-cad5dd567f5c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "8726e2ba-c159-5dc6-a016-c15c02c629ea" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "9c562cea-011b-5088-bc5f-d4728274bd05" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "a0b0a10e-bfa6-5bd3-9a13-ae44fd86a19b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "a7041317-98fb-554f-9ce7-703252d17153" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "a8379176-f9a3-5b31-a26d-9419dcaad050" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "ab6eede8-a7d2-57a3-bbe3-8d85b16b9241" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "ac15c02d-0850-507c-b449-ea4c619ccd0a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "ac8a2cf1-4b5e-5464-be25-3c5fee3655be" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "ad63feb7-336e-50be-843b-a39bc49d578d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "af9fcc39-8302-5b7e-9290-9251a2533802" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "c0159c06-e88d-585b-a1a0-545402141518" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "c64e5269-4f60-5e2b-a837-4197919e0bd4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "cda4bbe8-23b6-5e77-a5a1-ca1f54c44ef3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "d1333097-eb53-56e5-bf35-3feca03463f9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "d3a81109-dd52-5df4-95ac-4c7dd828b696" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "d55e5aca-e17e-5769-a85b-6ef2c7628635" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "daa8c9bb-7715-547b-a2f2-9ce6ce02fd6c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "dd72a728-9ad5-578d-b49b-dfe9995d1ba8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "e1cb88f4-4966-56f5-9865-f7d45feb3518" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "e4129616-9d1b-55c7-98d8-b436bf4ef018" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "e795638b-9e90-5fba-9d1a-35d9d66c28f2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "e84d895a-54f8-5387-b59d-b4efba5e9b17" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "e8ddb0dc-c992-5e14-a410-533bc50b08e6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "eaf9a1ef-3911-5a2e-8995-389e12526109" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "f4dd6290-69b0-54c8-b4fd-19fe6929aacf" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "f6196751-8005-5902-9ebd-fade19aee5d0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "fcfb64a3-2233-5f6e-bef1-84312e9b19ed" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "fd324f8f-897a-546c-bb96-a12d220c01a3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "endpoint_uuid": { - "uuid": "fe3a31c1-cffd-524f-bb05-30baabde2460" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - } - ], - "device_id": { - "device_uuid": { - "uuid": "0dff8c06-873b-5799-ac54-c0452252bae1" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R3" - }, - { - "components": [ - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "00778c55-e1f1-5801-b9b7-25815c65cb1b" - }, - "name": "eth-1/0/10", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "01310680-37b7-58bf-914a-1ba4583a16c2" - }, - "name": "eth-1/0/17", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "01b7daf5-f25e-51da-96b8-d14f7249f6b4" - }, - "name": "eth-1/0/1", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "08b718c1-5523-5c70-8699-9e7cc11ac171" - }, - "name": "Transceiver#10", - "parent": "eth-1/0/10", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "14c2bb4e-7d9c-5e32-a53a-0bbbdcd720c3" - }, - "name": "eth-1/0/8", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "15411cf7-182d-5dbe-89e7-260d95798ec7" - }, - "name": "Transceiver#14", - "parent": "eth-1/0/14", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "1574d8e0-900f-5047-87f6-dc1f09883836" - }, - "name": "eth-1/0/24", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "1b97500c-f4d6-57fc-b8dd-259c150aa33d" - }, - "name": "eth-1/0/13", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "1c8e6596-1eb7-517e-8324-c74875efb9cc" - }, - "name": "Transceiver#25", - "parent": "eth-1/0/25", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2057d491-54e2-52f3-be89-7e8453af1956" - }, - "name": "eth-1/0/25", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"false\"", - "location": "\"Power Supplies tray\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "211c3af7-d69a-5c23-b911-2dc522afbf1d" - }, - "name": "Power-Supply#2", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "21cbcc2b-4750-5476-8df6-2ba67470b336" - }, - "name": "eth-1/0/20", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "22de51e1-0a09-59b3-864e-8fd379931bb6" - }, - "name": "Fan#1", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "24639859-aa84-532a-ac92-d7fc91db0a22" - }, - "name": "eth-1/0/15", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2815040e-3a39-545e-9799-4f223014dbfc" - }, - "name": "eth-1/0/18", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2cc805ae-4959-5c53-8d21-98314a61bdfb" - }, - "name": "eth-1/0/11", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"QSFP28\"", - "removable": "\"true\"", - "serial-num": "\"INCNCNLAZA01015\"", - "vendor": "\"INNOLIGHT \"" - }, - "component_uuid": { - "uuid": "323bb3fe-391d-5cc2-8cf0-0b99ec874045" - }, - "name": "Transceiver#2", - "parent": "eth-1/0/2", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "39498531-80a9-5660-9018-04e215ffe618" - }, - "name": "Transceiver#20", - "parent": "eth-1/0/20", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "3b8c5d33-58ab-5403-80fa-395bbf8e91a0" - }, - "name": "eth-1/0/4", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"false\"" - }, - "component_uuid": { - "uuid": "400555ff-395a-54c0-a8e6-6702c0505dbe" - }, - "name": "Transceiver#30", - "parent": "eth-1/0/30", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "43455150-4a95-58d8-bf84-d0e83095431b" - }, - "name": "eth-1/0/9", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "49a31219-0e33-5d0f-a45a-3bf285f9e2fd" - }, - "name": "Transceiver#9", - "parent": "eth-1/0/9", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "4c860a8b-e262-5d27-8f98-0b0be6562a4d" - }, - "name": "Transceiver#26", - "parent": "eth-1/0/26", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "52aaa9ea-61f7-5052-b988-2fac4afe4172" - }, - "name": "Fan#5", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "54a2e18e-edfc-5b65-a5c3-20c7bd7e3593" - }, - "name": "eth-1/0/22", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "55937b2f-19d0-52e6-ac51-3ca68d5ba047" - }, - "name": "eth-1/0/6", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"1G Copper\"" - }, - "component_uuid": { - "uuid": "58ea7baa-3ac1-5501-9fdf-a1310881fe83" - }, - "name": "eth-1/0/30", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"QSFP28\"", - "removable": "\"true\"", - "serial-num": "\"INCNCNLBIA94000\"", - "vendor": "\"INNOLIGHT \"" - }, - "component_uuid": { - "uuid": "6ba73403-f894-5781-8a83-a906649b26be" - }, - "name": "Transceiver#1", - "parent": "eth-1/0/1", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "6e5b78c9-869a-5fbe-90b2-0cd287b2e4be" - }, - "name": "eth-1/0/26", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"ACW1747006N4 \"", - "vendor": "\"Arista Networks\"" - }, - "component_uuid": { - "uuid": "6fe099f7-0b6d-5fdb-bdf5-72046ec4c6b4" - }, - "name": "Transceiver#11", - "parent": "eth-1/0/11", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"AD1331A02S9 \"", - "vendor": "\"Intel Corp \"" - }, - "component_uuid": { - "uuid": "72f4bcf3-d7c7-59e8-80c6-a8cd2971f17d" - }, - "name": "Transceiver#13", - "parent": "eth-1/0/13", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"CRXT-T0T12B\"", - "empty": "\"false\"", - "location": "\"Power Supplies tray\"", - "manufacturer-name": "\"CRXT-T0T12B\"", - "removable": "\"true\"", - "serial-num": "\"21030005\"" - }, - "component_uuid": { - "uuid": "7905b083-401b-5685-8ec2-ad2ba21f716b" - }, - "name": "Power-Supply#1", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "7dbf69ba-707e-54b6-98fc-f907f40234b4" - }, - "name": "eth-1/0/23", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"CN04HG00184001E\"", - "vendor": "\"DELL EMC \"" - }, - "component_uuid": { - "uuid": "7f5c81bf-e019-58d4-96a3-9fbb9edc22f8" - }, - "name": "Transceiver#16", - "parent": "eth-1/0/16", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"1G Copper\"" - }, - "component_uuid": { - "uuid": "8ae15e57-f162-567c-a619-df5b548c0902" - }, - "name": "eth-1/0/29", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"false\"" - }, - "component_uuid": { - "uuid": "8e3677d0-42a7-5942-9b09-e86657cbcd41" - }, - "name": "Transceiver#27", - "parent": "eth-1/0/27", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"F162250012 \"", - "vendor": "\"Edgecore \"" - }, - "component_uuid": { - "uuid": "9b42bf35-e457-5303-b765-523009f7a5a4" - }, - "name": "Transceiver#12", - "parent": "eth-1/0/12", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "9beab43b-9bb4-5672-adc3-f6329e4ba827" - }, - "name": "eth-1/0/21", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "a3154e0c-8fb7-5cda-b245-4be61a10b220" - }, - "name": "eth-1/0/19", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "a40ba96e-db02-502f-b8e7-c4ce60e6a681" - }, - "name": "Transceiver#4", - "parent": "eth-1/0/4", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "a4cfdc29-bcaa-57ec-8c83-126e0e77c2ec" - }, - "name": "eth-1/0/5", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "a9e9c4ec-265a-5039-848c-2ebf578855f3" - }, - "name": "eth-1/0/3", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"AD0911A00C2 \"", - "vendor": "\"Intel Corp \"" - }, - "component_uuid": { - "uuid": "aae72351-d863-5c58-b76b-bba4b2075ef9" - }, - "name": "Transceiver#19", - "parent": "eth-1/0/19", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"false\"" - }, - "component_uuid": { - "uuid": "aaf4e1d8-b1fe-5864-a1ce-ae8d6b188293" - }, - "name": "Transceiver#28", - "parent": "eth-1/0/28", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "ad294931-6af3-51dd-a869-77b0737e8d2c" - }, - "name": "Transceiver#5", - "parent": "eth-1/0/5", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "b49ce3de-b5f9-5f02-b2f6-aa9e0c4ab9c0" - }, - "name": "Transceiver#18", - "parent": "eth-1/0/18", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"7315-30X-O-48V-S\"", - "empty": "\"false\"", - "hardware-rev": "\"R0B\"", - "manufacturer-name": "\"7315-30X-O-48V-S\"", - "mfg-date": "\"2021-10-25\"", - "removable": "\"false\"", - "serial-num": "\"731530X2143013\"", - "software-rev": "\"21.5.1 (9799)\"" - }, - "component_uuid": { - "uuid": "bae372e1-9b13-5f5e-aed0-0dfe87d9c9b7" - }, - "name": "chassis", - "parent": "chassis", - "type": "CHASSIS" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "c4a286b4-14bc-508c-94d5-3210d5a4670d" - }, - "name": "Fan#3", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "c9a857e4-736c-54a1-abe8-bd5768f556b4" - }, - "name": "Transceiver#6", - "parent": "eth-1/0/6", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"ACW1747006MV \"", - "vendor": "\"Arista Networks\"" - }, - "component_uuid": { - "uuid": "ca78897e-e256-5a57-91e8-792e92280c30" - }, - "name": "Transceiver#23", - "parent": "eth-1/0/23", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "cb6fb97c-fe8f-528f-b34e-c7c9ee52e485" - }, - "name": "Transceiver#17", - "parent": "eth-1/0/17", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "cce67881-0cf8-5778-83fc-099e4dddfa50" - }, - "name": "eth-1/0/14", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "ce3fb53f-c07c-5b1d-b8b3-8c08da8800b9" - }, - "name": "Fan#4", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "d0757c2c-8d4b-57aa-8f17-c5fab40551d4" - }, - "name": "eth-1/0/2", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "d54a9b97-d671-5c84-988d-1d0bc3a62f55" - }, - "name": "Transceiver#7", - "parent": "eth-1/0/7", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "d6e15727-40bd-51f6-a7c4-7356358a60b6" - }, - "name": "eth-1/0/16", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "d7d2e358-3203-5e6b-a23b-eecc4f866fa9" - }, - "name": "Transceiver#22", - "parent": "eth-1/0/22", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "da6e0382-5ca3-5f23-8ae6-1c8ccc897c65" - }, - "name": "Transceiver#24", - "parent": "eth-1/0/24", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "db647a95-a6e8-5ad3-8d9a-0842517fe27d" - }, - "name": "eth-1/0/7", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "de36dafb-2d66-54ef-9351-54ee4a1b0f9b" - }, - "name": "Transceiver#3", - "parent": "eth-1/0/3", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"1G Copper\"" - }, - "component_uuid": { - "uuid": "df37f614-ec9f-5181-8c41-c322f31586ea" - }, - "name": "eth-1/0/27", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"1G Copper\"" - }, - "component_uuid": { - "uuid": "df910973-1c02-53ff-8dde-3bce8955a73a" - }, - "name": "eth-1/0/28", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"false\"" - }, - "component_uuid": { - "uuid": "e43d275a-e710-5a00-b1c9-6b964f4214f2" - }, - "name": "Transceiver#29", - "parent": "eth-1/0/29", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"CN04HG0018P13RE\"", - "vendor": "\"DELL EMC \"" - }, - "component_uuid": { - "uuid": "ecf4c207-e36b-52cb-a34a-2cecc4030d25" - }, - "name": "Transceiver#15", - "parent": "eth-1/0/15", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "f3e2636c-c742-5542-8586-7a7d516e8544" - }, - "name": "Fan#2", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "fb5d6c6d-edf2-5d17-b39f-62a889797be3" - }, - "name": "Transceiver#8", - "parent": "eth-1/0/8", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"ACW1747006MZ \"", - "vendor": "\"Arista Networks\"" - }, - "component_uuid": { - "uuid": "fe86ab62-509d-513a-b378-2bc18a794542" - }, - "name": "Transceiver#21", - "parent": "eth-1/0/21", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "ffb8587d-ddb3-5eec-ba78-bb5be047def2" - }, - "name": "eth-1/0/12", - "parent": "", - "type": "PORT" - } - ], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "10.95.90.127" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "830" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/chassis", - "resource_value": "{\"attributes\": {\"description\": \"7315-30X-O-48V-S\", \"empty\": \"false\", \"hardware-rev\": \"R0B\", \"manufacturer-name\": \"7315-30X-O-48V-S\", \"mfg-date\": \"2021-10-25\", \"removable\": \"false\", \"serial-num\": \"731530X2143013\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#1", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#2", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#3", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#4", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#5", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#1", - "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12B\", \"empty\": \"false\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12B\", \"removable\": \"true\", \"serial-num\": \"21030005\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#2", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"location\": \"Power Supplies tray\", \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/1", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#1", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"INCNCNLBIA94000\", \"vendor\": \"INNOLIGHT \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/2", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#2", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"INCNCNLAZA01015\", \"vendor\": \"INNOLIGHT \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/3", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#3", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/4", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#4", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/5", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#5", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/6", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#6", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/7", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#7", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/8", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#8", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/9", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#9", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/10", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#10", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/11", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#11", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"ACW1747006N4 \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/12", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#12", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F162250012 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/13", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#13", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"AD1331A02S9 \", \"vendor\": \"Intel Corp \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/14", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#14", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/15", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#15", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG0018P13RE\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/16", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#16", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG00184001E\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/17", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#17", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/18", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#18", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/19", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#19", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"AD0911A00C2 \", \"vendor\": \"Intel Corp \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/20", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#20", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/21", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#21", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"ACW1747006MZ \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/22", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#22", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/23", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#23", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"ACW1747006MV \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/24", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#24", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/25", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#25", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/26", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#26", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/27", - "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#27", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/28", - "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/28\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#28", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [30, \"PORT\"], \"name\": \"Transceiver#28\", \"parent-component-references\": \"eth-1/0/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/29", - "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/29\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#29", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [31, \"PORT\"], \"name\": \"Transceiver#29\", \"parent-component-references\": \"eth-1/0/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/30", - "resource_value": "{\"attributes\": {\"description\": \"1G Copper\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/30\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#30", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"false\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [32, \"PORT\"], \"name\": \"Transceiver#30\", \"parent-component-references\": \"eth-1/0/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/1]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/2]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/3]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/4]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/5]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/6]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/7]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/8]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/9]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/10]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/11]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/12]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/13]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/14]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/15]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/16]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/17]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/18]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/19]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/20]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/21]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/22]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/23]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/24]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/25]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/26]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/27]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/28]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/28']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/29]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/29']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/30]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/30']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/1]", - "resource_value": "{\"description\": \"\\\"Conexion con XR\\\"\", \"mtu\": 1522, \"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/2]", - "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/3]", - "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/4]", - "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/5]", - "resource_value": "{\"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/6]", - "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/7]", - "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/8]", - "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/9]", - "resource_value": "{\"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10]", - "resource_value": "{\"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/11]", - "resource_value": "{\"description\": \"\\\"Conexion con HL4-2-1\\\"\", \"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/12]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-3-1\\\"\", \"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/13]", - "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/14]", - "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15]", - "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16]", - "resource_value": "{\"description\": \"\\\"Conexion con IPM\\\"\", \"mtu\": 1522, \"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/17]", - "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/18]", - "resource_value": "{\"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19]", - "resource_value": "{\"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20]", - "resource_value": "{\"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22]", - "resource_value": "{\"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23]", - "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/24]", - "resource_value": "{\"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25]", - "resource_value": "{\"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/26]", - "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/27]", - "resource_value": "{\"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/28]", - "resource_value": "{\"name\": \"eth-1/0/28\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/29]", - "resource_value": "{\"name\": \"eth-1/0/29\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/30]", - "resource_value": "{\"name\": \"eth-1/0/30\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]/subinterface[0]", - "resource_value": "{\"address_ip\": \"10.95.90.127\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]", - "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]/subinterface[0]", - "resource_value": "{\"address_ip\": \"5.5.5.6\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]", - "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/1.246]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.2.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"1522\", \"name\": \"eth-1/0/1.246\", \"type\": \"l3ipvlan\", \"vlan_id\": 246}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/1.246]", - "resource_value": "{\"description\": \"Pruebas XR\", \"mtu\": 1522, \"name\": \"eth-1/0/1.246\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/2.357]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.3.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/2.357\", \"type\": \"l3ipvlan\", \"vlan_id\": 357}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/2.357]", - "resource_value": "{\"description\": \"Pruebas XR\", \"name\": \"eth-1/0/2.357\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/11.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"98.5.55.4\", \"address_ipv6\": \"2001::98:5:55:4\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"mtu\": \"1555\", \"name\": \"eth-1/0/11.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/11.55]", - "resource_value": "{\"mtu\": 1555, \"name\": \"eth-1/0/11.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/12.42]/subinterface[0]", - "resource_value": "{\"address_ip\": \"98.4.42.5\", \"address_ipv6\": \"2001::98:4:42:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/12.42\", \"type\": \"l3ipvlan\", \"vlan_id\": 42}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/12.42]", - "resource_value": "{\"name\": \"eth-1/0/12.42\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/13.13]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/13.13\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/13.13]", - "resource_value": "{\"name\": \"eth-1/0/13.13\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/14.70]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/14.70\", \"type\": \"l3ipvlan\", \"vlan_id\": 70}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/14.70]", - "resource_value": "{\"name\": \"eth-1/0/14.70\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15.203]/subinterface[0]", - "resource_value": "{\"address_ip\": \"150.2.203.5\", \"address_ipv6\": \"2001::150:2:203:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/15.203\", \"type\": \"l3ipvlan\", \"vlan_id\": 203}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15.203]", - "resource_value": "{\"name\": \"eth-1/0/15.203\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.69]/subinterface[0]", - "resource_value": "{\"address_ip\": \"192.168.69.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"1522\", \"name\": \"eth-1/0/16.69\", \"type\": \"l3ipvlan\", \"vlan_id\": 69}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.69]", - "resource_value": "{\"mtu\": 1522, \"name\": \"eth-1/0/16.69\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/17.205]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/17.205\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/17.205]", - "resource_value": "{\"name\": \"eth-1/0/17.205\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.19.1\", \"address_ipv6\": \"2001::99:5:19:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 19}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.20.1\", \"address_ipv6\": \"2001::99:5:20:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 20}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-2-2\\\"\", \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.111]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.1.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"3000\", \"name\": \"eth-1/0/21.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.111]", - "resource_value": "{\"mtu\": 3000, \"name\": \"eth-1/0/21.111\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.40]/subinterface[0]", - "resource_value": "{\"address_ip\": \"10.3.55.40\", \"address_ipv6\": \"2001::99:4:40:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/23.40\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.40]", - "resource_value": "{\"description\": \"\\\"Conexion con HL3-1-2\\\"\", \"name\": \"eth-1/0/23.40\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[OSCAR]", - "resource_value": "{\"policy_name\": \"OSCAR\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[OTRO_AS_PATH_SET]", - "resource_value": "{\"policy_name\": \"OTRO_AS_PATH_SET\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]", - "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.6\", \"type\": \"DEFAULT_INSTANCE\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[ISIS]", - "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[BGP]", - "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[XR]", - "resource_value": "{\"name\": \"XR\", \"type\": \"L3VRF\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_OPENCONFIG" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "1b773a03-f3d0-53e6-98ad-cb3f6c5983da" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "1b836541-0cee-5a4c-96f5-3104dc97444c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "201efb36-bd05-583a-84eb-329dfdcdddd0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "265cdc1e-d358-5cc4-bd50-2e1b78781b1f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "2be6e8ad-b9f9-50d8-89d4-6963969ea4d4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "2e9ff47a-6577-5c39-9e71-ada12fe09080" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "3677c1c1-6b87-5478-8fd6-997deeddc5c0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "3f535fc7-2848-51bd-b243-b2e24bf805a3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "4266450a-4f29-59d6-b0b8-4b3e08851410" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "45da321c-790a-5924-999c-17335b99ad6e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "4cf72ad5-b3ca-5a8c-b3fd-95c8ae773cdb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "5d4a9940-eecb-540c-9e07-d947727195b6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "6a6e8af4-77c8-578f-a307-7708db102385" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "6aa76d3a-d85b-588b-8abe-58a31d965446" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "6c90dd43-86bb-5b5e-a6c4-ddb532c098bc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "7a76d8f8-fbf6-5286-aab1-d7c7862bce20" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "83ac84c2-f83b-5746-8c45-a8f0cfa6c6cc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "90e49e40-7174-54f6-aa7d-ebfc9d604106" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "916536c2-7e74-5e8a-8311-09817b1885a4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "9b426a30-b6da-509c-9693-b10f91ac1cfb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "9c773f1e-1254-55a9-ac14-4784df24a278" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "a6d5c32c-d5fc-5481-b41b-f0bd9dd9a18b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "ab60d672-d742-5747-8cc0-ef68f3dfdb39" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "aebc391d-371a-519a-8bc7-48416528a4c9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "b10a0a5b-2ac4-5a5d-a230-698aceb871a8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "b5cbabde-9096-5d4d-846e-ea732e3a9942" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "c0209652-ee27-53d5-876e-2379f5e31d88" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "c64ddfdf-a7fb-557d-a5da-a5457faf3c65" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "e85ff816-2ba0-55ff-97ce-c5e5887238e6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "endpoint_uuid": { - "uuid": "fc4a92bf-49a8-546c-9cb8-4182492da1a5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/21" - } - ], - "device_id": { - "device_uuid": { - "uuid": "2a672db3-9ac5-5124-b9b2-12c9fc9dd4a8" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "packet-router", - "name": "R199" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/2\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/2]", - "resource_value": "{\"uuid\": \"1/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/4]", - "resource_value": "{\"uuid\": \"1/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/14]", - "resource_value": "{\"uuid\": \"1/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "00118309-6edb-5dc5-aceb-97ae37816910" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "0675ff9b-42ed-5216-8b12-2776f1da30ea" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "07367b74-2b7f-55d5-a910-f7ddb5dbcbe8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "0f8a40d9-7c24-5444-b399-be085cde9017" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "15da3804-8635-5212-9d10-f24a3d11f677" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "162e1061-4a21-52be-88bd-ed4fbddd5d63" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "165990a2-7755-52cb-af51-7ceba005a453" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "179c986d-db43-5c9f-9cfb-3919f42deb22" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "1d059e64-7bfa-532e-85d5-b911e75b9d00" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "22bacecd-c3b9-5359-baf6-d06178e13d49" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "2e7302bf-2553-5d87-80f6-84acbf045e0d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "404db7aa-59d7-5063-b078-596d25d2d4c6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "632edc18-d6ba-5ee9-9973-d0838234540c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "63b8f2aa-3636-58f6-b86f-1ef05be9f901" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "66f63c6e-1bcc-5b3b-861f-0ab72f008f82" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "696655c3-f604-5a99-89ed-7281295cb1de" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "6c498da3-67d3-5710-b9bb-820aa8579b61" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "6e6e7473-54ad-5c3e-b86a-017e4dd5b0cd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "76234d0c-5ae8-5fa1-9060-afb803f1ad6d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "95d55f2f-a591-5156-891b-f45888d7d755" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "96bdbc64-fcfe-5983-bdb3-7c1ddafa4965" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "9a92de93-f5f7-50e5-bf75-e8a687e48bbb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "9b38c1ed-c2d1-5eab-ae10-ccac9325fa58" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "a1790464-c78d-5258-9dbe-0bfd60909da6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "aa30ff67-23d2-52ec-b405-46531c9510f2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "ac6ee438-49f0-536d-b082-0d874bda33d5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "acbbd5fe-c8bf-54b8-a4ca-9f3d9dc410f2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "af6760db-b952-58f7-8d91-7c776c7750f7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "b41152a1-428c-51de-a42d-d51d5d3fb156" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "b57ed803-ee20-586f-959e-1a42d51dfc6c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "bcfc99bf-5d32-5fab-95ab-56d6ea374926" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "bdc6d7f4-5f1d-56ae-a87e-c74bd8e50ebc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "c035fdf7-704b-5854-8b52-906a8d173f41" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "c57bef02-b9a2-56c2-83de-eafa3b96a057" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "c61930b9-c952-5df0-a4c5-23bce6e35fdb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "ca8238df-049d-5b4f-9f01-372d2d7f910d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "cab7d834-a793-5929-9684-0657814007b1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "cb36d1d2-61bc-52dd-b528-8091d33ba9bf" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "cbf47e7e-2f11-5a9b-88db-028d6f3a4fa6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "cc67c658-0c27-5356-b71c-b76ddf11a25a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "ce18fd93-ddb2-5cb4-8e49-9fd33f164c91" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "d5c8a9a3-aaa0-5c8b-852f-58ae0c99dbad" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "d9db9ad5-5265-5ab1-b72c-48b411349b28" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "dafe5096-2042-5dda-8600-0a2f27ec1be6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "dd366feb-3074-5a95-a5ab-b2aff730db09" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "e04e39e1-e903-5b9a-b9b0-16eac20c46f8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "e437d5c7-5153-5820-b251-4ede69c0d54e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "e4717974-a13e-57ee-a004-8ef022aa2934" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "f84b3867-8b6d-5526-b7c7-513eaf3d5dac" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "fb14035e-73fa-5c0e-ae78-f7220dce33e0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "fc5050f9-f7cf-5a47-8495-9b50596df9be" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "fc97a4cc-f374-54dc-b8fc-2bab6e9be644" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "endpoint_uuid": { - "uuid": "fd461209-8977-50d4-bbf5-aef775e7445a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - } - ], - "device_id": { - "device_uuid": { - "uuid": "46189420-5879-563c-b5a1-2fc5ff6f8915" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R5" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/3\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/10\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/3]", - "resource_value": "{\"uuid\": \"1/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/4]", - "resource_value": "{\"uuid\": \"1/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/10]", - "resource_value": "{\"uuid\": \"1/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "017c24bf-4144-51ad-9a26-1a1356ff3051" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "01e79575-7490-500e-af6c-621d4c4d4e56" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "022719ab-196f-57f5-9808-70cdcfc85f1c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "08533354-a239-5471-9061-e641111f0318" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "105a6647-ac66-5d14-9009-9c3bf6e062ba" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "148eab23-774b-5394-bcb7-b73a2e2202a9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "1dafb84a-c35d-5257-b617-565526e04a95" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "25ec16ef-6742-563e-9353-bb1c0dc4a235" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "2816feb2-9115-50a7-bb5f-e8fdffd65c84" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "29879d55-4407-565d-bafe-5c86cba8b1d6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "2cbfeb47-5806-5574-8f2c-ebc83c1d3e48" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "3582ed7f-d910-5ce2-8302-063bf4d12a59" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "3599e882-1850-5b38-93f9-6fc623a90d6e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "39cfee0b-7e36-5965-8ab1-715141f09095" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "3e30088f-33ee-5042-8d12-89224cdf2211" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "40dbc288-d110-5f9c-926f-ed4026498066" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "415057ba-e597-5649-b8ac-a6dd204dcc72" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "43188953-0cc4-51db-a3be-f302344645af" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "486a7e29-b363-5536-9965-a341c8b035a5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "50469087-daec-5483-b0da-acdbd14a2c1b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "51e5097c-11b7-5640-bcad-00d7e16b3805" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "52bf84a4-ae0d-5b85-b936-11eb08052f43" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "535dc8fb-3667-5cbc-89e9-71131b139f69" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "584206c7-b3be-5e81-9213-76bd2166ed12" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "5845a3eb-7b1c-5bf8-a7aa-2bf7b1956e5d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "64937eb6-9b8b-5fae-b766-ea38c8ff548b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "6e096f6a-a56b-5238-8a21-320a3fff5dde" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "74b8d19e-7946-5ae3-96c2-718ce878e9e5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "8500d490-2856-5542-8dee-770603f76c64" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "86ea6a1b-1286-5af8-a844-db6e3e37846d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "887ef483-1321-5df6-8a09-b44f4906bc11" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "8dfa757f-8599-5183-b943-4abf380c700c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "9028ba88-b887-50e2-8e7c-ec31cce860d9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "9e1c361c-b6b1-5627-a373-9cc86a61e665" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "a1646fd5-b4f8-5bdb-9694-c2260f952537" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "aa7c851b-8c56-5ba6-8199-65ebcc98eff4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "ae10c384-7306-5354-b4a0-594d2e1cd814" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "b5da020d-0366-5ea5-8c0e-bff806ae50d1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "bf55ee38-34e9-5276-8274-6549de6748ef" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "c5b7386c-6ab8-5bd3-806a-19bd358656f9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "c733f5f0-0c03-57d2-a497-1553dc338050" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "cc1d9252-30e3-5df6-a53b-4cd09815298e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "d7f623cc-9aba-5dc4-9a47-5faffc8dda4c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "dd61a79f-69c9-50e3-8cf0-492ed796aa1c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "dddd4958-1e72-5471-8ebc-e44319ae5d15" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "df03b81a-a51e-5d45-8455-dc404f20e1a8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "e464f0ed-9c4e-5f6c-9932-d2f1372c8140" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "e83d3dd2-e5b9-50bb-a4e2-8634bac90500" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "eb892805-a5c3-51eb-9973-41799546412a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "f04aba18-4b16-53aa-8467-70e6d52ac632" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "f3747804-fa37-5ee4-8cb7-2cf9daa705ca" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "f4263bd8-52c7-5176-9c1a-148d8ba8f112" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "endpoint_uuid": { - "uuid": "fe6e9303-9941-5959-acec-e263ede31377" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - } - ], - "device_id": { - "device_uuid": { - "uuid": "4c3a1eab-ea04-59f8-82d4-f8fdec0b2e96" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R11" - }, - { - "components": [ - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "02d7b07c-7552-5c2d-b6dd-9b1aa07087e1" - }, - "name": "Fan#3", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "07207602-d029-5cc1-83af-4a243166c7bc" - }, - "name": "eth-1/0/12", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "0f9a7a09-eb52-5a70-a2f7-94fff68f4510" - }, - "name": "eth-1/0/3", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "0fb1b102-0ac4-5de3-8e16-117b2f5e12a9" - }, - "name": "Transceiver#9", - "parent": "eth-1/0/9", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "1343ac3a-c765-5c10-a04c-eb43e4093a46" - }, - "name": "eth-1/0/1", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "145ba61e-7112-5eec-b41c-91978b80d77f" - }, - "name": "eth-1/0/7", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "1cd5416f-a2cd-5615-9ab9-aae1560bf39a" - }, - "name": "Transceiver#3", - "parent": "eth-1/0/3", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "201b08ac-5107-577b-85c9-4cc742ece6ce" - }, - "name": "Transceiver#1", - "parent": "eth-1/0/1", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "22d12bd5-f2b1-545c-a2a1-58c59defc2e0" - }, - "name": "eth-1/0/26", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "4015a0f7-a90e-53fa-a8e9-e97d58854f24" - }, - "name": "eth-1/0/5", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"QSFP28\"", - "removable": "\"true\"", - "serial-num": "\"BH210809329 \"", - "vendor": "\"PRECISION \"" - }, - "component_uuid": { - "uuid": "40aaac2b-be53-530b-8fb9-4dc4240dad2b" - }, - "name": "Transceiver#27", - "parent": "eth-1/0/27", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "43423068-88f4-5780-9186-a840031a5562" - }, - "name": "Transceiver#20", - "parent": "eth-1/0/20", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "448f2156-8dc4-5fb8-9671-be17c6054b44" - }, - "name": "Transceiver#13", - "parent": "eth-1/0/13", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "50a04d98-5873-5e5a-b725-c41b04c91ea4" - }, - "name": "Fan#4", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "54186200-dac6-57cf-a84c-f2b1ebe4f5fc" - }, - "name": "Transceiver#7", - "parent": "eth-1/0/7", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "5655d66f-a362-57e2-9a9c-ab4bcdb863d5" - }, - "name": "eth-1/0/4", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "5beb5441-c807-59c1-8535-1c2eb4f9cee8" - }, - "name": "Transceiver#12", - "parent": "eth-1/0/12", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "5d3dafdb-43a9-5745-9d9e-b07cea2e719b" - }, - "name": "eth-1/0/13", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "61a96138-48de-56e4-bc8b-355967ca944f" - }, - "name": "Transceiver#10", - "parent": "eth-1/0/10", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"CRXT-T0T12A\"", - "empty": "\"false\"", - "location": "\"Power Supplies tray\"", - "manufacturer-name": "\"CRXT-T0T12A\"", - "removable": "\"true\"", - "serial-num": "\"19430061\"" - }, - "component_uuid": { - "uuid": "677ce193-eabe-5c99-be1d-87e5d8a735bc" - }, - "name": "Power-Supply#1", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"F1930015671 \"", - "vendor": "\"FS \"" - }, - "component_uuid": { - "uuid": "6838ea30-544e-5188-af7e-7a21e4bc4012" - }, - "name": "Transceiver#19", - "parent": "eth-1/0/19", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "728c024d-336b-5657-b0aa-6968704c534a" - }, - "name": "Transceiver#25", - "parent": "eth-1/0/25", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "75b6bf48-155c-5b2d-b94c-3a022d2ee7b3" - }, - "name": "eth-1/0/16", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "7bcb17de-7b39-53c2-a383-8ff2508c194e" - }, - "name": "Transceiver#21", - "parent": "eth-1/0/21", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "7fbe001d-9cd5-55cf-9b2d-1e2198c4d8e1" - }, - "name": "Transceiver#5", - "parent": "eth-1/0/5", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "810184e8-051d-5366-bb5c-ebed97590fb4" - }, - "name": "Transceiver#11", - "parent": "eth-1/0/11", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "81e12350-5582-5d28-8f89-8bec87ddfcf5" - }, - "name": "eth-1/0/21", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "8214b7cb-bbc3-5b69-805d-ed35128f796f" - }, - "name": "eth-1/0/6", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "8452da86-83c6-5f59-942b-0d59a08e60b8" - }, - "name": "eth-1/0/17", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "8669c5b6-c6a4-526f-bed1-9c0d24146739" - }, - "name": "eth-1/0/10", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "8a37750c-b5ef-510b-80cd-f4eb7d938b8c" - }, - "name": "eth-1/0/2", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "8db38f44-4e57-5621-9801-b7683b19ff56" - }, - "name": "Fan#5", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "8ec6edce-4522-597d-88c8-37697cb154fe" - }, - "name": "Transceiver#15", - "parent": "eth-1/0/15", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "8f802e29-1885-55d2-9122-9a1fffc3ec46" - }, - "name": "Transceiver#8", - "parent": "eth-1/0/8", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "90248895-6cdf-55cc-ba47-07208aec7561" - }, - "name": "eth-1/0/11", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"false\"", - "location": "\"Power Supplies tray\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "93c9b45e-7574-5fb6-b0b1-6574f823b46a" - }, - "name": "Power-Supply#2", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "946ea635-16d3-531e-ac0a-0f70f0d38e08" - }, - "name": "eth-1/0/20", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "96874de4-51d9-5c68-9700-042d4263cdd8" - }, - "name": "Transceiver#6", - "parent": "eth-1/0/6", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "99258fb4-22e3-5516-bc2e-c1f50f238d31" - }, - "name": "Transceiver#23", - "parent": "eth-1/0/23", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "a0166f5f-7f55-5880-9231-48624cda031c" - }, - "name": "Transceiver#17", - "parent": "eth-1/0/17", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "a52bac7b-0b70-5a5b-9066-99ed66e09cbb" - }, - "name": "eth-1/0/22", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "a67341ee-0313-58aa-b416-7d698d3877be" - }, - "name": "eth-1/0/15", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "a8b55643-e432-5a14-b34b-9f0824d1ae66" - }, - "name": "Transceiver#14", - "parent": "eth-1/0/14", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "ab710745-3989-5e4d-8b70-7048bd437d0e" - }, - "name": "eth-1/0/18", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"QSFP28\"", - "removable": "\"true\"", - "serial-num": "\"VE214710233 \"", - "vendor": "\"Arista Networks\"" - }, - "component_uuid": { - "uuid": "ab9c4611-0ad8-5f9a-8848-c97a8829e693" - }, - "name": "Transceiver#26", - "parent": "eth-1/0/26", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "b0451047-ff08-5bc6-8bc8-bf21b0d70049" - }, - "name": "Transceiver#2", - "parent": "eth-1/0/2", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "b3cdb834-c93e-5029-9dd6-21cb3696c84c" - }, - "name": "eth-1/0/24", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "b3ed689a-f997-59d6-9b3d-aff511a0e253" - }, - "name": "eth-1/0/14", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "b606eb8f-079e-5039-936f-e1fa8c8bbc22" - }, - "name": "Transceiver#24", - "parent": "eth-1/0/24", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "ba77d752-b621-598b-91e3-c80c13109fb8" - }, - "name": "Transceiver#18", - "parent": "eth-1/0/18", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "c28279e3-4dae-5af8-b8be-99ccc1cda2f1" - }, - "name": "eth-1/0/23", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "c2d9a8ff-a854-50d8-8550-dc1f60ef9261" - }, - "name": "eth-1/0/8", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "c9756d8f-a333-528e-99f5-fa8bbb73301d" - }, - "name": "Transceiver#16", - "parent": "eth-1/0/16", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "ce8079db-7521-592f-95bc-459a05b95483" - }, - "name": "eth-1/0/25", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "d470e8ce-f044-54f6-9dd8-05fad9bc0b34" - }, - "name": "eth-1/0/27", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "d4c56b9d-d131-55c5-8536-1aece8087ffb" - }, - "name": "eth-1/0/9", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "d637794b-b553-59b9-9d85-115d151e94e7" - }, - "name": "Fan#2", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "e2cd6e88-e40c-5f39-91f0-646fdb3f14fb" - }, - "name": "eth-1/0/19", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "eae9dff7-3885-5640-8348-c91ce05543c6" - }, - "name": "Transceiver#4", - "parent": "eth-1/0/4", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "f1568cd5-a694-57a5-b233-8d21f11fb5bc" - }, - "name": "Transceiver#22", - "parent": "eth-1/0/22", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"DRX-30\"", - "empty": "\"false\"", - "hardware-rev": "\"R0D\"", - "manufacturer-name": "\"DRX-30\"", - "mfg-date": "\"2020-01-09\"", - "removable": "\"false\"", - "serial-num": "\"731527XB1952198\"", - "software-rev": "\"21.5.1 (9799)\"" - }, - "component_uuid": { - "uuid": "f53bf8e4-17f2-5dbb-8247-5f42c97340bb" - }, - "name": "chassis", - "parent": "chassis", - "type": "CHASSIS" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "f8acb54f-f88a-59d0-9a59-f3460f19c706" - }, - "name": "Fan#1", - "parent": "chassis", - "type": "FAN" - } - ], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "10.95.90.126" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "830" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/chassis", - "resource_value": "{\"attributes\": {\"description\": \"DRX-30\", \"empty\": \"false\", \"hardware-rev\": \"R0D\", \"manufacturer-name\": \"DRX-30\", \"mfg-date\": \"2020-01-09\", \"removable\": \"false\", \"serial-num\": \"731527XB1952198\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#1", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#2", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#3", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#4", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#5", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#1", - "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12A\", \"empty\": \"false\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12A\", \"removable\": \"true\", \"serial-num\": \"19430061\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#2", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"location\": \"Power Supplies tray\", \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/1", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#1", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/2", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#2", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/3", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#3", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/4", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#4", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/5", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#5", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/6", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#6", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/7", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#7", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/8", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#8", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/9", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#9", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/10", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#10", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/11", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#11", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/12", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#12", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/13", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#13", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/14", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#14", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/15", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#15", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/16", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#16", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/17", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#17", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/18", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#18", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/19", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#19", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F1930015671 \", \"vendor\": \"FS \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/20", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#20", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/21", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#21", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/22", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#22", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/23", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#23", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/24", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#24", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/25", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#25", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/26", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#26", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"VE214710233 \", \"vendor\": \"Arista Networks\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/27", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#27", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"QSFP28\", \"removable\": \"true\", \"serial-num\": \"BH210809329 \", \"vendor\": \"PRECISION \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/1]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/2]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/3]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/4]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/5]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/6]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/7]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/8]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/9]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/10]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/11]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/12]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/13]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/14]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/15]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/16]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/17]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/18]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/19]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/20]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/21]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/22]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/23]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/24]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/25]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/26]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/27]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/1]", - "resource_value": "{\"description\": \"testing\", \"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/2]", - "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/3]", - "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/4]", - "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/5]", - "resource_value": "{\"description\": \"\\\"Conexion con Spirent\\\"\", \"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/6]", - "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/7]", - "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/8]", - "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/9]", - "resource_value": "{\"description\": \"\\\"Conexion con AGS_20-1\\\"\", \"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10]", - "resource_value": "{\"description\": \"\\\"Conexion con HL3-1-2\\\"\", \"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/11]", - "resource_value": "{\"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/12]", - "resource_value": "{\"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/13]", - "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/14]", - "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15]", - "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16]", - "resource_value": "{\"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/17]", - "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/18]", - "resource_value": "{\"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-2-2\\\"\", \"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21]", - "resource_value": "{\"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23]", - "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/24]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/26]", - "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/27]", - "resource_value": "{\"mtu\": 1500, \"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]/subinterface[0]", - "resource_value": "{\"address_ip\": \"10.95.90.126\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]", - "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]/subinterface[0]", - "resource_value": "{\"address_ip\": \"5.5.5.1\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]", - "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/5.1]/subinterface[0]", - "resource_value": "{\"address_ip\": \"192.85.1.1\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/5.1\", \"type\": \"l3ipvlan\", \"vlan_id\": 666}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/5.1]", - "resource_value": "{\"name\": \"eth-1/0/5.1\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/9.33]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.3.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"3000\", \"name\": \"eth-1/0/9.33\", \"type\": \"l3ipvlan\", \"vlan_id\": 33}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/9.33]", - "resource_value": "{\"mtu\": 3000, \"name\": \"eth-1/0/9.33\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10.41]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.4.41.5\", \"address_ipv6\": \"2001::99:4:41:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/10.41\", \"type\": \"l3ipvlan\", \"vlan_id\": 41}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10.41]", - "resource_value": "{\"description\": \"\\\"Conexion con HL3-1-2\\\"\", \"name\": \"eth-1/0/10.41\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.19.2\", \"address_ipv6\": \"2001::99:5:19:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 19}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/19.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22.111]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.2.1\", \"address_prefix\": 24, \"index\": 0, \"mtu\": \"3000\", \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22.111]", - "resource_value": "{\"mtu\": 3000, \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.55.1\", \"address_ipv6\": \"2001::99:5:55:1\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-2-2\\\"\", \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/26.357]/subinterface[0]", - "resource_value": "{\"address_ip\": \"5.3.3.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/26.357\", \"type\": \"l3ipvlan\", \"vlan_id\": 357}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/26.357]", - "resource_value": "{\"description\": \"Pruebas energia\", \"name\": \"eth-1/0/26.357\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/27.246]/subinterface[0]", - "resource_value": "{\"address_ip\": \"4.3.2.3\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/27.246\", \"type\": \"l3ipvlan\", \"vlan_id\": 246}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/27.246]", - "resource_value": "{\"description\": \"Pruebas energia\", \"name\": \"eth-1/0/27.246\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.996]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\", \"vlan_id\": 996}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.996]", - "resource_value": "{\"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.534]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.131.202\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/20.534\", \"type\": \"l3ipvlan\", \"vlan_id\": 534}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.534]", - "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/20.534\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/3.1]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/3.1\", \"type\": \"l3ipvlan\", \"vlan_id\": 101}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/3.1]", - "resource_value": "{\"description\": \"test A1_2\", \"name\": \"eth-1/0/3.1\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15.456]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.61.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/15.456\", \"type\": \"l3ipvlan\", \"vlan_id\": 456}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15.456]", - "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/15.456\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.476]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.65.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/16.476\", \"type\": \"l3ipvlan\", \"vlan_id\": 476}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.476]", - "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/16.476\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15.656]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.61.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/15.656\", \"type\": \"l3ipvlan\", \"vlan_id\": 656}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15.656]", - "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/15.656\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.676]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.65.49\", \"address_prefix\": 30, \"index\": 0, \"name\": \"eth-1/0/16.676\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.676]", - "resource_value": "{\"description\": \"subinterface_description\", \"name\": \"eth-1/0/16.676\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv_ACLr]", - "resource_value": "{\"policy_name\": \"srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv_ACL]", - "resource_value": "{\"policy_name\": \"srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[import_export_1_import_policy]", - "resource_value": "{\"policy_name\": \"import_export_1_import_policy\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[import_export_1_export_policy]", - "resource_value": "{\"policy_name\": \"import_export_1_export_policy\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr]", - "resource_value": "{\"ext_community_set_name\": \"set_srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr][65000:533]", - "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL]", - "resource_value": "{\"ext_community_set_name\": \"set_srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL][65000:533]", - "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_import_policy]", - "resource_value": "{\"ext_community_set_name\": \"set_import_export_1_import_policy\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_import_policy][65001:301]", - "resource_value": "{\"ext_community_member\": \"65001:301\", \"ext_community_set_name\": \"set_import_export_1_import_policy\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_export_policy]", - "resource_value": "{\"ext_community_set_name\": \"set_import_export_1_export_policy\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_import_export_1_export_policy][65001:301]", - "resource_value": "{\"ext_community_member\": \"65001:301\", \"ext_community_set_name\": \"set_import_export_1_export_policy\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]", - "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.1\", \"type\": \"DEFAULT_INSTANCE\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[OSPF]", - "resource_value": "{\"identifier\": \"OSPF\", \"name\": \"default\", \"protocol_name\": \"OSPF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[ISIS]", - "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[BGP]", - "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:996]", - "resource_value": "{\"name\": \"ELAN-AC:996\", \"type\": \"L2VSI\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]", - "resource_value": "{\"name\": \"5603d4487d23\", \"route_distinguisher\": \"65000:101\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACLr]", - "resource_value": "{\"import_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACL]", - "resource_value": "{\"export_policy\": \"srv_ACL\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[Movistar_4G_1]", - "resource_value": "{\"name\": \"Movistar_4G_1\", \"route_distinguisher\": \"65001:1\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[Movistar_4G_1]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"Movistar_4G_1\", \"protocol_name\": \"BGP\", \"router_id\": \"10.95.85.155\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[Movistar_4G_1]/inter_instance_policies[import_export_1_import_policy]", - "resource_value": "{\"import_policy\": \"import_export_1_import_policy\", \"name\": \"Movistar_4G_1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[Movistar_4G_1]/inter_instance_policies[import_export_1_export_policy]", - "resource_value": "{\"export_policy\": \"import_export_1_export_policy\", \"name\": \"Movistar_4G_1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[TestOscarVPN]", - "resource_value": "{\"name\": \"TestOscarVPN\", \"route_distinguisher\": \"65000:934\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[TestOscarVPN]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"TestOscarVPN\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[cisco_test_4_adva]", - "resource_value": "{\"name\": \"cisco_test_4_adva\", \"route_distinguisher\": \"65001:573\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[cisco_test_4_adva]/protocols[BGP]", - "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"cisco_test_4_adva\", \"protocol_name\": \"BGP\", \"router_id\": \"10.226.0.20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[cisco_test_5_adva]", - "resource_value": "{\"name\": \"cisco_test_5_adva\", \"route_distinguisher\": \"65001:673\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[cisco_test_5_adva]/protocols[BGP]", - "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"cisco_test_5_adva\", \"protocol_name\": \"BGP\", \"router_id\": \"10.226.0.20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[cisco_test_6_adva]", - "resource_value": "{\"name\": \"cisco_test_6_adva\", \"route_distinguisher\": \"65001:873\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[cisco_test_6_adva]/protocols[BGP]", - "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"cisco_test_6_adva\", \"protocol_name\": \"BGP\", \"router_id\": \"10.226.0.20\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_OPENCONFIG" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "06203096-d1a2-5042-94a9-3a45fce6fad0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "11956a34-12a2-5ea3-838b-d8a42eb23f4a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "11e2e022-baa3-5543-83a4-6e08670cb18f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "12462dbb-5500-5c72-aeba-f4b9ed747620" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "14a10230-b666-55bf-b699-6f7e13f3589c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "26b07b0a-1824-5fa2-997c-6f32a27bf806" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "3652e1aa-05fd-5fae-90fd-091066b3c50c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "36b3fc08-090a-53b3-855d-754b3bd5a135" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "3c641d5e-214a-5a55-a074-5318ba72fe8b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "41c07daf-e299-53f4-81c8-4d2b3b34ef8b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "428db709-3740-5c0c-8d2c-5e7b8bb17e44" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "61795f8e-5bbb-589b-9f36-546d2216dbc2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "6a1e223f-39aa-5285-9c1a-e8eee55ea8ee" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "77905600-b1dc-5920-9d8a-d2aaed83a1b1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "7a24fce6-5ef0-56d8-b301-c2afa8dd4437" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "7e7c4419-3c33-574d-83ff-9dff2efe106f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "91c0d600-96ce-5c15-a203-2c9f7977a84f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "9e9d1423-c2af-545b-b3c8-b331eae0be3f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "a3f73568-69a4-5f3f-8093-77817d788ecd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "b714b328-0141-5dc3-ae91-6da1cd1b5546" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "ca47b664-63c9-5ec0-952d-581720dffaee" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "d2177bf3-2ff4-5473-b5ff-e70038d0c0af" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "d5a1219d-e053-528a-8566-58b13e8f42b0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "dd3f7f32-afed-5f73-98ba-dd807abab1ea" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "e71e6809-dd43-5c1b-8cc8-cc9aba0b558b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "f8912999-562e-56a8-8d57-b8adb68f34bc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "endpoint_uuid": { - "uuid": "fbc2518c-71bd-55c4-9e73-d1a53eaeb9bc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/5" - } - ], - "device_id": { - "device_uuid": { - "uuid": "50f6fe52-9cbd-5e7b-b4ad-082a264c4452" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "packet-router", - "name": "R155" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/13\"\n},\n{\n\"uuid\": \"1/8\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/13]", - "resource_value": "{\"uuid\": \"1/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/8]", - "resource_value": "{\"uuid\": \"1/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:000]", - "resource_value": "{\"name\": \"ELAN-AC:000\", \"type\": \"L2VSI\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[1/13.000]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"1/13.000\", \"type\": \"l2vlan\", \"vlan_id\": \"100\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:000]/interface[1/13.000]", - "resource_value": "{\"id\": \"1/13.000\", \"interface\": \"1/13.000\", \"name\": \"ELAN-AC:000\", \"subinterface\": 0}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:000]/connection_point[VC-1]", - "resource_value": "{\"VC_ID\": \"000\", \"connection_point\": \"VC-1\", \"name\": \"ELAN-AC:000\", \"remote_system\": \"0.0.0.0\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "01f41ada-41d6-5357-b0b2-bda7c4fb6d51" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "0332bf40-60b0-572c-80be-5d7d81e463e5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "0818e669-ad3d-55f7-8168-b88762d9cada" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "0ebcfe23-90bb-5455-8677-266b42cd2f50" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "0f041b4b-4352-572e-a150-bc2530d52386" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "154053d1-2b20-5818-927d-573ec9d3b3c0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "17e35cb1-59ff-5668-a4f8-8d57c043f205" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "19b3e21c-4ae5-5938-be55-62e8c61ba895" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "2308c508-aa60-5f81-88a8-63b276785d91" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "3adb7588-9954-53e1-abdc-b167c142bac5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "3ec0ef7b-137b-5731-a03c-9acdd3d5b576" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "4120d2fe-234c-5642-ba08-601eff46a69c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "4b48114d-7a63-592a-918f-b7c28c347510" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "4ee649cc-2944-56d3-b0fa-e769c7f8d8b2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "541ebb94-c8cd-52fc-9bd0-1a3cd24ed42b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "569dabcf-f93c-5daa-8228-3f43c008c36b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "5adad74b-5342-590a-b1d2-4c932ddf132b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "658e53d1-b535-572d-8fa1-37a90909c488" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "724d2a0d-a296-5ebd-b897-fd422afb8705" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "73b7d900-62b7-5c04-a4e2-c4d94cd09fd4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "74d92d66-eb69-5c09-a33f-a0a21b83b4a7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "7864fe32-1fe1-5d75-8c4c-f9db539599b6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "7aa3f3be-4326-595e-90a9-91e3a5077fd9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "7ced749e-92a2-5af8-a507-2921dbead6b8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "89464148-2e36-51d0-b733-d1fe848cd771" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "8dccee7d-0327-5f37-b371-fd6f14d35cb9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "9706d7ed-2e96-52d1-a3cf-06c01e76d9f7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "971493de-a1a5-5bf7-b7c8-12bac8889fdb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "a6ac58c0-a8ab-5653-b777-cd18b6f8c039" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "a70dc146-0cbe-5874-8f5e-d4e35e2bc477" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "a93515cf-18d0-5baa-9e7d-b09497915b4b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "ae38224d-319b-5c8e-b6ca-996f52e84de6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "af89c4bb-3b12-52c1-a21a-8520cf6847f1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "b2920376-ca6b-5e40-9391-513fb2ce0119" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "b63b8f25-4be0-57fc-849a-d0408f9608d2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "bc3e34b9-c222-55ac-bc37-cfbe10a936a5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "c470e793-f6f2-5d39-9ca0-fc2ec990c51f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "cebb90ea-8531-5057-8ef7-bd71dde17051" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "d46ff624-2e51-5d8c-a7dd-13e17f2422c4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "d6687583-fa44-5eff-a88f-18f837064548" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "d8ba43ff-00d9-5470-b71a-4530f799ad3b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "dcd46dfc-f16d-5fd4-a03f-b66579218771" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "e22b02e6-824f-5798-9487-4bcd3da67e61" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "e23484ad-0b6c-54fa-ac90-550b30dd32fd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "e61abff6-775a-5b5d-9bee-aea6e4cda2c5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "e6cd6c26-5a5c-5a5d-973b-3b6fa7289c57" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "ed8f19ac-8da5-56b7-b80e-cc70105ee94a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "f373d220-1696-5bfd-8dc3-42a51c965523" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "f5c2fd04-67bb-53a4-a4b9-ed3de25ef075" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "f832a3d7-e5b9-50a5-aa71-ee6bc4f79e32" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "fefa1c8c-d48c-54da-8aea-f4b48ec0ecf5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "endpoint_uuid": { - "uuid": "ff0079d5-aa90-573c-889c-e7a04588b859" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - } - ], - "device_id": { - "device_uuid": { - "uuid": "68741528-2e94-5274-ab3c-fddcd8dc05ef" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R1" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/1\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/1]", - "resource_value": "{\"uuid\": \"1/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/14]", - "resource_value": "{\"uuid\": \"1/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "018ebdab-d158-5cb3-b41e-a160b55438d8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "0abc6b7e-c271-5d20-9168-4b3a37f8d4eb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "0b7986ba-a9a1-50aa-86e2-8e566045ccb8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "17946fd9-d9d6-5a42-ba22-5542cbe95669" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "17c94715-4830-5afe-9fbc-d3aab1618b77" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "18e8eeca-53b0-5138-80c0-9aebba321784" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "1d9475a5-2d10-5410-ab3b-001483516898" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "33329b80-6a4d-5003-9ef6-54b6dfa5bdd1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "3c7d4c16-9a8e-51b6-bc57-bb839c39cd69" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "4769458a-5717-5ca6-a1df-d08e23f2eb7e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "4e053b28-f30a-5c1e-8219-6cb68f7bc9d0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "5173ba44-28c2-58c2-85ed-500337f8e6d9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "528fead6-a24d-5061-bccb-69ed05260212" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "626aa4c7-2b0d-5e8a-869b-ce451b323a88" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "663b201a-4830-5cf2-a000-608ca396c23a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "675c5bae-8022-5711-8acb-c415906a01d0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "69fafaea-04c4-5c0f-ab49-2f66c5c31bb2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "6b7a971c-1657-58ca-b840-718c2f4488d5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "6c6081e4-fea1-5659-bab1-7a7ad469cb1a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "72328059-46ec-5166-8858-bfeab170cee4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "82369f59-7a85-58cf-ba02-a2a9b496276d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "85c94d08-5cf1-5156-9edf-e12f8cb4a1ea" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "91a70026-a9d3-5f04-a4bf-686ac921759b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "921fce8f-115b-5ff8-8d5c-f8a8d0e67ce3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "9504e17c-9336-570b-ae02-fffa57a59f04" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "951d45b0-d992-597d-a9e0-68d8a08dacb9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "953a65fe-f670-5080-b310-6fefa462b87d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "9a81ba59-0516-5829-8308-8df47e9fd0fa" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "a39fd537-dab1-5e6b-a51b-f5edd42d9f36" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "a81f26ad-a512-582a-8033-1141595470b4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "adcd30e3-b909-5f73-b91d-3bbdeda91d88" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "b0d6cfb2-6678-525c-aef6-85ae04edb441" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "b138d345-fe74-51a7-b045-f4eae2178f4c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "bb8b025e-0d73-5b6f-9211-8e1670dd08bb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "bc911f16-89e3-569c-bc11-8d11a6228d7a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "c128b66d-2397-5a10-9a5b-4ab39e45e6bd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "c555a773-6abd-5c93-89a8-b950bac9f566" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "c614ac4e-d59e-57ce-9538-e2725797c4fe" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "c7469b54-740d-5e6a-865e-2325c227bf75" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "c86042ce-c922-50ef-b4f4-812d794b5306" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "cc313af2-2818-51af-abb3-532845d6b962" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "cc4c4e97-6aea-5618-a140-b8e0b65f5b21" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "cda9d2dd-aa6b-54a4-9aa9-a0e86f8e5543" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "d2204b61-a05e-5299-b2c0-2743bdcf01ba" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "d6f6321a-226a-5db3-8da9-595ab28f021a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "d8b3a7d3-9f7e-5d9f-8f56-38d0f53f4621" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "d9f5a36c-17a3-513c-8c7a-bc9f2719f757" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "dbcac948-e8a0-50f1-886f-b025bf26467f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "ea6a3a32-5fd8-553c-b807-d8db3de32648" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "ec0c6f9b-ab4a-5b4a-9a68-7963afbe467e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "ee9ac774-bd73-5b9c-8e66-f5a6607a289c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "endpoint_uuid": { - "uuid": "f346aed6-30d5-56bf-a558-5bff5e258c04" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - } - ], - "device_id": { - "device_uuid": { - "uuid": "98604ff0-6b41-56df-aed1-3dad31530661" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R13" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/2\"\n},\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/12\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/2]", - "resource_value": "{\"uuid\": \"1/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/4]", - "resource_value": "{\"uuid\": \"1/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/12]", - "resource_value": "{\"uuid\": \"1/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "0100b911-3ff2-574a-bac1-b344e66ae4fd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "05fef69b-eea0-56f8-9e5f-ddedc2f59046" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "0728cdfa-7b47-58ef-b2fa-61e6bbbcaab2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "12001721-1dd6-5074-90f7-e0a7b983227f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "1f0a1c43-d054-5b9d-b482-23f634326c06" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "24185268-4a1b-50dd-a510-e7ec57986452" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "2450545a-71be-528a-8f42-d06b3531c754" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "261b5dbb-67b5-58b3-b14b-c5e06af58115" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "26ec78e1-b571-5fb6-a12d-c24e43711c3b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "2f7b882e-d663-58c0-92ec-28caa6c2a4f7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "37e4d7eb-d692-5648-8f14-0ccbf372fea6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "3dc52f5f-de10-56a5-8b7c-687d25e85aa0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "434d0a50-54b1-5ea8-aba9-5d911ab7816d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "4f0de7e6-0252-54f1-8ab9-eddcf47f8d5e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "5b13b5e0-b119-5438-bb99-41170cc1f905" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "65e93427-1cef-59dc-aafe-cde51d27394d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "69b8c328-0bfc-5639-a81a-dee2e40254f4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "6e687452-2589-590c-a956-fc8b7f0b3dc8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "705e7a7c-b993-5036-b3eb-3d0314a9a439" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "7454611d-5bfd-5565-8d34-0dc26be0785e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "79029371-552b-588c-a44d-0e7c23da3689" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "81092288-6bc6-57fd-976c-abf4231a7045" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "8575d5db-6606-5b53-9f4b-355653d468b7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "8633437b-bdbb-5853-a395-0a610c9e2a22" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "8a3b77b3-d99c-5cb0-bf07-2805dbe838c8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "8aba5b87-513c-50fd-86f1-379f3628c6ad" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "8f02a53d-26ca-508e-a170-9d3c1300d8fd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "93f116ed-8230-5a3b-82cc-3944953405bd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "9bf12ada-ddeb-578b-b262-1e38ac856efb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "a0d17fbe-5ebe-5f54-89c1-009af0463e91" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "a45246f2-ec5f-5183-9889-d49ec017c893" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "b69f7d95-d2e5-5346-99ff-8a2fbf436616" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "b6c626b7-7c4e-5cc7-9e40-d0e0116f0703" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "bb864631-103e-5ad9-a47f-6b76c370cf29" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "bfd53bc6-4342-5536-9c8e-d10497855dcd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "c0aa592e-73cf-56fb-83fc-83d6a04920fe" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "c0c7ab1a-ba3d-518b-a962-3d6c210af0b5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "c1103b9a-b4dd-568a-9161-c7558c408a29" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "c5baf78c-2228-5bfc-a019-caf22a919c0c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "c89c09b8-9438-5bf6-bfe8-bc6aad485e8e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "c9267f4d-8945-5e87-a4e9-74aa9c819288" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "dbd9519a-958c-5298-be43-09298210143a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "dbf6e995-d279-5a11-9dcc-5e8c3f6de39c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "dca802a2-aa18-5f77-90f7-ede63b736163" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "e256fd9a-f3ea-58f2-8510-40dd57bec7fb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "e92fb063-bdc2-5790-862d-1b1663ddeb7d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "ec53a22f-45c1-5a5c-930f-413caae0484c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "ee3b74b8-a3bf-5857-b454-a447f0d00b59" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "ef5a251d-d1a6-53e1-9b6e-00d1fd30e09c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "f0d1b697-08c2-55a9-b6ab-77f99642b746" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "f33d8256-88b5-571f-9776-8d72120508ba" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "f4e2c3c7-629d-54c1-b33b-2cca1d8c20aa" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "endpoint_uuid": { - "uuid": "f791b6ad-bbdc-516c-99bc-87ccc78379b6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - } - ], - "device_id": { - "device_uuid": { - "uuid": "a94061d6-ac13-575e-8f2b-ee2944a9cfda" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R6" - }, - { - "components": [ - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"11\"", - "physical-index": "28" - }, - "component_uuid": { - "uuid": "03b032f2-4b72-5896-9dd4-f13be2001e7d" - }, - "name": "eth-1/0/11", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"13\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "33", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "09584cac-c450-5f6a-8af1-e974dcd24ed3" - }, - "name": "Transceiver#13", - "parent": "eth-1/0/13", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"6\"", - "physical-index": "18" - }, - "component_uuid": { - "uuid": "097ede89-58fe-5145-9107-0d74361b199d" - }, - "name": "eth-1/0/6", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"", - "id": "\"2\"", - "physical-index": "10" - }, - "component_uuid": { - "uuid": "0e89add5-2723-5a87-a517-31ccfac5a655" - }, - "name": "eth-1/0/2", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"23\"", - "physical-index": "52" - }, - "component_uuid": { - "uuid": "104969a8-5b63-595f-85ab-9852bac1e107" - }, - "name": "eth-1/0/23", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"10\"", - "physical-index": "26" - }, - "component_uuid": { - "uuid": "1635baf3-692e-5501-bcf3-c4aeef2adaab" - }, - "name": "eth-1/0/10", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "id": "\"2\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "2", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "1a100a0e-ff91-59c4-8fea-687b42bc2340" - }, - "name": "Fan#2", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"8\"", - "physical-index": "22" - }, - "component_uuid": { - "uuid": "1e982e21-7771-5261-b224-0916548425e0" - }, - "name": "eth-1/0/8", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"3\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "13", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "22b8ef57-09d2-55d4-817c-df51270846dd" - }, - "name": "Transceiver#3", - "parent": "eth-1/0/3", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"", - "id": "\"26\"", - "physical-index": "58" - }, - "component_uuid": { - "uuid": "28d127f5-0393-59bf-a800-c52d4da9be8e" - }, - "name": "eth-1/0/26", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"18\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "43", - "removable": "\"true\"", - "serial-num": "\"P22224B0261 \"", - "vendor": "\"PDDG \"" - }, - "component_uuid": { - "uuid": "2c704852-101e-53da-9a41-bef2a545f38d" - }, - "name": "Transceiver#18", - "parent": "eth-1/0/18", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"12\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "31", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "3007bdde-d017-55d3-ad78-8d8c364e7cff" - }, - "name": "Transceiver#12", - "parent": "eth-1/0/12", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"22\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "51", - "removable": "\"true\"", - "serial-num": "\"F162250019 \"", - "vendor": "\"Edgecore \"" - }, - "component_uuid": { - "uuid": "304ca86e-8d75-522d-a762-4a67c25f037b" - }, - "name": "Transceiver#22", - "parent": "eth-1/0/22", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"2\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "11", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "31657863-fc8f-5137-9aae-a7b41ec89743" - }, - "name": "Transceiver#2", - "parent": "eth-1/0/2", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"10\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "27", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "3357d41b-5692-5139-9f39-9d0ed1f52b37" - }, - "name": "Transceiver#10", - "parent": "eth-1/0/10", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"15\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "37", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "3422d734-9ffd-54ee-83f8-745ee0020664" - }, - "name": "Transceiver#15", - "parent": "eth-1/0/15", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"21\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "49", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "37690040-0118-534d-ac42-a6ced5d75158" - }, - "name": "Transceiver#21", - "parent": "eth-1/0/21", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"4\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "15", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "38b28d0c-90eb-57ad-9a83-eeb1780084c2" - }, - "name": "Transceiver#4", - "parent": "eth-1/0/4", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"24\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "55", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "40de468d-b3fc-5410-ace7-db172c7f021b" - }, - "name": "Transceiver#24", - "parent": "eth-1/0/24", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"14\"", - "physical-index": "34" - }, - "component_uuid": { - "uuid": "45007027-e554-5a49-967e-548676ab465e" - }, - "name": "eth-1/0/14", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"26\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "59", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "4e106974-8c3d-59da-8d64-734a9e9baa20" - }, - "name": "Transceiver#26", - "parent": "eth-1/0/26", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"7\"", - "physical-index": "20" - }, - "component_uuid": { - "uuid": "53bf950a-8537-5d6d-82d4-17c419ad6457" - }, - "name": "eth-1/0/7", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "id": "\"5\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "5", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "5671c64a-0cdf-5f17-bf85-69fa9d38bd47" - }, - "name": "Fan#5", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"25\"", - "physical-index": "56" - }, - "component_uuid": { - "uuid": "5a3361ff-a070-50d8-b2b1-23c4b06eced8" - }, - "name": "eth-1/0/25", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"false\"", - "id": "\"2\"", - "location": "\"Power Supplies tray\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "7", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "5e51a804-860a-5309-b139-fa785ed2008d" - }, - "name": "Power-Supply#2", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"18\"", - "physical-index": "42" - }, - "component_uuid": { - "uuid": "6280b11d-ef2e-5d97-a339-76651dd6ff64" - }, - "name": "eth-1/0/18", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"", - "id": "\"5\"", - "physical-index": "16" - }, - "component_uuid": { - "uuid": "62cee201-2c2c-5d87-837f-5addb6ee5f75" - }, - "name": "eth-1/0/5", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"", - "id": "\"27\"", - "physical-index": "60" - }, - "component_uuid": { - "uuid": "63d9efd2-fe86-5261-abd0-0f06ba1c8897" - }, - "name": "eth-1/0/27", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"CRXT-T0T12A\"", - "empty": "\"false\"", - "id": "\"1\"", - "location": "\"Power Supplies tray\"", - "manufacturer-name": "\"CRXT-T0T12A\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "6", - "removable": "\"true\"", - "serial-num": "\"19330053\"" - }, - "component_uuid": { - "uuid": "64e6f03d-29b1-5db1-a0d5-6a177aab75a0" - }, - "name": "Power-Supply#1", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "id": "\"4\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "4", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "686f20b5-b1e3-510c-b7f8-2a7a4a5c6ae5" - }, - "name": "Fan#4", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"", - "id": "\"3\"", - "physical-index": "12" - }, - "component_uuid": { - "uuid": "6f2a5723-5955-5fd7-8e88-b4e84a2838f5" - }, - "name": "eth-1/0/3", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"DRX-30\"", - "empty": "\"false\"", - "hardware-rev": "\"R0D\"", - "id": "\"DRX-30\"", - "manufacturer-name": "\"DRX-30\"", - "mfg-date": "\"2020-01-08\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "0", - "removable": "\"false\"", - "serial-num": "\"731527XB1952144\"", - "software-rev": "\"21.5.1 (9799)\"" - }, - "component_uuid": { - "uuid": "70ae874d-0cf4-58d0-9e2c-dce947835e02" - }, - "name": "chassis", - "parent": "chassis", - "type": "CHASSIS" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"9\"", - "physical-index": "24" - }, - "component_uuid": { - "uuid": "7b36d66b-a7f3-52cb-a10e-85a23aeeb813" - }, - "name": "eth-1/0/9", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"25\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "57", - "removable": "\"true\"", - "serial-num": "\"F162250016 \"", - "vendor": "\"Edgecore \"" - }, - "component_uuid": { - "uuid": "8be56fb0-3b72-5f6d-ac0a-99945bd39e25" - }, - "name": "Transceiver#25", - "parent": "eth-1/0/25", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "id": "\"3\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "3", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "8d14a19d-c957-5bd8-b511-0d94ae05b7f8" - }, - "name": "Fan#3", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"15\"", - "physical-index": "36" - }, - "component_uuid": { - "uuid": "91bb1526-a701-5e79-9157-da0f97dab78f" - }, - "name": "eth-1/0/15", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"20\"", - "physical-index": "46" - }, - "component_uuid": { - "uuid": "973bc58c-cde5-5f3f-9354-d59f6c290eca" - }, - "name": "eth-1/0/20", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"19\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "45", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "9c3046a1-419b-57a6-9637-18ebb7141d91" - }, - "name": "Transceiver#19", - "parent": "eth-1/0/19", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"23\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "53", - "removable": "\"true\"", - "serial-num": "\"PYA2FD5 \"", - "vendor": "\"FINISAR CORP. \"" - }, - "component_uuid": { - "uuid": "9e76e34e-f337-5490-ae6b-d85f47137e3e" - }, - "name": "Transceiver#23", - "parent": "eth-1/0/23", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"17\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "41", - "removable": "\"true\"", - "serial-num": "\"CN04HG00183038D\"", - "vendor": "\"DELL EMC \"" - }, - "component_uuid": { - "uuid": "9ecb4039-5041-5f2a-9f94-6a51f29514e0" - }, - "name": "Transceiver#17", - "parent": "eth-1/0/17", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"16\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "39", - "removable": "\"true\"", - "serial-num": "\"030SBF6TH661789\"", - "vendor": "\"HISILICON \"" - }, - "component_uuid": { - "uuid": "a4d52f50-99e8-516c-83a6-879c13178504" - }, - "name": "Transceiver#16", - "parent": "eth-1/0/16", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"20\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "47", - "removable": "\"true\"", - "serial-num": "\"CN04HG0018P1452\"", - "vendor": "\"DELL EMC \"" - }, - "component_uuid": { - "uuid": "a5b44bbd-0f03-5177-bb9f-203d98af6add" - }, - "name": "Transceiver#20", - "parent": "eth-1/0/20", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"", - "id": "\"4\"", - "physical-index": "14" - }, - "component_uuid": { - "uuid": "ab46ecab-c0fd-5696-a616-e46ad0cd0960" - }, - "name": "eth-1/0/4", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"17\"", - "physical-index": "40" - }, - "component_uuid": { - "uuid": "af6aab36-090a-53db-ab06-183bb97edf21" - }, - "name": "eth-1/0/17", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"16\"", - "physical-index": "38" - }, - "component_uuid": { - "uuid": "b5862c5c-3087-583d-8603-787e5050637a" - }, - "name": "eth-1/0/16", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "id": "\"6\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "19", - "removable": "\"true\"", - "serial-num": "\"AZG28W2 \"", - "vendor": "\"FINISAR CORP. \"" - }, - "component_uuid": { - "uuid": "b6bc2e57-dc3e-519a-97f8-889e2bd849d0" - }, - "name": "Transceiver#6", - "parent": "eth-1/0/6", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"8\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "23", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "babb0fd9-70e3-5f5f-a4c4-3e6f40abfccb" - }, - "name": "Transceiver#8", - "parent": "eth-1/0/8", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"14\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "35", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "bbeb4cf8-3a3c-5ebd-a44f-c9b78a962114" - }, - "name": "Transceiver#14", - "parent": "eth-1/0/14", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"22\"", - "physical-index": "50" - }, - "component_uuid": { - "uuid": "bcc111db-cfdf-5444-9a89-a21bf906b1cb" - }, - "name": "eth-1/0/22", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"27\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "61", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "bd6b179c-8e3a-58a9-bdf3-3fbeba753dae" - }, - "name": "Transceiver#27", - "parent": "eth-1/0/27", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "id": "\"1\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "oper-status": "\"oc-platform-types:ACTIVE\"", - "physical-index": "1", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "bfe4a9b8-1a67-5883-b18e-1a7bfd46fca2" - }, - "name": "Fan#1", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"9\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "25", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "c0a8adc7-906c-521b-922e-40cb7018814c" - }, - "name": "Transceiver#9", - "parent": "eth-1/0/9", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"13\"", - "physical-index": "32" - }, - "component_uuid": { - "uuid": "c95eb4cc-a9f5-5d73-a564-04dda718059e" - }, - "name": "eth-1/0/13", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"1\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "9", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "d111f7a6-4810-56cf-99e5-57dd8343687b" - }, - "name": "Transceiver#1", - "parent": "eth-1/0/1", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"5\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "17", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "da3ed3f4-d21a-5cd6-9480-bea3c7adfcdc" - }, - "name": "Transceiver#5", - "parent": "eth-1/0/5", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"7\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "21", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "e251662d-582c-5956-9e6f-a4427c06c0cd" - }, - "name": "Transceiver#7", - "parent": "eth-1/0/7", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "id": "\"11\"", - "oper-status": "\"oc-platform-types:INACTIVE\"", - "physical-index": "29", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "e3e1c32d-298f-59f0-975d-bffdc1c344f9" - }, - "name": "Transceiver#11", - "parent": "eth-1/0/11", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"24\"", - "physical-index": "54" - }, - "component_uuid": { - "uuid": "e5e0812c-ff1a-5c1a-8b29-988bf5306be0" - }, - "name": "eth-1/0/24", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"19\"", - "physical-index": "44" - }, - "component_uuid": { - "uuid": "e9268a00-1b19-5c3e-a17f-3ffd08f08fd1" - }, - "name": "eth-1/0/19", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"", - "id": "\"1\"", - "physical-index": "8" - }, - "component_uuid": { - "uuid": "ea0eb62c-5928-50a6-b0c2-16bd35e97684" - }, - "name": "eth-1/0/1", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"21\"", - "physical-index": "48" - }, - "component_uuid": { - "uuid": "f1c80cb7-9ac4-5459-aded-ac008b6acadc" - }, - "name": "eth-1/0/21", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"", - "id": "\"12\"", - "physical-index": "30" - }, - "component_uuid": { - "uuid": "febcf719-09bb-5cb7-91a6-50ee7a9b5990" - }, - "name": "eth-1/0/12", - "parent": "", - "type": "PORT" - } - ], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "10.95.90.125" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "830" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/chassis", - "resource_value": "{\"attributes\": {\"description\": \"DRX-30\", \"empty\": \"false\", \"hardware-rev\": \"R0D\", \"id\": \"DRX-30\", \"manufacturer-name\": \"DRX-30\", \"mfg-date\": \"2020-01-08\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 0, \"removable\": \"false\", \"serial-num\": \"731527XB1952144\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#1", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"1\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 1, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#2", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"2\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 2, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#3", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"3\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 3, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#4", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"4\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 4, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#5", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"id\": \"5\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 5, \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#1", - "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12A\", \"empty\": \"false\", \"id\": \"1\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12A\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 6, \"removable\": \"true\", \"serial-num\": \"19330053\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#2", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"id\": \"2\", \"location\": \"Power Supplies tray\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 7, \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/1", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\", \"id\": \"1\", \"physical-index\": 8}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#1", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"1\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 9, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/2", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"2\", \"physical-index\": 10}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#2", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"2\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 11, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/3", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"3\", \"physical-index\": 12}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#3", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"3\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 13, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/4", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"4\", \"physical-index\": 14}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#4", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"4\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 15, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/5", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\", \"id\": \"5\", \"physical-index\": 16}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#5", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"5\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 17, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/6", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"6\", \"physical-index\": 18}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#6", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"6\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 19, \"removable\": \"true\", \"serial-num\": \"AZG28W2 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/7", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"7\", \"physical-index\": 20}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#7", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"7\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 21, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/8", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"8\", \"physical-index\": 22}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#8", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"8\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 23, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/9", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"9\", \"physical-index\": 24}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#9", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"9\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 25, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/10", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"10\", \"physical-index\": 26}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#10", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"10\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 27, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/11", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"11\", \"physical-index\": 28}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#11", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"11\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 29, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/12", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"12\", \"physical-index\": 30}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#12", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"12\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 31, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/13", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"13\", \"physical-index\": 32}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#13", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"13\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 33, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/14", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"14\", \"physical-index\": 34}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#14", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"14\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 35, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/15", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"15\", \"physical-index\": 36}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#15", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"15\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 37, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/16", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"16\", \"physical-index\": 38}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#16", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"16\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 39, \"removable\": \"true\", \"serial-num\": \"030SBF6TH661789\", \"vendor\": \"HISILICON \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/17", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"17\", \"physical-index\": 40}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#17", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"17\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 41, \"removable\": \"true\", \"serial-num\": \"CN04HG00183038D\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/18", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"18\", \"physical-index\": 42}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#18", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"18\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 43, \"removable\": \"true\", \"serial-num\": \"P22224B0261 \", \"vendor\": \"PDDG \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/19", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"19\", \"physical-index\": 44}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#19", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"19\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 45, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/20", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"20\", \"physical-index\": 46}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#20", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"20\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 47, \"removable\": \"true\", \"serial-num\": \"CN04HG0018P1452\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/21", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"21\", \"physical-index\": 48}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#21", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"21\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 49, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/22", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"22\", \"physical-index\": 50}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#22", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"22\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 51, \"removable\": \"true\", \"serial-num\": \"F162250019 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/23", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"23\", \"physical-index\": 52}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#23", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"23\", \"oper-status\": \"oc-platform-types:ACTIVE\", \"physical-index\": 53, \"removable\": \"true\", \"serial-num\": \"PYA2FD5 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/24", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"24\", \"physical-index\": 54}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#24", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"24\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 55, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/25", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\", \"id\": \"25\", \"physical-index\": 56}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#25", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"id\": \"25\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 57, \"removable\": \"true\", \"serial-num\": \"F162250016 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/26", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\", \"id\": \"26\", \"physical-index\": 58}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#26", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"26\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 59, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/27", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\", \"id\": \"27\", \"physical-index\": 60}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#27", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"id\": \"27\", \"oper-status\": \"oc-platform-types:INACTIVE\", \"physical-index\": 61, \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/1]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/2]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/3]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/4]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/5]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/6]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/7]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/8]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/9]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/10]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/11]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/12]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/13]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/14]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/15]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/16]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/17]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/18]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/19]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/20]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/21]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/22]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/23]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/24]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/25]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/26]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/27]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/1]", - "resource_value": "{\"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/2]", - "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/3]", - "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/4]", - "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/5]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/6]", - "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/7]", - "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/8]", - "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/9]", - "resource_value": "{\"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10]", - "resource_value": "{\"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/11]", - "resource_value": "{\"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/12]", - "resource_value": "{\"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/13]", - "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/14]", - "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15]", - "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16]", - "resource_value": "{\"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/17]", - "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/18]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19]", - "resource_value": "{\"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21]", - "resource_value": "{\"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23]", - "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/24]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/26]", - "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/27]", - "resource_value": "{\"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]/subinterface[0]", - "resource_value": "{\"address_ip\": \"10.95.90.125\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]", - "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]/subinterface[0]", - "resource_value": "{\"address_ip\": \"5.5.5.5\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]", - "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10.42]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.4.42.5\", \"address_ipv6\": \"2001::99:4:42:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\", \"vlan_id\": 42}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10.42]", - "resource_value": "{\"description\": \"\\\"Conexion con HL4-2-2\\\"\", \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.125]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.16.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.125]", - "resource_value": "{\"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.20.3\", \"address_ipv6\": \"2001::99:5:20:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 20}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22.111]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.4.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22.111]", - "resource_value": "{\"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.125]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.61.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.125]", - "resource_value": "{\"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.55.2\", \"address_ipv6\": \"2001::99:5:55:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.996]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\", \"vlan_id\": 996}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.996]", - "resource_value": "{\"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.533]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.12.12\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\", \"vlan_id\": 533}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.533]", - "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.534]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.17.47\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\", \"vlan_id\": 534}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.534]", - "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_POLICY_BGP]", - "resource_value": "{\"policy_name\": \"MY_POLICY_BGP\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_AS_PATH]", - "resource_value": "{\"policy_name\": \"MY_AS_PATH\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_STANDARD_COMMUNITY]", - "resource_value": "{\"policy_name\": \"MY_STANDARD_COMMUNITY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_EXTENDED_COMMUNITY]", - "resource_value": "{\"policy_name\": \"MY_EXTENDED_COMMUNITY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_POLICY]", - "resource_value": "{\"policy_name\": \"MY_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv_ACL]", - "resource_value": "{\"policy_name\": \"srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv_ACLr]", - "resource_value": "{\"policy_name\": \"srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[RT_POLICY]", - "resource_value": "{\"policy_name\": \"RT_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL]", - "resource_value": "{\"ext_community_set_name\": \"set_srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL][65000:533]", - "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr]", - "resource_value": "{\"ext_community_set_name\": \"set_srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr][65000:533]", - "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY]", - "resource_value": "{\"ext_community_set_name\": \"set_RT_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY][65001:456]", - "resource_value": "{\"ext_community_member\": \"65001:456\", \"ext_community_set_name\": \"set_RT_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]", - "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.5\", \"type\": \"DEFAULT_INSTANCE\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[OSPF]", - "resource_value": "{\"identifier\": \"OSPF\", \"name\": \"default\", \"protocol_name\": \"OSPF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[ISIS]", - "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[BGP]", - "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:996]", - "resource_value": "{\"name\": \"ELAN-AC:996\", \"type\": \"L2VSI\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]", - "resource_value": "{\"name\": \"5603d4487d23-NetInst\", \"route_distinguisher\": \"65000:533\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACL]", - "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23-NetInst\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACLr]", - "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23-NetInst\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[TestPablo]", - "resource_value": "{\"name\": \"TestPablo\", \"route_distinguisher\": \"65000:934\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[TestPablo]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"TestPablo\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]", - "resource_value": "{\"name\": \"VRF_TEST\", \"route_distinguisher\": \"65000:11\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/protocols[BGP]", - "resource_value": "{\"as\": 100, \"identifier\": \"BGP\", \"name\": \"VRF_TEST\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"VRF_TEST\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"VRF_TEST\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/inter_instance_policies[RT_POLICY]", - "resource_value": "{\"export_policy\": \"RT_POLICY\", \"import_policy\": \"RT_POLICY\", \"name\": \"VRF_TEST\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]", - "resource_value": "{\"name\": \"5603d4487d23\", \"route_distinguisher\": \"65000:101\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23\", \"protocol_name\": \"BGP\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACL]", - "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACLr]", - "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/acl/interfaces/ingress[udp][oc-acl:ACL_IPV4]", - "resource_value": "{\"id\": \"eth-1/0/16.125\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_OPENCONFIG" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "17d02669-86db-543e-b91b-f6159af1a6a0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "1b988154-78ec-5da2-b174-39898da62244" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "1dcec577-ac69-53e4-a72b-f5f1871043d9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "224fb033-10b8-55a8-8f52-7234b1327833" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "2448396a-ff1d-500c-8c51-993a138cf5dd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "29a8fe73-556b-5410-9a61-750846fcfe54" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "2afbfd30-8777-57e9-abae-9172f6df384a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "2f5bfa77-d0c8-548b-8444-7455276efebb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "3a401361-75ef-591f-8ff3-23505170735a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "468107a5-0bcd-537b-b60a-6c191cd148e6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "480037b4-e62a-5ab5-abf2-0a3c53db288f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "4aa2606b-85de-5366-85ce-77a2ed3b74ee" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "4e86de78-3926-5050-aae8-0de5c27461ba" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "5812a4d9-dff2-5e30-9abc-a5060767c7f3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "6fb6e6f9-ce33-5be3-9512-fdaebf84c6c3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "798e885d-2ec5-549b-8e61-4215a1b0f6ec" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "851bdc12-af64-54d3-af8d-42e433810dfe" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "90a511d8-39e5-541e-bc05-c32712c89ac5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "a5eeaebb-6583-5204-8ba2-e9ddc03bc2d3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "acb2cf16-b7c5-58bd-bffc-a76298691da2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "b18c0cfd-c702-50da-b85c-c37f5025518f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "bf308228-ecab-5a13-bd60-33560173306f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "ce7a28be-fded-5bde-af47-889798e8658b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "daebc390-ab9b-52a4-b83f-5211b6a85df1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "dfdebf8e-2ef5-5f6f-8ce3-005d5ef537d1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "e2eda1cb-5771-5b3f-bf48-a3ee9f426424" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "endpoint_uuid": { - "uuid": "fdcce611-b4e1-5c2c-97df-89cbb45e472d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/8" - } - ], - "device_id": { - "device_uuid": { - "uuid": "a97ed48c-8dc0-599c-9ca7-c3ab0aac6a6e" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "packet-router", - "name": "R125" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/1\"\n},\n{\n\"uuid\": \"1/7\"\n},\n{\n\"uuid\": \"1/9\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/1]", - "resource_value": "{\"uuid\": \"1/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/7]", - "resource_value": "{\"uuid\": \"1/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/9]", - "resource_value": "{\"uuid\": \"1/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "037f7430-f5ab-5053-ac02-de41457c5a17" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "0a379200-ae33-5577-be8a-d60f45309d00" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "0a762890-e214-58b1-9228-57ec345030fc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "154fcd4d-73e7-54f1-9c05-47693f3faa01" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "1552ae79-9b32-5494-9c8e-db27d155abaf" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "15a1ac97-a829-5c29-a8a2-91caab138138" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "19e45693-9e93-5b36-a76e-f7fcfdf90ce2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "268d6497-c646-5db4-a520-8a17065ebabc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "364b4d72-cb11-59fb-9ba3-4fcdcbf1cfcd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "37ccf393-ba82-51cf-8ee8-b16b8269b1e4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "386e4b93-4bd3-5ff6-b225-9324ef5f71f9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "39bda16d-fce5-58c8-9045-7a7e5c4d09ce" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "3dc6c727-c503-52bd-ad1c-fb96f5dbd708" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "41f9da47-4836-5eed-b1fd-bd91f68ee073" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "44029518-4863-557d-9541-dbcbcdd85640" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "4b074c39-cf2b-53bc-8db8-f587f3802647" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "52578371-33c9-5911-b0c4-eaa23f3a4e6b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "52a67a14-0196-502a-9c37-54c5dd2833d4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "5932aa92-75ad-55f5-9e0d-f0af02ad365c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "5ba0880c-8163-5db9-86e5-af27820a531e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "5c86108b-4b64-5da7-93b2-52a318a43713" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "5d47d75a-0722-56b9-888f-74dfa117fb61" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "60ffcfcb-83fd-5c9e-ac47-81145221ac66" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "650d5af8-50bf-5300-a7da-4ea6a451caf5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "6a2b55a3-6fe2-5164-a804-dff2715c8562" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "6b552eca-f001-5bca-91e5-dcbe448bbf94" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "6d31fee2-29cc-5cbc-a6e0-a8f0ce5fdba9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "708b2080-5c74-5e7e-ba58-44cae1ca7a2a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "788ca42f-7735-549c-aa3a-8d250c27e272" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "7d77f735-0bd7-5e72-8816-ced7a60f5dc8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "94a83c56-7970-5df7-9e3b-bc9f6c228aac" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "97d7fc2c-42f2-580a-ba26-9da11f079bd5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "97fe1ccd-70f1-5459-a31a-f16c173dc230" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "98c9fa61-11c7-5374-8e36-2c8955d172d5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "a8954fa0-60dc-5249-848d-4b44f73bd335" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "abac7bd2-30fe-535d-a48a-6ebb67d43476" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "ac5d6716-1be8-560e-a0c7-f8c8a198d417" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "baaedd5a-580b-5a61-89db-6803da9ee8b9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "bc92b7f6-fc30-5f94-b91b-0a92fd66475e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "be647b29-9138-50ca-99e0-1446fcbc3012" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "c5d48627-6be1-5793-8cde-267758ac5eb1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "ca7a06e1-e71b-58ea-ba35-eb710ef5f8f5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "d1779939-a1b2-55bd-98cf-d59da0fa5aa6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "d55e10ad-2953-5704-a880-e2f21b55c0cd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "dd924310-5dbe-5fa9-a591-b348ca37e04b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "de5ea8e9-2d02-5d19-9e2b-d6c9d43db1a3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "e5a77c27-31c3-54a9-87f9-0d6d179f2fc5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "e98055ca-c229-5dfa-91ba-aeaca70f4871" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "eaeab62e-23c9-5a28-86f5-988e3d8d16e1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "ec0ed2ed-3f0e-51cd-a077-9f26f946cd72" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "f26a1731-2a94-5a8a-8fdc-a5d47bbae721" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "f4f834aa-c147-538e-8610-fbd8186914fc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "endpoint_uuid": { - "uuid": "ff15c130-3b49-5f8a-bba6-9fcb1777570f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - } - ], - "device_id": { - "device_uuid": { - "uuid": "b193099b-612f-5592-90f5-9e33bbaa5892" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R8" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/8\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/4]", - "resource_value": "{\"uuid\": \"1/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/8]", - "resource_value": "{\"uuid\": \"1/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/14]", - "resource_value": "{\"uuid\": \"1/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "0100690e-3895-52c1-8a21-7b3f60c7f66c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "079a99ac-c1c3-5c5c-9c62-37aa2898cc1b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "0cc7df0f-9f6c-509f-a53c-69eaf93f6806" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "146f9064-0115-5c16-8d03-6baf42e5c3e4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "19496a31-be7c-57d9-97e7-801eb3d95904" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "1c871316-106b-5f38-85fd-20fdb63b0d6b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "1f036258-17bb-52af-9a22-45d2bbe2396e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "2068cd00-bc64-5708-9e1c-571ab79b48e2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "212753f8-a4f7-50c6-9664-847cf74514e3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "28bf479f-dcb6-5688-ae2a-b2ee5bef5e0e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "2be53199-b9dd-5d70-b5d8-696a18196cab" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "2d084e2f-2519-51d4-8c46-3e85ac9d5f72" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "354aceeb-5ef3-562c-9361-f697da38304c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "45fc7226-0545-585a-966d-6f66297f9e44" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "615fbf3a-b9e5-5257-af89-f0f94fa29543" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "639a020e-1b97-5ebc-827e-764667418879" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "678c17de-c52a-56ac-bac8-6b4ba43e4401" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "781f25f0-a6aa-50ff-9c21-b5041e90f2dc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "80f5d49e-df94-562e-ae4d-acb1033f4e14" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "84f6d7c0-0429-560e-9272-6ad942c02764" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "85e3af6f-d013-55d7-b669-00641b936fcd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "85fa2e32-1a9a-54e1-9e10-323052ebd15b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "8c9fc634-7618-5b13-a19d-c94dc5b6f869" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "8f798e45-b64e-5f0c-a0d3-6b722bd441ff" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "962c3886-73f6-51b2-983b-3dfa7d56a7f4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "9f767898-eaea-52ff-90b4-7d81d765402a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "a42337bf-7831-5f6c-8904-537e10f07f95" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "a7eacb1f-27b3-59ca-b9fd-d46856edd254" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "a8252100-ed12-5285-86d5-3952e9ac5889" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "a8b9e525-7a34-5995-9433-0503c352b842" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "aa706ca3-6a74-5b13-8c85-80424c29ae1a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "aa8169c6-06ec-503a-81f0-9cb9fa811ef4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "aa8d4e36-ebec-5ffe-aa02-69522cd06081" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "ac836b09-bbe7-5598-a900-9dfa1b2134bb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "acf56414-a2f0-5e0c-a7b3-d3086eed6e44" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "b3818e0c-9837-5a24-9621-0d3f4ff1f531" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "b72e8207-9864-5be9-8137-dedae06e2ad6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "b95e07c2-c5b9-50f8-ba97-22278550040a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "c73cf5dc-9cae-53cc-8457-a7b9df417275" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "cb427ac2-10d8-5ee3-987a-b12dcb3244b6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "cef2a510-7d30-53a4-a512-c84f37bc4318" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "d149af55-6b39-5ac9-8cfd-e61d5a31ef43" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "d2d84901-1b9f-5432-ac64-9d6cc23d5250" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "d61bc584-a267-556a-a2fa-39dd8f6d62a5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "d8d6ef46-6890-5c4c-a3f7-5914e6e85317" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "e0e44a18-328b-5296-810d-a0be0f5dad42" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "e10afe74-90da-5675-9b9d-8179b5921c3b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "e51d12e5-d4a2-5930-8595-c784c888ef2e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "e75cde7d-83db-566c-a8c0-0bdbd79b650d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "ef57d42c-165f-5c30-adea-be1d47b1c007" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "f4d123a2-094f-5d32-a051-2a7ec4ef3e29" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "f9332cb6-604e-5bfa-81ce-5e2fd9aa0ef2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "endpoint_uuid": { - "uuid": "f93e41a9-e384-5eb3-ac73-02a62b747123" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - } - ], - "device_id": { - "device_uuid": { - "uuid": "bc58922a-4cc2-59e9-bfb1-3bfe76023ba5" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R7" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/5\"\n},\n{\n\"uuid\": \"1/6\"\n},\n{\n\"uuid\": \"1/14\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/5]", - "resource_value": "{\"uuid\": \"1/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/6]", - "resource_value": "{\"uuid\": \"1/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/14]", - "resource_value": "{\"uuid\": \"1/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:000]", - "resource_value": "{\"name\": \"ELAN-AC:000\", \"type\": \"L2VSI\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[1/5.000]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"1/5.000\", \"type\": \"l2vlan\", \"vlan_id\": \"111\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:000]/interface[1/5.000]", - "resource_value": "{\"id\": \"1/5.000\", \"interface\": \"1/5.000\", \"name\": \"ELAN-AC:000\", \"subinterface\": 0}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:000]/connection_point[VC-1]", - "resource_value": "{\"VC_ID\": \"000\", \"connection_point\": \"VC-1\", \"name\": \"ELAN-AC:000\", \"remote_system\": \"0.0.0.0\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "0084615d-9ee8-5c20-9d90-b39919d29e41" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "0b2a9589-abc6-594b-82ec-9f78abe62ee8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "13bb84e0-840c-5c33-a49c-90b6a3ed42e7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "13f577e6-22d1-5e74-87bf-a4637070ca66" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "1db66d37-657a-5e6f-b041-8b06b98d7acc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "1f9dda95-ce9c-521c-b266-78ef2fa7f4c2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "22aa739b-9c97-5b16-8b0a-b20e23b99c3f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "28a1229c-6605-5887-9b5d-71cc797735a8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "2d0dc070-f7c4-57ae-b591-772e52a9c6ad" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "31d345a2-79fe-57b1-a5d0-7f6cc2b9ce7f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "357f8504-89bc-5de7-b9ca-2c844902c433" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "381bac1d-e967-541a-919d-c0bcaafe42b4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "3a313405-5a41-5c76-a320-8197740a098c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "3db0a124-c38e-5618-ac0a-2fca33b384f2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "41291f42-94ff-55f1-a497-5197d7d8cdb5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "43b0c971-7239-5345-b079-d590582f83c2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "45081e48-0505-513f-b1f0-6b21a5005b44" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "4eeb9876-4ef8-5e33-9711-bf317bc8d432" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "506d8a04-f42c-50a6-9105-593feb3e12fa" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "5534e9bb-eac0-59b9-a5c7-3e6991a93bed" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "55c1c4ae-6430-5a1f-95df-05cf1c6b92e8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "566b9c46-d7fd-5d84-99e0-1f60b0efc4a3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "5ce767d8-2c33-54cb-bfad-6b034a806f4e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "675c0b5c-430b-51f3-9af6-f6aea569332b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "7011cd9a-c0ed-587f-a5ab-12574c3be5c3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "7aaf3ea9-1599-5494-9505-8a4e051b8c6c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "7ac6bbaa-8a09-57d4-a0b1-855725ba4182" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "8ae1c361-f3d5-56b6-acb9-c895c7a3cd88" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "8ec7d9ca-831b-5915-aa4b-dc34aec0c410" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "9298b921-f122-5eee-9056-87a20e26b60f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "966cd010-8153-5cec-aa23-27a71d3ff751" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "97ac3b56-cf17-501a-9036-69a13ca765a8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "9add37aa-b443-5401-a462-6d445ea932d2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "9bcfa964-bb10-5236-84a3-df5b164abbf0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "9e14fa09-52ca-557d-bf16-cf42e0389d1f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "a7d9714c-72fb-5b72-930c-8d2b6784b283" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "a8cf2848-336e-5c46-ba54-0bf5ba3f7f18" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "adce05cd-a9df-5e82-aa1b-ec5e39c8bffa" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "ae22cace-e779-53ee-b62f-f1d6e45b7f7e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "ae708852-0637-523a-80c5-f7189203e6eb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "c0eb57ad-3794-5074-8719-3b9e60887457" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "c3431acf-ec73-54b2-8819-306361e42c77" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "c87fa96a-4c63-5a04-b056-6e64bb6c852d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "ca171433-75f4-57b8-94f5-13f3427df375" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "d5ad7003-2f5b-5bad-9f13-786361255217" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "e3f124b0-29d2-5a95-a756-0464a58a9874" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "e63d7bc0-289f-5c7b-82f0-5e3144ec6b79" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "e6e19828-37d4-55fc-bac8-d82923a1e757" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "e9f29af9-a987-5758-91cf-1d145522f2ea" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "eae2b879-812a-5d03-945f-9a459ee46ffa" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "eeaa592c-3593-58b6-a074-4b6f24b719be" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "ef6f5552-25a5-5a47-97ff-ae9e6790d1ff" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "endpoint_uuid": { - "uuid": "f3720b6f-2a59-5a60-98c9-cf91109b317b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - } - ], - "device_id": { - "device_uuid": { - "uuid": "c944aaeb-bbdf-5f2d-b31c-8cc8903045b6" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R2" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/4\"\n},\n{\n\"uuid\": \"1/6\"\n},\n{\n\"uuid\": \"1/10\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/4]", - "resource_value": "{\"uuid\": \"1/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/6]", - "resource_value": "{\"uuid\": \"1/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/10]", - "resource_value": "{\"uuid\": \"1/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "03eff8fd-7cd6-5c17-bc04-027d8184f9e8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "09e10417-951d-5c7c-91b1-9dce994f3d58" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "10de7378-62ba-5b11-b9de-f74142827224" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "128709cf-0fed-50ad-9329-0bbcc4e28d61" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "13ebd77c-55a7-5a40-a5fe-442f7b2b1071" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "14e44da2-a3bc-5c98-9b44-4275f0be6484" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "1e4cf7b4-60a4-5a13-aef1-5399d3d062b6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "20ab8e79-1099-5cb1-a957-2dc9889f14e6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "224647f3-683b-5cfe-b641-21cb1cd9cc1a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "2cd45b0a-36a6-523a-8b6e-7a3deb67de37" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "3cb074d0-5ee3-5790-b9f9-9f76c3aea143" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "3f554f40-68a3-5b8d-9979-658a11970cb5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "432abfe6-927c-5085-9111-3a95f9ebd218" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "49d88e1a-b91a-5fda-bcdf-930b69c25787" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "4b3d6bbd-3ea3-56a6-8b50-5c152cba93a5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "4d5956bc-8a98-52b2-a1b2-b6a172a85314" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "5e25b4b5-fe42-548c-a839-5edd214f8e76" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "6756b6f2-0157-5084-afa8-d5fa6993ad4c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "68af6907-fbc3-5bc4-8207-2dcc7a87a1fd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "712bff5c-b7ad-5871-9462-0a25f5c5d20b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "71662469-a8ee-5764-891a-420f25086c15" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "7a3235cd-d8dd-5be4-a984-710906843dd4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "7ed377cc-7df6-5922-9b4e-7d65ac5fe442" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "812c93a6-95ae-550f-82d3-7b12914b0f74" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "83479b0e-929d-5be7-a12e-ffcb91eddf64" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "8496f85b-7e4e-59be-b467-2983d2069c1e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "8addb2d0-3f3f-5a06-bdb6-08fdb572555d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "98479548-4d3a-57e0-854e-badb61675c0e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "9e01a7c7-b408-5f36-9b8c-1faa87d66730" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "9f1fecc8-c29e-539f-803c-0b491bb89f80" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "a1383e4c-97c2-55c9-9bcc-4bec854d81aa" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "aa08da93-23dd-57ed-82c2-669cd77c9c35" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "aeacd3d9-b961-51b7-b26b-14f81b9afca0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "b441b8ab-da87-5fca-87f1-869b7a716e04" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "b5ab414c-a510-5ce5-91b0-82f3c67bdc1f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "bf2bca6f-f662-5f4a-a690-f5b4438ba86f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "c1808b35-b562-5bd6-ab08-e3b8905b8f2d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "c34823f6-ca28-58e4-8517-fd8c99ce0b6d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "c5c40c28-1b6f-528e-afec-d1326eca4cc8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "c6437ab5-6e5b-5f5a-8ea6-5b901f09b43c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "d1deef50-0782-5feb-80ba-78ed6d9a6e3b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "d2ce8b55-d1d1-5e97-965a-5ba607ae33fc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "d35343cd-2d91-5e8e-9560-ad439996c5eb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "d471ae0a-b7c3-5883-a597-bf076b9b335c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "dc979840-e6ef-5a4c-9a79-ed52e2c8069c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "dd1b9b1d-51b3-5a97-96e3-5c83d739db98" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "e54fa1f6-08ec-5623-9235-70e977d9d287" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "e820464d-7d21-5fa9-95e4-94e9e2b69d7a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "e8ffce6a-0bd2-5939-b923-de9e883f8d6e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "eb934cc2-89aa-54ae-8116-6c28f3d25516" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "f30f66e0-9f39-584e-ae9e-5657df5f7abc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "f81506a6-48fb-5b91-882c-3fb508f7f477" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "endpoint_uuid": { - "uuid": "fa42214f-5919-5e4d-81bd-62873f9fae53" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - } - ], - "device_id": { - "device_uuid": { - "uuid": "cb20a7ad-5b7f-54c0-869b-5a2aa6c9ea5c" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R12" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/5\"\n},\n{\n\"uuid\": \"1/6\"\n},\n{\n\"uuid\": \"1/7\"\n},\n{\n\"uuid\": \"1/9\"\n},\n{\n\"uuid\": \"1/11\"\n},\n{\n\"uuid\": \"1/12\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/5]", - "resource_value": "{\"uuid\": \"1/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/6]", - "resource_value": "{\"uuid\": \"1/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/7]", - "resource_value": "{\"uuid\": \"1/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/9]", - "resource_value": "{\"uuid\": \"1/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/11]", - "resource_value": "{\"uuid\": \"1/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/12]", - "resource_value": "{\"uuid\": \"1/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "05661ed1-3e9d-5fa0-9373-9ed4eb5ab3bc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "11c69adf-559e-5534-9233-bf70df2748cb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "13d6baa1-009e-5abb-a510-0046213c49d6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "18b7ea84-9a40-5969-9663-7c5a5cf12e37" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "2131c85a-44e4-5cdb-8651-20ab0736117c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "24210426-b86e-53c1-a3fd-b143eadc9717" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "27dc9cd6-4375-5067-9be2-904cd283cec0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "2b76b851-ebf9-5e90-adde-67d4f86f722c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "2f972610-1dd8-578b-b724-ab9158ef8f7e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "30fe8a90-681c-5964-918d-5fa0ba83183d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "33b1e706-e68e-5b1b-97d7-ed32f40e64b2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "39643748-adf4-5258-9603-3987f4ef9a4e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "39985bbe-3fa1-5827-b010-3cb67fa68067" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "3e15b4df-5b29-560f-99e1-961f88512c77" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "4114ad6a-8488-530a-8149-3d9c08fd2aea" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "47bb825a-892d-5764-804c-ba82fe4a1ef6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "58792e02-ec97-53db-880e-7da6e8acd9ba" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "5b934da6-2f79-55de-b592-48b86e336b28" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "5dd48c55-cc16-53d5-91ad-90d405964d13" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "693fce09-3d31-5efe-9d93-274cb3f5e981" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "7349ec90-121a-5a0c-bb17-ae34ae0b1243" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "78552442-91f4-5479-986c-97e69defb056" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "7b82279e-791c-5a52-ac86-8c8198922e59" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "81e87ce4-62cb-59f4-b2d7-5165038a4b6e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "828fee99-f0ff-5fca-b531-97f8e0e14a51" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "846d1ffa-c868-5000-90cc-2f5749b0c553" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "84faa49c-e3cc-5d60-9599-f0d2029d9df7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "8b036261-5965-54ca-92dd-23c2a9c48859" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "8cc1349e-3a12-5f04-bb57-951191756b03" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "8d12e4e4-d407-587f-b859-9bb2b0c6767c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "902733fb-61de-5bc9-8d9d-a49de1569ce1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "9b4f8481-1fb1-5e72-bd7b-ef9f09fbd035" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "9d1a54b7-cf7c-553f-a827-20c69ed24a27" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "aa6ba73a-462f-55be-ba5f-c07aa76e75d5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "ab3a7b0e-89e0-5297-8787-3416118f8274" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "af898720-14f6-55e3-baf0-4cecf1c18531" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "b7371df6-39bc-5cbf-8fc0-a760fcf3e50e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "bbf23ce1-a56f-5c9a-b46f-1d82f5e78e59" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "c48f5af0-ff48-50de-ba87-c7d908361458" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "ca729bde-b5de-5e0f-b8dd-916b27ff17d8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "ca92ca24-5a5d-5cc6-8e00-932f3efaacb1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "d64cca05-2f6e-5ddd-a9eb-dee064fd1676" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "daacf08c-4ca9-538f-ac3d-1bf7c7b9bc0a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "dbc84f66-7c04-57a2-9cb5-56ec2c598127" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "de2e77ea-caf2-5a8b-836a-ba44a09e75d6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "e0863a90-2e41-553b-8df6-7f834aae8cfd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "e12d9832-e64a-5bad-851f-c503ceecbbc0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "e1fc5ca3-08a8-55ae-8001-020d2d85c829" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "e3fa040b-21e5-5bc6-91c3-9505956d3c07" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "e41107ff-90a4-5d7b-afb3-9ba6885f3ed9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "e86d3b79-08eb-5734-b0cf-1f0c98767856" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "ebae031f-0001-516d-9408-5905d7fe58c3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "fa0cf8e5-1890-56bb-98a3-64721f655b00" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "fb42b232-bfcb-5331-83f2-1064bdd1084f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "fc784924-f2e2-58b5-8993-a04f52829439" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "endpoint_uuid": { - "uuid": "febed417-0137-50c1-9050-c2118fe85463" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - } - ], - "device_id": { - "device_uuid": { - "uuid": "df5dbb93-a154-5587-8195-f74f12bbcdf9" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R4" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/3\"\n},\n{\n\"uuid\": \"1/11\"\n},\n{\n\"uuid\": \"1/12\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/3]", - "resource_value": "{\"uuid\": \"1/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/11]", - "resource_value": "{\"uuid\": \"1/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/12]", - "resource_value": "{\"uuid\": \"1/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "077e15f9-76fe-5333-9408-968c2b41cdae" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "0efd6983-cb30-5b44-a70f-aea7eef73ee7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "180e0e89-c31a-59a4-ba51-78f8808b0142" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "1b12d0c3-6525-5c59-b0fc-a8767d5a234b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "205c228a-6d13-5dd9-a096-3d0f32aa623e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "2107946e-8ba6-590b-b46a-ae4657ef40d7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "2356dc7c-cbdf-591d-b0ee-6c7ce833875d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "25f2edc5-6d82-5ed2-9e45-116d25832ecc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "2666e58b-6cee-5e1c-a88d-00e2905b0f32" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "271733ae-018f-54fc-88bf-0632f3cdb7f9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "27e611ee-5dc2-5029-8e57-5ca6ee2cfc2f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "2a108849-e226-508f-994e-8361591fb5a6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "316b145e-aa6c-5df4-af66-715d6b4e5a17" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "33442303-1f87-5232-884f-edb5d9e3ffd5" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "36fe1f19-dba3-51d2-9e1b-2e3c704a6b19" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "37ab9a53-2ef7-5dc0-920f-52cbf126a560" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "3fe69c47-9ee9-5aeb-bf00-b18e82fc99b1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "40587a07-793f-5b4e-aa55-72b927b07438" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "49acea8d-74bd-55db-90bd-cc2103782103" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "56f7a8f0-1333-52d9-9b8d-4f193c0eae50" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "58f5c4e9-bd47-538a-b165-835c17f8fb22" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "5a769adf-c6e8-5f56-9283-7e5b89c1eb7c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "5ceb2ff8-cf7a-5a98-a0ea-c8db55539cd3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "65941ce9-090b-5eb0-92e2-159d8fa7be6b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "66d6ee8a-d31f-52f3-a543-d065a1d8f230" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "70a11827-5f5f-5fd8-bc4e-625b96f49cfa" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "761f413c-e81f-5ef3-906e-15ee7a7cf979" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "7899ce16-bbf9-5aec-860b-03b632b2415e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "79dcdbdd-295c-5cc5-8bc5-b9e3f5781259" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "7c88df78-ac8b-5b21-9d4a-9fb5cb9b2ab7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "86e1d7d9-8196-501d-89e0-81a29ab329c1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "8f371d4d-437f-5dcd-8da5-49aed0a10591" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "9114b7f3-d37d-5c06-b836-fe9ae5be5e31" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "95535457-347b-5087-9334-34e9c3108a14" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "9584839b-c968-555b-b365-7d45b158da93" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "a4601696-fbf8-5542-93bc-1a0b1a584290" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "a5937e81-da6e-5c10-b112-632c91c59c80" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "a6e3def0-24dd-58ce-8dc2-3b76a7e59a54" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "ae66e1f3-388e-50a6-84dd-ab3011abd7c8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "bf37f73c-1d04-5502-bbcd-b0c774f5321d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "c2323639-cc62-51c0-824d-d407f021487e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "c7867a3e-6777-5da4-86e6-b3f8cfcc2206" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "df10edad-6e34-5e21-b3df-b707d1996152" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "e474474e-736d-50f5-a67c-6c64fc1ecbb0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "e872518a-7b5d-5ddc-b32b-537f0eb448ce" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "ed3ab9eb-7d0e-5af0-8bc6-20e09c9244d9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "eecd6a9e-3f25-53d4-aaaf-86c9233f3e00" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "f899702b-ea5a-56f8-ab09-6084ab8cdafb" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "f973a042-5400-5b24-8dd4-cc74392e30f7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "fbdb17d1-78a5-50dc-bb9e-c1e74dfa1e88" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "fd9dfc42-9756-5efb-8198-e5c6906bf347" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "fe88e415-7414-5870-ba3d-b08f31840680" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "endpoint_uuid": { - "uuid": "ffff2d64-d04c-54e2-a006-9a5fa0d7ab84" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/12" - } - ], - "device_id": { - "device_uuid": { - "uuid": "e7d82ee1-dcef-50b8-b390-ea419df26b02" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R10" - }, - { - "components": [ - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "015374ab-9cae-58c3-8e0e-a438482511d1" - }, - "name": "eth-1/0/6", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "030e2ea4-7cdf-5212-9a28-88dc24c52629" - }, - "name": "eth-1/0/20", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "11e08bd6-770d-55a0-a635-e54cf3dbccc7" - }, - "name": "eth-1/0/17", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "1c93cb2d-2c23-50df-95d8-f32fe26e1373" - }, - "name": "Transceiver#15", - "parent": "eth-1/0/15", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "1feb16b7-ccd9-5cd6-a958-56400aafb910" - }, - "name": "Fan#4", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "2033bacd-7ca6-5226-ad88-e05f3b36881b" - }, - "name": "eth-1/0/1", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2058b20d-6517-5380-8b20-e1ebda347ff1" - }, - "name": "eth-1/0/22", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2733b361-a1e5-5a22-b0ff-f20346c233b7" - }, - "name": "eth-1/0/14", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2ca154b0-4e4b-5024-92b0-b7cf4bcc4fac" - }, - "name": "eth-1/0/8", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "2dc02c86-6a77-5767-9c6f-07b20d09bcc5" - }, - "name": "Transceiver#8", - "parent": "eth-1/0/8", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2e08a6e2-10f9-5b61-b358-a46e5d2168c7" - }, - "name": "eth-1/0/10", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "2febcb3d-0afa-594e-9ebe-c6f23c8b7e8a" - }, - "name": "eth-1/0/16", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"PYA2FD5 \"", - "vendor": "\"FINISAR CORP. \"" - }, - "component_uuid": { - "uuid": "330654aa-1136-58c7-9836-dce23b03e84b" - }, - "name": "Transceiver#23", - "parent": "eth-1/0/23", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "36c2ad7f-3191-5d73-ba5b-a90eee210e28" - }, - "name": "eth-1/0/2", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"AZG28W2 \"", - "vendor": "\"FINISAR CORP. \"" - }, - "component_uuid": { - "uuid": "380c56d9-4da7-52a0-8902-17e44d84182d" - }, - "name": "Transceiver#6", - "parent": "eth-1/0/6", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "383a5fda-c038-5273-919e-e2fdebec614a" - }, - "name": "eth-1/0/5", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "389fa34a-d04c-5328-af4b-f3d825907e11" - }, - "name": "Transceiver#5", - "parent": "eth-1/0/5", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "399007c8-f6c1-5b1e-9c88-19d5815b447f" - }, - "name": "Transceiver#9", - "parent": "eth-1/0/9", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"F162250019 \"", - "vendor": "\"Edgecore \"" - }, - "component_uuid": { - "uuid": "4f052094-76bf-57e9-8c50-ab087f7585fc" - }, - "name": "Transceiver#22", - "parent": "eth-1/0/22", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"CRXT-T0T12A\"", - "empty": "\"false\"", - "location": "\"Power Supplies tray\"", - "manufacturer-name": "\"CRXT-T0T12A\"", - "removable": "\"true\"", - "serial-num": "\"19330053\"" - }, - "component_uuid": { - "uuid": "52494162-56ba-5362-84c2-de654f647fd4" - }, - "name": "Power-Supply#1", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "60bd77bf-2c0e-5058-ac6a-f4b107888668" - }, - "name": "eth-1/0/23", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "638f45d1-e274-5c90-bd6c-6d0b43354705" - }, - "name": "eth-1/0/7", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "6548a5c7-3dc3-56d3-9521-3b8f1bcd00f5" - }, - "name": "Transceiver#3", - "parent": "eth-1/0/3", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "669a0888-e577-511f-8bb1-a78854d21236" - }, - "name": "eth-1/0/4", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "66f3fad6-f259-558c-87cb-85c267bf872d" - }, - "name": "eth-1/0/18", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "68748f18-ee2c-5650-9476-375489dcf90c" - }, - "name": "Transceiver#14", - "parent": "eth-1/0/14", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "6c5296eb-eeaa-5d24-b274-3cc24095ebfe" - }, - "name": "eth-1/0/19", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "6f156244-93a8-5b24-8300-3bcb1d390ec5" - }, - "name": "eth-1/0/11", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "7317a965-f981-59e8-87ca-0aa8c87634b1" - }, - "name": "Transceiver#21", - "parent": "eth-1/0/21", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "7a57c318-8e6c-5b45-89e5-fae2c611fb03" - }, - "name": "Transceiver#19", - "parent": "eth-1/0/19", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "7c8a8160-a11b-588d-8302-c2fa37b7acd3" - }, - "name": "Fan#5", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "86b7296f-1bc6-5ed6-9019-89776c5e624c" - }, - "name": "Transceiver#24", - "parent": "eth-1/0/24", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "88619a40-3670-5447-8264-a5a44e75f8ea" - }, - "name": "eth-1/0/12", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "8ba82a4b-08cc-5f84-89da-ce532af55224" - }, - "name": "Transceiver#11", - "parent": "eth-1/0/11", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "8cd2af8e-072a-56e3-88d0-dd3a73b14ca3" - }, - "name": "Transceiver#4", - "parent": "eth-1/0/4", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "8dab697e-efe0-5818-b072-841bcd57340e" - }, - "name": "eth-1/0/27", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "9f20d73a-2898-5bcb-8dcf-09441dcaaa14" - }, - "name": "Transceiver#10", - "parent": "eth-1/0/10", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"DRX-30\"", - "empty": "\"false\"", - "hardware-rev": "\"R0D\"", - "manufacturer-name": "\"DRX-30\"", - "mfg-date": "\"2020-01-08\"", - "removable": "\"false\"", - "serial-num": "\"731527XB1952144\"", - "software-rev": "\"21.5.1 (9799)\"" - }, - "component_uuid": { - "uuid": "a0307926-d58c-51ef-aeaf-a8587065ddb2" - }, - "name": "chassis", - "parent": "chassis", - "type": "CHASSIS" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"CN04HG0018P1452\"", - "vendor": "\"DELL EMC \"" - }, - "component_uuid": { - "uuid": "a537dd75-55ed-5f80-bbe0-a5fcec8fe992" - }, - "name": "Transceiver#20", - "parent": "eth-1/0/20", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "a548914d-f039-5463-a7cf-e3a2d0e970ce" - }, - "name": "Fan#3", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"030SBF6TH661789\"", - "vendor": "\"HISILICON \"" - }, - "component_uuid": { - "uuid": "a86ad9f3-d5f7-5e4b-911a-89e15cf56cbb" - }, - "name": "Transceiver#16", - "parent": "eth-1/0/16", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "abb4254a-f8fc-5c88-a884-cba09af44e2f" - }, - "name": "Transceiver#2", - "parent": "eth-1/0/2", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "b1fe3b03-236d-509f-9738-0863a0051cc0" - }, - "name": "eth-1/0/24", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "b9326b3e-4bfd-5334-8205-17964ca521d3" - }, - "name": "Transceiver#1", - "parent": "eth-1/0/1", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "bddb5da3-8ca6-50a8-91e2-4ab1d7bca8b1" - }, - "name": "Transceiver#27", - "parent": "eth-1/0/27", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "cae5f45f-0442-5ea1-ba3f-beac8c1e2e55" - }, - "name": "eth-1/0/21", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "cbb8d2b5-a57f-508b-a054-509ace91bc88" - }, - "name": "Fan#2", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"CN04HG00183038D\"", - "vendor": "\"DELL EMC \"" - }, - "component_uuid": { - "uuid": "cdcb47b3-3fe9-5db0-a70a-df607933c68b" - }, - "name": "Transceiver#17", - "parent": "eth-1/0/17", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "d20d0c2a-5cbd-5602-b54b-a44134b391b7" - }, - "name": "eth-1/0/13", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"false\"", - "location": "\"Power Supplies tray\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "d35ae2b7-88e8-5f8e-bb1c-6b1b04c41652" - }, - "name": "Power-Supply#2", - "parent": "chassis", - "type": "POWER_SUPPLY" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "d3cbf635-9c86-542b-b169-53a77dea2d75" - }, - "name": "eth-1/0/25", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "d425d98d-4f08-5519-a754-63fa109ba13b" - }, - "name": "eth-1/0/15", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"100G/40G Fiber\"" - }, - "component_uuid": { - "uuid": "d71a754a-1d95-5fa9-956a-fba4da2e9841" - }, - "name": "eth-1/0/26", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "description": "\"25G/10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "d976f4a3-6490-5006-8452-65d8b80af1b6" - }, - "name": "eth-1/0/3", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"F162250016 \"", - "vendor": "\"Edgecore \"" - }, - "component_uuid": { - "uuid": "d9a36c03-d934-5ca3-ab94-047b6114ce5a" - }, - "name": "Transceiver#25", - "parent": "eth-1/0/25", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "connector-type": "\"LC_CONNECTOR\"", - "empty": "\"false\"", - "form-factor": "\"SFP\"", - "removable": "\"true\"", - "serial-num": "\"P22224B0261 \"", - "vendor": "\"PDDG \"" - }, - "component_uuid": { - "uuid": "e2dc2aaf-afea-5356-8ea5-c77e9895da0b" - }, - "name": "Transceiver#18", - "parent": "eth-1/0/18", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "e3a4825b-62c2-5119-bed1-9c4b7edeb0bf" - }, - "name": "Transceiver#12", - "parent": "eth-1/0/12", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "e7c4e4dc-5f70-53a8-9680-6d1d1f382611" - }, - "name": "Transceiver#26", - "parent": "eth-1/0/26", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"10G/1G Fiber\"" - }, - "component_uuid": { - "uuid": "f0c6922f-c0bb-5f69-920b-0d8ebc3f7c63" - }, - "name": "eth-1/0/9", - "parent": "", - "type": "PORT" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "f441b766-d83b-51f0-bb87-9feacbaa222e" - }, - "name": "Transceiver#13", - "parent": "eth-1/0/13", - "type": "TRANSCEIVER" - }, - { - "attributes": { - "description": "\"AS7315\"", - "empty": "\"false\"", - "location": "\"Fans tray\"", - "manufacturer-name": "\"AS7315\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "fbee5498-f04b-543b-b0df-054b8ddcdab5" - }, - "name": "Fan#1", - "parent": "chassis", - "type": "FAN" - }, - { - "attributes": { - "empty": "\"true\"", - "removable": "\"true\"" - }, - "component_uuid": { - "uuid": "ff8fc959-332f-5e3d-8b4b-ad52935ab386" - }, - "name": "Transceiver#7", - "parent": "eth-1/0/7", - "type": "TRANSCEIVER" - } - ], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "10.95.90.125" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "830" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"allow_agent\": false,\n\"commit_per_rule\": true,\n\"device_params\": {\n\"name\": \"huaweiyang\"\n},\n\"force_running\": false,\n\"hostkey_verify\": false,\n\"look_for_keys\": false,\n\"manager_params\": {\n\"timeout\": 120\n},\n\"message_renderer\": \"pyangbind\",\n\"password\": \"admin\",\n\"username\": \"admin\",\n\"vendor\": \"ADVA\"\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/chassis", - "resource_value": "{\"attributes\": {\"description\": \"DRX-30\", \"empty\": \"false\", \"hardware-rev\": \"R0D\", \"manufacturer-name\": \"DRX-30\", \"mfg-date\": \"2020-01-08\", \"removable\": \"false\", \"serial-num\": \"731527XB1952144\", \"software-rev\": \"21.5.1 (9799)\"}, \"class\": \"CHASSIS\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"chassis\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#1", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#2", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#3", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#3\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#4", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#4\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Fan#5", - "resource_value": "{\"attributes\": {\"description\": \"AS7315\", \"empty\": \"false\", \"location\": \"Fans tray\", \"manufacturer-name\": \"AS7315\", \"removable\": \"true\"}, \"class\": \"FAN\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Fan#5\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#1", - "resource_value": "{\"attributes\": {\"description\": \"CRXT-T0T12A\", \"empty\": \"false\", \"location\": \"Power Supplies tray\", \"manufacturer-name\": \"CRXT-T0T12A\", \"removable\": \"true\", \"serial-num\": \"19330053\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#1\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Power-Supply#2", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"location\": \"Power Supplies tray\", \"removable\": \"true\"}, \"class\": \"POWER_SUPPLY\", \"component-reference\": [1, \"CHASSIS\"], \"name\": \"Power-Supply#2\", \"parent-component-references\": \"chassis\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/1", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\"], \"name\": \"eth-1/0/1\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#1", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [3, \"PORT\"], \"name\": \"Transceiver#1\", \"parent-component-references\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/2", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/2\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#2", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [4, \"PORT\"], \"name\": \"Transceiver#2\", \"parent-component-references\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/3", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/3\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#3", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [5, \"PORT\"], \"name\": \"Transceiver#3\", \"parent-component-references\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/4", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/4\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#4", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [6, \"PORT\"], \"name\": \"Transceiver#4\", \"parent-component-references\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/5", - "resource_value": "{\"attributes\": {\"description\": \"25G/10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/5\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#5", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [7, \"PORT\"], \"name\": \"Transceiver#5\", \"parent-component-references\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/6", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/6\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#6", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"AZG28W2 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [8, \"PORT\"], \"name\": \"Transceiver#6\", \"parent-component-references\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/7", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/7\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#7", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [9, \"PORT\"], \"name\": \"Transceiver#7\", \"parent-component-references\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/8", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/8\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#8", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [10, \"PORT\"], \"name\": \"Transceiver#8\", \"parent-component-references\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/9", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/9\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#9", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [11, \"PORT\"], \"name\": \"Transceiver#9\", \"parent-component-references\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/10", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/10\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#10", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [12, \"PORT\"], \"name\": \"Transceiver#10\", \"parent-component-references\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/11", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/11\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#11", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [13, \"PORT\"], \"name\": \"Transceiver#11\", \"parent-component-references\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/12", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/12\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#12", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [14, \"PORT\"], \"name\": \"Transceiver#12\", \"parent-component-references\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/13", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/13\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#13", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [15, \"PORT\"], \"name\": \"Transceiver#13\", \"parent-component-references\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/14", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/14\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#14", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [16, \"PORT\"], \"name\": \"Transceiver#14\", \"parent-component-references\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/15", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/15\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#15", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [17, \"PORT\"], \"name\": \"Transceiver#15\", \"parent-component-references\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/16", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/16\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#16", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"030SBF6TH661789\", \"vendor\": \"HISILICON \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [18, \"PORT\"], \"name\": \"Transceiver#16\", \"parent-component-references\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/17", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/17\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#17", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG00183038D\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [19, \"PORT\"], \"name\": \"Transceiver#17\", \"parent-component-references\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/18", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/18\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#18", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"P22224B0261 \", \"vendor\": \"PDDG \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [20, \"PORT\"], \"name\": \"Transceiver#18\", \"parent-component-references\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/19", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/19\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#19", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [21, \"PORT\"], \"name\": \"Transceiver#19\", \"parent-component-references\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/20", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/20\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#20", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"CN04HG0018P1452\", \"vendor\": \"DELL EMC \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [22, \"PORT\"], \"name\": \"Transceiver#20\", \"parent-component-references\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/21", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/21\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#21", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [23, \"PORT\"], \"name\": \"Transceiver#21\", \"parent-component-references\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/22", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/22\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#22", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F162250019 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [24, \"PORT\"], \"name\": \"Transceiver#22\", \"parent-component-references\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/23", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/23\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#23", - "resource_value": "{\"attributes\": {\"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"PYA2FD5 \", \"vendor\": \"FINISAR CORP. \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [25, \"PORT\"], \"name\": \"Transceiver#23\", \"parent-component-references\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/24", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/24\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#24", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [26, \"PORT\"], \"name\": \"Transceiver#24\", \"parent-component-references\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/25", - "resource_value": "{\"attributes\": {\"description\": \"10G/1G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/25\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#25", - "resource_value": "{\"attributes\": {\"connector-type\": \"LC_CONNECTOR\", \"empty\": \"false\", \"form-factor\": \"SFP\", \"removable\": \"true\", \"serial-num\": \"F162250016 \", \"vendor\": \"Edgecore \"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [27, \"PORT\"], \"name\": \"Transceiver#25\", \"parent-component-references\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/26", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/26\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#26", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [28, \"PORT\"], \"name\": \"Transceiver#26\", \"parent-component-references\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/eth-1/0/27", - "resource_value": "{\"attributes\": {\"description\": \"100G/40G Fiber\"}, \"class\": \"PORT\", \"component-reference\": [2, \"CHASSIS\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"FAN\", \"POWER_SUPPLY\", \"POWER_SUPPLY\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\", \"TRANSCEIVER\", \"PORT\"], \"name\": \"eth-1/0/27\", \"parent-component-references\": \"\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/inventory/Transceiver#27", - "resource_value": "{\"attributes\": {\"empty\": \"true\", \"removable\": \"true\"}, \"class\": \"TRANSCEIVER\", \"component-reference\": [29, \"PORT\"], \"name\": \"Transceiver#27\", \"parent-component-references\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/1]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/1']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/2]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/2']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/3]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/3']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/4]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/4']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/5]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/5']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/6]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/6']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/7]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/7']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/8]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/8']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/9]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/9']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/10]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/10']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/11]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/11']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/12]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/12']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/13]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/13']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/14]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/14']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/15]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/15']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/16]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/16']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/17]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/17']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/18]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/18']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/19]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/19']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/20]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/20']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/21]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/21']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/22]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/22']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/23]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/23']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/24]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/24']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/25]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/25']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/26]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/26']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[eth-1/0/27]", - "resource_value": "{\"sample_types\": {\"101\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-pkts\", \"102\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-pkts\", \"201\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/out-octets\", \"202\": \"//oci:interfaces/oci:interface[oci:name='eth-1/0/27']/state/counters/in-octets\"}, \"type\": \"-\", \"uuid\": \"eth-1/0/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/1]", - "resource_value": "{\"name\": \"eth-1/0/1\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/2]", - "resource_value": "{\"name\": \"eth-1/0/2\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/3]", - "resource_value": "{\"name\": \"eth-1/0/3\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/4]", - "resource_value": "{\"name\": \"eth-1/0/4\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/5]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/5\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/6]", - "resource_value": "{\"name\": \"eth-1/0/6\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/7]", - "resource_value": "{\"name\": \"eth-1/0/7\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/8]", - "resource_value": "{\"name\": \"eth-1/0/8\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/9]", - "resource_value": "{\"name\": \"eth-1/0/9\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10]", - "resource_value": "{\"name\": \"eth-1/0/10\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/11]", - "resource_value": "{\"name\": \"eth-1/0/11\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/12]", - "resource_value": "{\"name\": \"eth-1/0/12\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/13]", - "resource_value": "{\"name\": \"eth-1/0/13\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/14]", - "resource_value": "{\"name\": \"eth-1/0/14\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/15]", - "resource_value": "{\"name\": \"eth-1/0/15\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16]", - "resource_value": "{\"name\": \"eth-1/0/16\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/17]", - "resource_value": "{\"name\": \"eth-1/0/17\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/18]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/18\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/19]", - "resource_value": "{\"name\": \"eth-1/0/19\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/20\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21]", - "resource_value": "{\"name\": \"eth-1/0/21\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/22\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23]", - "resource_value": "{\"name\": \"eth-1/0/23\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/24]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/24\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25]", - "resource_value": "{\"description\": \"\\\"TeraFlow\\\"\", \"name\": \"eth-1/0/25\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/26]", - "resource_value": "{\"name\": \"eth-1/0/26\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/27]", - "resource_value": "{\"name\": \"eth-1/0/27\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]/subinterface[0]", - "resource_value": "{\"address_ip\": \"10.95.90.125\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth0]", - "resource_value": "{\"name\": \"eth0\", \"type\": \"ethernetCsmacd\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]/subinterface[0]", - "resource_value": "{\"address_ip\": \"5.5.5.5\", \"address_prefix\": 32, \"index\": 0, \"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[dummy1]", - "resource_value": "{\"name\": \"dummy1\", \"type\": \"softwareLoopback\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10.42]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.4.42.5\", \"address_ipv6\": \"2001::99:4:42:5\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\", \"vlan_id\": 42}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/10.42]", - "resource_value": "{\"description\": \"\\\"Conexion con HL4-2-2\\\"\", \"name\": \"eth-1/0/10.42\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.125]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.16.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/16.125]", - "resource_value": "{\"name\": \"eth-1/0/16.125\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.20.3\", \"address_ipv6\": \"2001::99:5:20:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 20}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-4-1\\\"\", \"name\": \"eth-1/0/20.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22.111]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.4.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\", \"vlan_id\": 111}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/22.111]", - "resource_value": "{\"name\": \"eth-1/0/22.111\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.125]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.61.1\", \"address_prefix\": 24, \"index\": 0, \"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\", \"vlan_id\": 125}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.125]", - "resource_value": "{\"name\": \"eth-1/0/23.125\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25.55]/subinterface[0]", - "resource_value": "{\"address_ip\": \"99.5.55.2\", \"address_ipv6\": \"2001::99:5:55:2\", \"address_prefix\": 24, \"address_prefix_v6\": 112, \"index\": 0, \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\", \"vlan_id\": 55}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/25.55]", - "resource_value": "{\"description\": \"\\\"Conexion con HL5-1-2\\\"\", \"name\": \"eth-1/0/25.55\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.996]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\", \"vlan_id\": 996}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/23.996]", - "resource_value": "{\"name\": \"eth-1/0/23.996\", \"type\": \"l2vlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.533]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.12.12\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\", \"vlan_id\": 533}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/20.533]", - "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/20.533\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.534]/subinterface[0]", - "resource_value": "{\"address_ip\": \"172.16.17.47\", \"address_prefix\": 16, \"index\": 0, \"mtu\": \"1450\", \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\", \"vlan_id\": 534}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.534]", - "resource_value": "{\"mtu\": 1450, \"name\": \"eth-1/0/21.534\", \"type\": \"l3ipvlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.999]/subinterface[0]", - "resource_value": "{\"index\": 0, \"name\": \"eth-1/0/21.999\", \"type\": \"l2vlan\", \"vlan_id\": 999}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/interface[eth-1/0/21.999]", - "resource_value": "{\"name\": \"eth-1/0/21.999\", \"type\": \"l2vlan\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_POLICY_BGP]", - "resource_value": "{\"policy_name\": \"MY_POLICY_BGP\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_AS_PATH]", - "resource_value": "{\"policy_name\": \"MY_AS_PATH\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_STANDARD_COMMUNITY]", - "resource_value": "{\"policy_name\": \"MY_STANDARD_COMMUNITY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_EXTENDED_COMMUNITY]", - "resource_value": "{\"policy_name\": \"MY_EXTENDED_COMMUNITY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[MY_POLICY]", - "resource_value": "{\"policy_name\": \"MY_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv_ACL]", - "resource_value": "{\"policy_name\": \"srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv_ACLr]", - "resource_value": "{\"policy_name\": \"srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[RT_POLICY]", - "resource_value": "{\"policy_name\": \"RT_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv11_ACL]", - "resource_value": "{\"policy_name\": \"srv11_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/policy_definition[srv11_ACLr]", - "resource_value": "{\"policy_name\": \"srv11_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL]", - "resource_value": "{\"ext_community_set_name\": \"set_srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACL][65000:533]", - "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr]", - "resource_value": "{\"ext_community_set_name\": \"set_srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv_ACLr][65000:533]", - "resource_value": "{\"ext_community_member\": \"65000:533\", \"ext_community_set_name\": \"set_srv_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY]", - "resource_value": "{\"ext_community_set_name\": \"set_RT_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_RT_POLICY][65001:456]", - "resource_value": "{\"ext_community_member\": \"65001:456\", \"ext_community_set_name\": \"set_RT_POLICY\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACL]", - "resource_value": "{\"ext_community_set_name\": \"set_srv11_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACL][65000:101]", - "resource_value": "{\"ext_community_member\": \"65000:101\", \"ext_community_set_name\": \"set_srv11_ACL\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACLr]", - "resource_value": "{\"ext_community_set_name\": \"set_srv11_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/routing_policy/bgp_defined_set[set_srv11_ACLr][65000:101]", - "resource_value": "{\"ext_community_member\": \"65000:101\", \"ext_community_set_name\": \"set_srv11_ACLr\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]", - "resource_value": "{\"name\": \"default\", \"router_id\": \"5.5.5.5\", \"type\": \"DEFAULT_INSTANCE\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[OSPF]", - "resource_value": "{\"identifier\": \"OSPF\", \"name\": \"default\", \"protocol_name\": \"OSPF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[ISIS]", - "resource_value": "{\"identifier\": \"ISIS\", \"name\": \"default\", \"protocol_name\": \"ISIS\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[BGP]", - "resource_value": "{\"as\": 65001, \"identifier\": \"BGP\", \"name\": \"default\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"default\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"default\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"default\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[default]/table_connections[DIRECTLY_CONNECTED][ISIS][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"ISIS\", \"name\": \"default\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:996]", - "resource_value": "{\"name\": \"ELAN-AC:996\", \"type\": \"L2VSI\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]", - "resource_value": "{\"name\": \"5603d4487d23-NetInst\", \"route_distinguisher\": \"65000:533\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23-NetInst\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23-NetInst\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACL]", - "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23-NetInst\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23-NetInst]/inter_instance_policies[srv_ACLr]", - "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23-NetInst\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[TestPablo]", - "resource_value": "{\"name\": \"TestPablo\", \"route_distinguisher\": \"65000:934\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[TestPablo]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"TestPablo\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]", - "resource_value": "{\"name\": \"VRF_TEST\", \"route_distinguisher\": \"65000:11\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/protocols[BGP]", - "resource_value": "{\"as\": 100, \"identifier\": \"BGP\", \"name\": \"VRF_TEST\", \"protocol_name\": \"BGP\", \"router_id\": \"5.5.5.5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"VRF_TEST\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"VRF_TEST\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[VRF_TEST]/inter_instance_policies[RT_POLICY]", - "resource_value": "{\"export_policy\": \"RT_POLICY\", \"import_policy\": \"RT_POLICY\", \"name\": \"VRF_TEST\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]", - "resource_value": "{\"name\": \"5603d4487d23\", \"route_distinguisher\": \"65000:101\", \"type\": \"L3VRF\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[BGP]", - "resource_value": "{\"as\": 65000, \"identifier\": \"BGP\", \"name\": \"5603d4487d23\", \"protocol_name\": \"BGP\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[DIRECTLY_CONNECTED]", - "resource_value": "{\"identifier\": \"DIRECTLY_CONNECTED\", \"name\": \"5603d4487d23\", \"protocol_name\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/protocols[STATIC]", - "resource_value": "{\"identifier\": \"STATIC\", \"name\": \"5603d4487d23\", \"protocol_name\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/table_connections[DIRECTLY_CONNECTED][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"DIRECTLY_CONNECTED\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/table_connections[STATIC][BGP][IPV4]", - "resource_value": "{\"address_family\": \"IPV4\", \"default_import_policy\": \"ACCEPT_ROUTE\", \"dst_protocol\": \"BGP\", \"name\": \"5603d4487d23\", \"src_protocol\": \"STATIC\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACL]", - "resource_value": "{\"import_policy\": \"srv_ACL\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv11_ACL]", - "resource_value": "{\"import_policy\": \"srv11_ACL\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv_ACLr]", - "resource_value": "{\"export_policy\": \"srv_ACLr\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[5603d4487d23]/inter_instance_policies[srv11_ACLr]", - "resource_value": "{\"export_policy\": \"srv11_ACLr\", \"name\": \"5603d4487d23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/network_instance[ELAN-AC:999]", - "resource_value": "{\"name\": \"ELAN-AC:999\", \"type\": \"L2VSI\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/acl/interfaces/ingress[udp][oc-acl:ACL_IPV4]", - "resource_value": "{\"id\": \"eth-1/0/16.125\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_OPENCONFIG" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "041a75da-c050-5ca3-b146-42b0f00ee29d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "0b2a4334-b88b-5309-b405-58e12f2b50af" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "15acb931-1879-5b9a-9b03-7a55af809ee8" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "1840078d-cbf3-5da7-bf6a-362af86c3348" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "2db099e4-8ed6-560e-a711-b9740d8c2207" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "3ea44221-bdb4-5d7f-a9d3-72fdca6bd157" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "49f0a9c8-2a92-5d99-9130-1e5fe78a54d6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "54c77c3f-74f8-51e7-9327-1cc58966dd49" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "5bf6d901-a375-5c10-9c50-e3b32245384c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "61b1b61a-2a81-5726-b9f8-4e12aa9e8f0b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "704521ab-79dc-5816-a349-326ec9105dad" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "748eaf56-dd46-57fb-b174-b2e5118ef595" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "749fb7f2-6090-5b1b-ab34-85bb81dc8839" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "85ed1309-aa02-5f4e-8895-39a1bc3b2a0d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "90af834b-3150-5f29-8d64-3f32e1b06cc3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "98217d3a-063e-5700-8baf-42194da9876d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "be264f6e-2526-5396-8816-7ef83ac0283f" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "c52d4511-cc44-57bd-aa81-c1a10666686b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "c68adeba-a5cd-54b5-9cce-a697f994ac4a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "d91dd1c7-cc89-5c3a-bc35-7ba60d3deb7d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "dca3594e-3e72-5880-a7d9-cde710bd010c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "ddc92c2d-5548-5056-9cfc-ad6cafb56d82" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "e3f8a96f-b3fa-5eb5-9ff4-1a823794c82e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "e6143da8-29b4-57ed-b2df-436ceeb966cc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "ec930b06-c6f5-5be1-aac0-655d31655782" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "f1e57176-aaca-594a-b0ff-c0fc609554b6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "endpoint_uuid": { - "uuid": "fc8dc95c-f59d-56a3-ac4c-989b3748bc3d" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [ - "KPISAMPLETYPE_BYTES_RECEIVED", - "KPISAMPLETYPE_BYTES_TRANSMITTED", - "KPISAMPLETYPE_PACKETS_RECEIVED", - "KPISAMPLETYPE_PACKETS_TRANSMITTED" - ], - "name": "eth-1/0/20" - } - ], - "device_id": { - "device_uuid": { - "uuid": "fd28848d-18e7-5cb5-bb02-4085d088eede" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "packet-router", - "name": "R149" - }, - { - "components": [], - "controller_id": {}, - "device_config": { - "config_rules": [ - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/address", - "resource_value": "127.0.0.1" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/port", - "resource_value": "0" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "_connect/settings", - "resource_value": "{\n\"endpoints\": [\n{\n\"uuid\": \"1/2\"\n},\n{\n\"uuid\": \"1/5\"\n},\n{\n\"uuid\": \"1/7\"\n},\n{\n\"uuid\": \"1/13\"\n},\n{\n\"uuid\": \"2/1\"\n},\n{\n\"uuid\": \"2/2\"\n},\n{\n\"uuid\": \"2/3\"\n},\n{\n\"uuid\": \"2/4\"\n},\n{\n\"uuid\": \"2/5\"\n},\n{\n\"uuid\": \"2/6\"\n},\n{\n\"uuid\": \"2/7\"\n},\n{\n\"uuid\": \"2/8\"\n},\n{\n\"uuid\": \"2/9\"\n},\n{\n\"uuid\": \"2/10\"\n},\n{\n\"uuid\": \"2/11\"\n},\n{\n\"uuid\": \"2/12\"\n},\n{\n\"uuid\": \"2/13\"\n},\n{\n\"uuid\": \"2/14\"\n},\n{\n\"uuid\": \"2/15\"\n},\n{\n\"uuid\": \"2/16\"\n},\n{\n\"uuid\": \"2/17\"\n},\n{\n\"uuid\": \"2/18\"\n},\n{\n\"uuid\": \"2/19\"\n},\n{\n\"uuid\": \"2/20\"\n},\n{\n\"uuid\": \"2/21\"\n},\n{\n\"uuid\": \"2/22\"\n},\n{\n\"uuid\": \"2/23\"\n},\n{\n\"uuid\": \"2/24\"\n},\n{\n\"uuid\": \"2/25\"\n},\n{\n\"uuid\": \"2/26\"\n},\n{\n\"uuid\": \"2/27\"\n},\n{\n\"uuid\": \"2/28\"\n},\n{\n\"uuid\": \"2/29\"\n},\n{\n\"uuid\": \"2/30\"\n},\n{\n\"uuid\": \"2/31\"\n},\n{\n\"uuid\": \"2/32\"\n},\n{\n\"uuid\": \"2/33\"\n},\n{\n\"uuid\": \"2/34\"\n},\n{\n\"uuid\": \"2/35\"\n},\n{\n\"uuid\": \"2/36\"\n},\n{\n\"uuid\": \"2/37\"\n},\n{\n\"uuid\": \"2/38\"\n},\n{\n\"uuid\": \"2/39\"\n},\n{\n\"uuid\": \"2/40\"\n},\n{\n\"uuid\": \"2/41\"\n},\n{\n\"uuid\": \"2/42\"\n},\n{\n\"uuid\": \"2/43\"\n},\n{\n\"uuid\": \"2/44\"\n},\n{\n\"uuid\": \"2/45\"\n},\n{\n\"uuid\": \"2/46\"\n},\n{\n\"uuid\": \"2/47\"\n},\n{\n\"uuid\": \"2/48\"\n},\n{\n\"uuid\": \"2/49\"\n},\n{\n\"uuid\": \"2/50\"\n}\n]\n}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/2]", - "resource_value": "{\"uuid\": \"1/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/5]", - "resource_value": "{\"uuid\": \"1/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/7]", - "resource_value": "{\"uuid\": \"1/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[1/13]", - "resource_value": "{\"uuid\": \"1/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/1]", - "resource_value": "{\"uuid\": \"2/1\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/2]", - "resource_value": "{\"uuid\": \"2/2\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/3]", - "resource_value": "{\"uuid\": \"2/3\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/4]", - "resource_value": "{\"uuid\": \"2/4\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/5]", - "resource_value": "{\"uuid\": \"2/5\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/6]", - "resource_value": "{\"uuid\": \"2/6\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/7]", - "resource_value": "{\"uuid\": \"2/7\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/8]", - "resource_value": "{\"uuid\": \"2/8\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/9]", - "resource_value": "{\"uuid\": \"2/9\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/10]", - "resource_value": "{\"uuid\": \"2/10\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/11]", - "resource_value": "{\"uuid\": \"2/11\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/12]", - "resource_value": "{\"uuid\": \"2/12\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/13]", - "resource_value": "{\"uuid\": \"2/13\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/14]", - "resource_value": "{\"uuid\": \"2/14\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/15]", - "resource_value": "{\"uuid\": \"2/15\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/16]", - "resource_value": "{\"uuid\": \"2/16\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/17]", - "resource_value": "{\"uuid\": \"2/17\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/18]", - "resource_value": "{\"uuid\": \"2/18\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/19]", - "resource_value": "{\"uuid\": \"2/19\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/20]", - "resource_value": "{\"uuid\": \"2/20\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/21]", - "resource_value": "{\"uuid\": \"2/21\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/22]", - "resource_value": "{\"uuid\": \"2/22\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/23]", - "resource_value": "{\"uuid\": \"2/23\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/24]", - "resource_value": "{\"uuid\": \"2/24\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/25]", - "resource_value": "{\"uuid\": \"2/25\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/26]", - "resource_value": "{\"uuid\": \"2/26\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/27]", - "resource_value": "{\"uuid\": \"2/27\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/28]", - "resource_value": "{\"uuid\": \"2/28\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/29]", - "resource_value": "{\"uuid\": \"2/29\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/30]", - "resource_value": "{\"uuid\": \"2/30\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/31]", - "resource_value": "{\"uuid\": \"2/31\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/32]", - "resource_value": "{\"uuid\": \"2/32\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/33]", - "resource_value": "{\"uuid\": \"2/33\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/34]", - "resource_value": "{\"uuid\": \"2/34\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/35]", - "resource_value": "{\"uuid\": \"2/35\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/36]", - "resource_value": "{\"uuid\": \"2/36\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/37]", - "resource_value": "{\"uuid\": \"2/37\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/38]", - "resource_value": "{\"uuid\": \"2/38\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/39]", - "resource_value": "{\"uuid\": \"2/39\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/40]", - "resource_value": "{\"uuid\": \"2/40\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/41]", - "resource_value": "{\"uuid\": \"2/41\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/42]", - "resource_value": "{\"uuid\": \"2/42\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/43]", - "resource_value": "{\"uuid\": \"2/43\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/44]", - "resource_value": "{\"uuid\": \"2/44\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/45]", - "resource_value": "{\"uuid\": \"2/45\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/46]", - "resource_value": "{\"uuid\": \"2/46\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/47]", - "resource_value": "{\"uuid\": \"2/47\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/48]", - "resource_value": "{\"uuid\": \"2/48\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/49]", - "resource_value": "{\"uuid\": \"2/49\"}" - } - }, - { - "action": "CONFIGACTION_SET", - "custom": { - "resource_key": "/endpoints/endpoint[2/50]", - "resource_value": "{\"uuid\": \"2/50\"}" - } - } - ] - }, - "device_drivers": [ - "DEVICEDRIVER_UNDEFINED" - ], - "device_endpoints": [ - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "107c1980-770a-54de-a36f-58208f12d5ee" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/23" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "111054e4-0200-5962-97db-ce23ab2656e7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/20" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "13a7345f-59be-50eb-a25a-de341d11fa78" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/25" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "14b95c1c-6a3a-5593-8cac-e1caf4e99f43" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/40" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "14dbd8fb-0a03-59c1-8d4a-2efb53dc50e4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "168aff21-f1c7-5770-a134-9c486ff3aed6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/48" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "1a0a53dc-83a8-558a-8514-bcdbea18bf8a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/6" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "1ce4b25c-d70b-5328-b452-3ba2665d26a2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/36" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "1d8d733b-3992-5196-8900-89bbfd6813c6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/45" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "217daacf-5908-5daf-93a8-ed5f57f5d033" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/12" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "240b2035-d953-5306-abcb-bb43fd721768" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/27" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "36dc4ac9-2617-5592-b6ce-e80ea5e7a128" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/15" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "3a0ff6b7-6c46-5e9c-a2ce-baf0aef8d9be" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/8" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "3b60b8d8-2cf1-5221-a4b4-ef44d995a5bd" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/24" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "3bde5d04-c6be-5a4c-beda-426ab3f51f6c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/2" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "3d3dd83b-7ff0-5ed8-a927-741c975b06d1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "40d5f4fe-1d0a-5cc8-9c5c-65777fb26009" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/5" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "45fbac46-1ed3-5176-a49f-64faa53f0dbc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/47" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "4632048f-707a-5f2f-b6de-4fc943cb06e1" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/26" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "4bdcbfc1-b3b1-5900-9a8f-309ebe99838e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "549cac05-4c03-5d37-9a48-0da872901daf" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/49" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "6025a0cd-8881-5589-a120-572663c05882" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/1" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "6190825d-3688-5d85-839b-d8b5bc5cea93" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/34" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "6fdf1a44-796a-5e96-91f5-325ae3df2453" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/29" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "6fdf2a1b-6767-5d40-ad24-9a081d59522b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/50" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "761dd4b9-c6ec-5388-8edc-b667f767c98a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/41" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "82dc2b4c-89d9-5e20-9b92-c2868ab0847a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/19" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "8a37fce2-a3a3-52d0-9901-b7c04cd15afc" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/43" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "8c07cc9a-7f0b-5bb4-bd30-d6327b253df3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/11" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "8c1005fd-4b0a-50ad-b2db-ae5aba7bd36e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/39" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "8c586d70-13ce-546e-8dc1-6a5f37cd5c82" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/31" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "8cc2f60f-783c-52cd-a1e9-82568bc16212" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "8d26040f-ee92-5f07-a179-f159bd5a04ec" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/37" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "90672de3-0560-5d15-8111-b6f84c8fa61b" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "1/7" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "94d75508-97b0-5f7c-af3e-6feacffeb956" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/13" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "a7bd0c6b-6303-51fc-85d2-2234c85eb7b6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/44" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "aa033a4b-3c94-5652-a819-d73c52ed7c84" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/33" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "ab1f0d53-bc56-5838-94d0-60f0f6cb73c9" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/46" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "acdd2c22-7cf0-57ad-8fb8-11998781f64c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/21" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "adfe16f5-c52e-583c-b1a3-c392afdb2754" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/22" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "b39be508-bf21-52bc-9452-e9e72ed0ce7c" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/32" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "b53cf34e-e6c5-5622-9287-a7309796ccc4" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/35" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "b6f85cb2-0818-5c9e-b2e2-dcea08a13b87" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/38" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "b75fb81a-c009-5a90-bd1e-3e367196d2ba" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/3" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "bb6439d7-d9ca-5266-856f-2241f3aa792a" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/17" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "ce50639f-3614-5a81-9591-c62da0d8ec61" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/18" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "d8fccb2a-2b5c-53fd-a3a9-03a12d7518b7" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/42" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "dc804210-aff8-539d-ae72-e66c096d9361" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/16" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "ea531797-4b90-5ced-9539-7052bfafd408" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/10" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "f89ac9c4-e7c2-5720-ad54-fb2cc651fca3" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/28" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "f8f14f28-040d-5c4e-90f3-821e0bb733f6" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/9" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "f981bc30-0d0f-5165-b8d9-a0c749ae7dc2" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/14" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "fcab81c5-76dc-59a8-9a2b-eee0570704a0" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/4" - }, - { - "endpoint_id": { - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "endpoint_uuid": { - "uuid": "fff7a2d8-4510-5cbd-9119-62c9603c0a3e" - }, - "topology_id": { - "context_id": { - "context_uuid": { - "uuid": "43813baf-195e-5da6-af20-b3d0922e71a7" - } - }, - "topology_uuid": { - "uuid": "c76135e3-24a8-5e92-9bed-c3c9139359c8" - } - } - }, - "endpoint_location": {}, - "endpoint_type": "-", - "kpi_sample_types": [], - "name": "2/30" - } - ], - "device_id": { - "device_uuid": { - "uuid": "fe3b48de-7a4d-5d5c-b2e1-93cd445bdbd5" - } - }, - "device_operational_status": "DEVICEOPERATIONALSTATUS_ENABLED", - "device_type": "emu-packet-router", - "name": "R14" - } - ] -} \ No newline at end of file diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py index 88c9887c0..453429485 100644 --- a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/YangHandler.py @@ -1,7 +1,21 @@ +# Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/) +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import libyang, os from common.proto.context_pb2 import Device from typing import Dict, Optional - +import json import logging import re import datetime @@ -112,41 +126,7 @@ class YangHandler: component_new.create_path('contains-child', contains_child) - return hardware.print_mem('json') + return json.loads(hardware.print_mem('json')) - - - '''# example methods (based on openconfig, to be adapted): - #str_path = '/interfaces/interface[name={:s}]'.format(if_name) - if_name = 'my-if' - interfaces = self._yang_context.create_data_path('/openconfig-interfaces:interfaces') - my_if = interfaces.create_path('interface[name="{:s}"]'.format(if_name)) - my_if.create_path('config/name', if_name) - my_if.create_path('config/enabled', True) - - my_subifs = my_if.create_path('subinterfaces') - - subif_index = 3 - my_subif = my_subifs.create_path('subinterface[index="{:d}"]'.format(subif_index)) - my_subif.create_path('config/index', subif_index) - my_subif.create_path('config/enabled', True) - - vlan_id = 123 - my_subif_vlan = my_subif.create_path('openconfig-vlan:vlan') - my_subif_vlan.create_path('match/single-tagged/config/vlan-id', vlan_id) - - my_subif_ipv4 = my_subif.create_path('openconfig-if-ip:ipv4') - my_subif_ipv4.create_path('config/enabled', True) - - my_subif_ipv4_addrs = my_subif_ipv4.create_path('addresses') - my_ipv4_addr_ip = '10.0.1.10' - my_ipv4_addr_prefix = 24 - my_subif_ipv4_addr = my_subif_ipv4_addrs.create_path('address[ip="{:s}"]'.format(my_ipv4_addr_ip)) - my_subif_ipv4_addr.create_path('config/ip', my_ipv4_addr_ip) - my_subif_ipv4_addr.create_path('config/prefix-length', my_ipv4_addr_prefix) - - return my_if.print_mem('json')''' - - def destroy(self) -> None: self._yang_context.destroy() \ No newline at end of file diff --git a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py index 7f4e219ff..4a0cedcc4 100644 --- a/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py +++ b/src/nbi/service/rest_server/nbi_plugins/ietf_hardware/__init__.py @@ -1,3 +1,17 @@ +# Copyright 2022-2024 ETSI OSG/SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/) +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from nbi.service.rest_server.nbi_plugins.ietf_hardware.Hardware import Hardware from nbi.service.rest_server.RestServer import RestServer diff --git a/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py b/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py index b5fd18971..388de6893 100644 --- a/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py +++ b/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py @@ -23,9 +23,6 @@ from .Tools import ( format_grpc_to_json, grpc_connection_id, grpc_context_id, grpc_device_id, grpc_link_id, grpc_policy_rule_id, grpc_service_id, grpc_service, grpc_slice_id, grpc_topology_id) -from nbi.service.rest_server.nbi_plugins.ietf_hardware import YangHandler - - class _Resource(Resource): def __init__(self) -> None: super().__init__() @@ -176,15 +173,6 @@ class Devices(_Resource): class Device(_Resource): def get(self, device_uuid : str): return format_grpc_to_json(self.client.GetDevice(grpc_device_id(device_uuid))) -class Deviceshw(_Resource): - def get(self, device_uuid : str): - device =format_grpc_to_json(self.client.GetDevice(grpc_device_id(device_uuid))) - yang_handler = YangHandler('ietf-hardware') - - hardware_reply = yang_handler.compose(device) - device = jsonify(hardware_reply) - - return device class LinkIds(_Resource): def get(self): diff --git a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py index cbb38e6f2..6faef7d9c 100644 --- a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py +++ b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py @@ -16,7 +16,7 @@ from nbi.service.rest_server.RestServer import RestServer from .Resources import ( Connection, ConnectionIds, Connections, Context, ContextIds, Contexts, - Device, DeviceIds, Devices, Deviceshw, + Device, DeviceIds, Devices, DummyContexts, Link, LinkIds, Links, PolicyRule, PolicyRuleIds, PolicyRules, @@ -51,8 +51,6 @@ RESOURCES = [ ('api.devices', Devices, '/devices'), ('api.device', Device, '/device/'), - ('api.deviceshw', Deviceshw, '/device//hardware'), - ('api.link_ids', LinkIds, '/link_ids'), ('api.links', Links, '/links'), ('api.link', Link, '/link/'), -- GitLab From 9582bd70581b9746dc008bf8e7aeded53bb24f40 Mon Sep 17 00:00:00 2001 From: armingol Date: Tue, 11 Jun 2024 17:39:45 +0200 Subject: [PATCH 6/6] code clean up --- src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py | 2 +- src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py b/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py index 388de6893..ce60bdea3 100644 --- a/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py +++ b/src/nbi/service/rest_server/nbi_plugins/tfs_api/Resources.py @@ -173,7 +173,7 @@ class Devices(_Resource): class Device(_Resource): def get(self, device_uuid : str): return format_grpc_to_json(self.client.GetDevice(grpc_device_id(device_uuid))) - + class LinkIds(_Resource): def get(self): return format_grpc_to_json(self.client.ListLinkIds(Empty())) diff --git a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py index 6faef7d9c..41e8ff1ea 100644 --- a/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py +++ b/src/nbi/service/rest_server/nbi_plugins/tfs_api/__init__.py @@ -50,7 +50,7 @@ RESOURCES = [ ('api.device_ids', DeviceIds, '/device_ids'), ('api.devices', Devices, '/devices'), ('api.device', Device, '/device/'), - + ('api.link_ids', LinkIds, '/link_ids'), ('api.links', Links, '/links'), ('api.link', Link, '/link/'), -- GitLab