ONF vendor logo

Vendor

ONF

Product

TAPI

Method

REST

Category

Data Center

Network Services

Project Type

Adapter


View Repository
Adapter

Adapter for Integration to ONF TAPI

Overview

This adapter is used to integrate the Itential Automation Platform (IAP) with the Tapi System. The API that was used to build the adapter for Tapi is usually available in the report directory of this adapter. The adapter utilizes the Tapi API to provide the integrations that are deemed pertinent to IAP. The ReadMe file is intended to provide information on this adapter it is generated from various other Markdown files.

For further technical details on how to install and use this adapter, please click the Technical Documentation tab.

Tapi

Table of Contents

Getting Started

These instructions will help you get a copy of the project on your local machine for development and testing. Reading this section is also helpful for deployments as it provides you with pertinent information on prerequisites and properties.

Helpful Background Information

There is Adapter documentation available on the Itential Documentation Site. This documentation includes information and examples that are helpful for:

Authentication
IAP Service Instance Configuration
Code Files
Endpoint Configuration (Action & Schema)
Mock Data
Adapter Generic Methods
Headers
Security
Linting and Testing
Build an Adapter
Troubleshooting an Adapter

Others will be added over time. Want to build a new adapter? Use the Itential Adapter Builder

Prerequisites

The following is a list of required packages for installation on the system the adapter will run on:

Node.js
npm
Git

The following list of packages are required for Itential opensource adapters or custom adapters that have been built utilizing the Itential Adapter Builder. You can install these packages by running npm install inside the adapter directory.

PackageDescription
@itentialopensource/adapter-utilsRuntime library classes for all adapters; includes request handling, connection, authentication throttling, and translation.
ajvRequired for validation of adapter properties to integrate with Tapi.
axiosUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
commanderUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
dns-lookup-promiseUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
fs-extraUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
mochaTesting library that is utilized by some of the node scripts that are included with the adapter.
mocha-paramTesting library that is utilized by some of the node scripts that are included with the adapter.
mongodbUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
nycTesting coverage library that is utilized by some of the node scripts that are included with the adapter.
pingUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
readline-syncUtilized by the node script that comes with the adapter; helps to test unit and integration functionality.
semverUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
winstonUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.

If you are developing and testing a custom adapter, or have testing capabilities on an Itential opensource adapter, you will need to install these packages as well.

chai
eslint
eslint-config-airbnb-base
eslint-plugin-import
eslint-plugin-json
testdouble

How to Install

  1. Set up the name space location in your IAP node_modules.
cd /opt/pronghorn/current/node_modules (* could be in a different place)
if the @itentialopensource directory does not exist, create it:
    mkdir @itentialopensource
  1. Clone/unzip/tar the adapter into your IAP environment.
cd \@itentialopensource
git clone git@gitlab.com:\@itentialopensource/adapters/adapter-tapi
or
unzip adapter-tapi.zip
or
tar -xvf adapter-tapi.tar
  1. Run the adapter install script.
cd adapter-tapi
npm install
npm run lint:errors
npm run test
  1. Restart IAP
systemctl restart pronghorn
  1. Create an adapter service instance configuration in IAP Admin Essentials GUI

  2. Copy the properties from the sampleProperties.json and paste them into the service instance configuration in the inner/second properties field.

  3. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI

For an easier install of the adapter use npm run adapter:install, it will install the adapter in IAP. Please note that it can be dependent on where the adapter is installed and on the version of IAP so it is subject to fail. If using this, you can replace step 3-5 above with these:

  1. Install adapter dependencies and check the adapter.
cd adapter-tapi
npm run adapter:install
  1. Restart IAP
systemctl restart pronghorn
  1. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI

Testing

Mocha is generally used to test all Itential Opensource Adapters. There are unit tests as well as integration tests performed. Integration tests can generally be run as standalone using mock data and running the adapter in stub mode, or as integrated. When running integrated, every effort is made to prevent environmental failures, however there is still a possibility.

Unit Testing

Unit Testing includes testing basic adapter functionality as well as error conditions that are triggered in the adapter prior to any integration. There are two ways to run unit tests. The prefered method is to use the testRunner script; however, both methods are provided here.

node utils/testRunner --unit

npm run test:unit
npm run test:baseunit

To add new unit tests, edit the test/unit/adapterTestUnit.js file. The tests that are already in this file should provide guidance for adding additional tests.

Integration Testing - Standalone

Standalone Integration Testing requires mock data to be provided with the entities. If this data is not provided, standalone integration testing will fail. When the adapter is set to run in stub mode (setting the stub property to true), the adapter will run through its code up to the point of making the request. It will then retrieve the mock data and return that as if it had received that data as the response from Tapi. It will then translate the data so that the adapter can return the expected response to the rest of the Itential software. Standalone is the default integration test.

Similar to unit testing, there are two ways to run integration tests. Using the testRunner script is better because it prevents you from having to edit the test script; it will also resets information after testing is complete so that credentials are not saved in the file.

node utils/testRunner
  answer no at the first prompt

npm run test:integration

To add new integration tests, edit the test/integration/adapterTestIntegration.js file. The tests that are already in this file should provide guidance for adding additional tests.

Integration Testing

Integration Testing requires connectivity to Tapi. By using the testRunner script it prevents you from having to edit the integration test. It also resets the integration test after the test is complete so that credentials are not saved in the file.

Note: These tests have been written as a best effort to make them work in most environments. However, the Adapter Builder often does not have the necessary information that is required to set up valid integration tests. For example, the order of the requests can be very important and data is often required for creates and updates. Hence, integration tests may have to be enhanced before they will work (integrate) with Tapi. Even after tests have been set up properly, it is possible there are environmental constraints that could result in test failures. Some examples of possible environmental issues are customizations that have been made within Tapi which change order dependencies or required data.

node utils/testRunner
answer yes at the first prompt
answer all other questions on connectivity and credentials

Test should also be written to clean up after themselves. However, it is important to understand that in some cases this may not be possible. In addition, whenever exceptions occur, test execution may be stopped, which will prevent cleanup actions from running. It is recommended that tests be utilized in dev and test labs only.

Reminder: Do not check in code with actual credentials to systems.

Configuration

This section defines all the properties that are available for the adapter, including detailed information on what each property is for. If you are not using certain capabilities with this adapter, you do not need to define all of the properties. An example of how the properties for this adapter can be used with tests or IAP are provided in the sampleProperties.

Example Properties

  "properties": {
    "host": "localhost",
    "port": 443,
    "choosepath": "",
    "base_path": "/",
    "version": "",
    "cache_location": "none",
    "encode_pathvars": true,
    "encode_queryvars": true,
    "save_metric": false,
    "stub": true,
    "protocol": "https",
    "authentication": {
      "auth_method": "basic user_password",
      "username": "username",
      "password": "password",
      "token": "token",
      "token_timeout": 600000,
      "token_cache": "local",
      "invalid_token_error": 401,
      "auth_field": "header.headers.X-AUTH-TOKEN",
      "auth_field_format": "{token}",
      "auth_logging": false,
      "client_id": "",
      "client_secret": "",
      "grant_type": "",
      "sensitive": [],
      "sso": {
        "protocol": "",
        "host": "",
        "port": 0
      },
      "multiStepAuthCalls": [
        {
          "name": "",
          "requestFields": {},
          "responseFields": {},
          "successfullResponseCode": 200
        }
      ]
    },
    "healthcheck": {
      "type": "startup",
      "frequency": 60000,
      "query_object": {},
      "addlHeaders": {}
    },
    "throttle": {
      "throttle_enabled": false,
      "number_pronghorns": 1,
      "sync_async": "sync",
      "max_in_queue": 1000,
      "concurrent_max": 1,
      "expire_timeout": 0,
      "avg_runtime": 200,
      "priorities": [
        {
          "value": 0,
          "percent": 100
        }
      ]
    },
    "request": {
      "number_redirects": 0,
      "number_retries": 3,
      "limit_retry_error": [
        0
      ],
      "failover_codes": [],
      "attempt_timeout": 5000,
      "global_request": {
        "payload": {},
        "uriOptions": {},
        "addlHeaders": {},
        "authData": {}
      },
      "healthcheck_on_timeout": true,
      "return_raw": false,
      "archiving": false,
      "return_request": false
    },
    "proxy": {
      "enabled": false,
      "host": "",
      "port": 1,
      "protocol": "http",
      "username": "",
      "password": ""
    },
    "ssl": {
      "ecdhCurve": "",
      "enabled": false,
      "accept_invalid_cert": false,
      "ca_file": "",
      "key_file": "",
      "cert_file": "",
      "secure_protocol": "",
      "ciphers": ""
    },
    "mongo": {
      "host": "",
      "port": 0,
      "database": "",
      "username": "",
      "password": "",
      "replSet": "",
      "db_ssl": {
        "enabled": false,
        "accept_invalid_cert": false,
        "ca_file": "",
        "key_file": "",
        "cert_file": ""
      }
    },
    "devicebroker": {
      "getDevice": [
        {
          "path": "/get/devices/{id}",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {
            "name": "host",
            "ostype": "os",
            "ostypePrefix": "system-",
            "ipaddress": "attributes.ipaddr",
            "port": "443"
          }
        }
      ],
      "getDevicesFiltered": [
        {
          "path": "/get/devices",
          "method": "GET",
          "pagination": {
            "offsetVar": "",
            "limitVar": "",
            "incrementBy": "limit",
            "requestLocation": "query"
          },
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {},
          "responseDatakey": "",
          "responseFields": {
            "name": "host",
            "ostype": "os",
            "ostypePrefix": "system-",
            "ipaddress": "attributes.ipaddr",
            "port": "443"
          }
        }
      ],
      "isAlive": [
        {
          "path": "/get/devices/{id}/status",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {
            "status": "status",
            "statusValue": "online"
          }
        }
      ],
      "getConfig": [
        {
          "path": "/get/devices/{id}/configPart1",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {}
        }
      ],
      "getCount": [
        {
          "path": "/get/devices",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {},
          "responseDatakey": "",
          "responseFields": {}
        }
      ]
    },
    "cache": {
      "enabled": false,
      "entities": [
        {
          "entityType": "",
          "frequency": 1440,
          "flushOnFail": false,
          "limit": 1000,
          "retryAttempts": 5,
          "sort": true,
          "populate": [
            {
              "path": "",
              "method": "GET",
              "pagination": {
                "offsetVar": "",
                "limitVar": "",
                "incrementBy": "limit",
                "requestLocation": "query"
              },
              "query": {},
              "body": {},
              "headers": {},
              "handleFailure": "ignore",
              "requestFields": {},
              "responseDatakey": "",
              "responseFields": {}
            }
          ],
          "cachedTasks": [
            {
              "name": "",
              "filterField": "",
              "filterLoc": ""
            }
          ]
        }
      ]
    }
  }

Connection Properties

These base properties are used to connect to Tapi upon the adapter initially coming up. It is important to set these properties appropriately.

PropertyDescription
hostRequired. A fully qualified domain name or IP address.
portRequired. Used to connect to the server.
base_pathOptional. Used to define part of a path that is consistent for all or most endpoints. It makes the URIs easier to use and maintain but can be overridden on individual calls. An example **base_path** might be `/rest/api`. Default is ``.
versionOptional. Used to set a global version for action endpoints. This makes it faster to update the adapter when endpoints change. As with the base-path, version can be overridden on individual endpoints. Default is ``.
cache_locationOptional. Used to define where the adapter cache is located. The cache is used to maintain an entity list to improve performance. Storage locally is lost when the adapter is restarted. Storage in Redis is preserved upon adapter restart. Default is none which means no caching of the entity list.
encode_pathvarsOptional. Used to tell the adapter to encode path variables or not. The default behavior is to encode them so this property can be used to stop that behavior.
encode_queryvarsOptional. Used to tell the adapter to encode query parameters or not. The default behavior is to encode them so this property can be used to stop that behavior.
save_metricOptional. Used to tell the adapter to save metric information (this does not impact metrics returned on calls). This allows the adapter to gather metrics over time. Metric data can be stored in a database or on the file system.
stubOptional. Indicates whether the stub should run instead of making calls to Tapi (very useful during basic testing). Default is false (which means connect to Tapi).
protocolOptional. Notifies the adapter whether to use HTTP or HTTPS. Default is HTTP.

A connectivity check tells IAP the adapter has loaded successfully.

Authentication Properties

The following properties are used to define the authentication process to Tapi.

Note: Depending on the method that is used to authenticate with Tapi, you may not need to set all of the authentication properties.

PropertyDescription
auth_methodRequired. Used to define the type of authentication currently supported. Authentication methods currently supported are: `basic user_password`, `static_token`, `request_token`, and `no_authentication`.
usernameUsed to authenticate with Tapi on every request or when pulling a token that will be used in subsequent requests.
passwordUsed to authenticate with Tapi on every request or when pulling a token that will be used in subsequent requests.
tokenDefines a static token that can be used on all requests. Only used with `static_token` as an authentication method (auth\_method).
invalid_token_errorDefines the HTTP error that is received when the token is invalid. Notifies the adapter to pull a new token and retry the request. Default is 401.
token_timeoutDefines how long a token is valid. Measured in milliseconds. Once a dynamic token is no longer valid, the adapter has to pull a new token. If the token_timeout is set to -1, the adapter will pull a token on every request to Tapi. If the timeout_token is 0, the adapter will use the expiration from the token response to determine when the token is no longer valid.
token_cacheUsed to determine where the token should be stored (local memory or in Redis).
auth_fieldDefines the request field the authentication (e.g., token are basic auth credentials) needs to be placed in order for the calls to work.
auth_field_formatDefines the format of the auth\_field. See examples below. Items enclosed in {} inform the adapter to perofrm an action prior to sending the data. It may be to replace the item with a value or it may be to encode the item.
auth_loggingSetting this true will add some additional logs but this should only be done when trying to debug an issue as certain credential information may be logged out when this is true.
client_idProvide a client id when needed, this is common on some types of OAuth.
client_secretProvide a client secret when needed, this is common on some types of OAuth.
grant_typeProvide a grant type when needed, this is common on some types of OAuth.

Examples of authentication field format

"{token}"
"Token {token}"
"{username}:{password}"
"Basic {b64}{username}:{password}{/b64}"

Healthcheck Properties

The healthcheck properties defines the API that runs the healthcheck to tell the adapter that it can reach Tapi. There are currently three types of healthchecks.

  • None - Not recommended. Adapter will not run a healthcheck. Consequently, unable to determine before making a request if the adapter can reach Tapi.
  • Startup - Adapter will check for connectivity when the adapter initially comes up, but it will not check afterwards.
  • Intermittent - Adapter will check connectivity to Tapi at a frequency defined in the frequency property.
PropertyDescription
typeRequired. The type of health check to run.
frequencyRequired if intermittent. Defines how often the health check should run. Measured in milliseconds. Default is 300000.
query_objectQuery parameters to be added to the adapter healthcheck call.

Request Properties

The request section defines properties to help handle requests.

PropertyDescription
number_redirectsOptional. Tells the adapter that the request may be redirected and gives it a maximum number of redirects to allow before returning an error. Default is 0 - no redirects.
number_retriesTells the adapter how many times to retry a request that has either aborted or reached a limit error before giving up and returning an error.
limit_retry_errorOptional. Can be either an integer or an array. Indicates the http error status number to define that no capacity was available and, after waiting a short interval, the adapter can retry the request. If an array is provvided, the array can contain integers or strings. Strings in the array are used to define ranges (e.g. "502-506"). Default is [0].
failover_codesAn array of error codes for which the adapter will send back a failover flag to IAP so that the Platform can attempt the action in another adapter.
attempt_timeoutOptional. Tells how long the adapter should wait before aborting the attempt. On abort, the adapter will do one of two things: 1) return the error; or 2) if **healthcheck\_on\_timeout** is set to true, it will abort the request and run a Healthcheck until it re-establishes connectivity to Tapi, and then will re-attempt the request that aborted. Default is 5000 milliseconds.
global_requestOptional. This is information that the adapter can include in all requests to the other system. This is easier to define and maintain than adding this information in either the code (adapter.js) or the action files.
global_request -> payloadOptional. Defines any information that should be included on all requests sent to the other system that have a payload/body.
global_request -> uriOptionsOptional. Defines any information that should be sent as untranslated query options (e.g. page, size) on all requests to the other system.
global_request -> addlHeadersOptioonal. Defines any headers that should be sent on all requests to the other system.
global_request -> authDataOptional. Defines any additional authentication data used to authentice with the other system. This authData needs to be consistent on every request.
healthcheck_on_timeoutRequired. Defines if the adapter should run a health check on timeout. If set to true, the adapter will abort the request and run a health check until it re-establishes connectivity and then it will re-attempt the request.
return_rawOptional. Tells the adapter whether the raw response should be returned as well as the IAP response. This is helpful when running integration tests to save mock data. It does add overhead to the response object so it is not ideal from production.
archivingOptional flag. Default is false. It archives the request, the results and the various times (wait time, Tapi time and overall time) in the `adapterid_results` collection in MongoDB. Although archiving might be desirable, be sure to develop a strategy before enabling this capability. Consider how much to archive and what strategy to use for cleaning up the collection in the database so that it does not become too large, especially if the responses are large.
return_requestOptional flag. Default is false. Will return the actual request that is made including headers. This should only be used during debugging issues as there could be credentials in the actual request.

SSL Properties

The SSL section defines the properties utilized for ssl authentication with Tapi. SSL can work two different ways: set the accept\_invalid\_certs flag to true (only recommended for lab environments), or provide a ca\_file.

PropertyDescription
enabledIf SSL is required, set to true.
accept_invalid_certsDefines if the adapter should accept invalid certificates (only recommended for lab environments). Required if SSL is enabled. Default is false.
ca_fileDefines the path name to the CA file used for SSL. If SSL is enabled and the accept invalid certifications is false, then ca_file is required.
key_fileDefines the path name to the Key file used for SSL. The key_file may be needed for some systems but it is not required for SSL.
cert_fileDefines the path name to the Certificate file used for SSL. The cert_file may be needed for some systems but it is not required for SSL.
secure_protocolDefines the protocol (e.g., SSLv3_method) to use on the SSL request.
ciphersRequired if SSL enabled. Specifies a list of SSL ciphers to use.
ecdhCurveDuring testing on some Node 8 environments, you need to set `ecdhCurve` to auto. If you do not, you will receive PROTO errors when attempting the calls. This is the only usage of this property and to our knowledge it only impacts Node 8 and 9.

Throttle Properties

The throttle section is used when requests to Tapi must be queued (throttled). All of the properties in this section are optional.

PropertyDescription
throttle_enabledDefault is false. Defines if the adapter should use throttling or not.
number_pronghornsDefault is 1. Defines if throttling is done in a single Itential instance or whether requests are being throttled across multiple Itential instances (minimum = 1, maximum = 20). Throttling in a single Itential instance uses an in-memory queue so there is less overhead. Throttling across multiple Itential instances requires placing the request and queue information into a shared resource (e.g. database) so that each instance can determine what is running and what is next to run. Throttling across multiple instances requires additional I/O overhead.
sync-asyncThis property is not used at the current time (it is for future expansion of the throttling engine).
max_in_queueRepresents the maximum number of requests the adapter should allow into the queue before rejecting requests (minimum = 1, maximum = 5000). This is not a limit on what the adapter can handle but more about timely responses to requests. The default is currently 1000.
concurrent_maxDefines the number of requests the adapter can send to Tapi at one time (minimum = 1, maximum = 1000). The default is 1 meaning each request must be sent to Tapi in a serial manner.
expire_timeoutDefault is 0. Defines a graceful timeout of the request session. After a request has completed, the adapter will wait additional time prior to sending the next request. Measured in milliseconds (minimum = 0, maximum = 60000).
average_runtimeRepresents the approximate average of how long it takes Tapi to handle each request. Measured in milliseconds (minimum = 50, maximum = 60000). Default is 200. This metric has performance implications. If the runtime number is set too low, it puts extra burden on the CPU and memory as the requests will continually try to run. If the runtime number is set too high, requests may wait longer than they need to before running. The number does not need to be exact but your throttling strategy depends heavily on this number being within reason. If averages range from 50 to 250 milliseconds you might pick an average run-time somewhere in the middle so that when Tapi performance is exceptional you might run a little slower than you might like, but when it is poor you still run efficiently.
prioritiesAn array of priorities and how to handle them in relation to the throttle queue. Array of objects that include priority value and percent of queue to put the item ex { value: 1, percent: 10 }

Proxy Properties

The proxy section defines the properties to utilize when Tapi is behind a proxy server.

PropertyDescription
enabledRequired. Default is false. If Tapi is behind a proxy server, set enabled flag to true.
hostHost information for the proxy server. Required if `enabled` is true.
portPort information for the proxy server. Required if `enabled` is true.
protocolThe protocol (i.e., http, https, etc.) used to connect to the proxy. Default is http.
usernameIf there is authentication for the proxy, provide the username here.
passwordIf there is authentication for the proxy, provide the password here.

Mongo Properties

The mongo section defines the properties used to connect to a Mongo database. Mongo can be used for throttling as well as to persist metric data. If not provided, metrics will be stored in the file system.

PropertyDescription
hostOptional. Host information for the mongo server.
portOptional. Port information for the mongo server.
databaseOptional. The database for the adapter to use for its data.
usernameOptional. If credentials are required to access mongo, this is the user to login as.
passwordOptional. If credentials are required to access mongo, this is the password to login with.
replSetOptional. If the database is set up to use replica sets, define it here so it can be added to the database connection.
db_sslOptional. Contains information for SSL connectivity to the database.
db_ssl -> enabledIf SSL is required, set to true.
db_ssl -> accept_invalid_certDefines if the adapter should accept invalid certificates (only recommended for lab environments). Required if SSL is enabled. Default is false.
db_ssl -> ca_fileDefines the path name to the CA file used for SSL. If SSL is enabled and the accept invalid certifications is false, then ca_file is required.
db_ssl -> key_fileDefines the path name to the Key file used for SSL. The key_file may be needed for some systems but it is not required for SSL.
db_ssl -> cert_fileDefines the path name to the Certificate file used for SSL. The cert_file may be needed for some systems but it is not required for SSL.

Device Broker Properties

The device broker section defines the properties used integrate Tapi to the device broker. Each broker call is represented and has an array of calls that can be used to build the response. This describes the calls and then the fields which are available in the calls.

PropertyDescription
getDeviceThe array of calls used to get device details for the broker
getDevicesFilteredThe array of calls used to get devices for the broker
isAliveThe array of calls used to get device status for the broker
getConfigThe array of calls used to get device configuration for the broker
getCountThe array of calls used to get device configuration for the broker
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> pathThe path, not including the base_path and version, for making this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> methodThe rest method for making this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> queryQuery object containing and query parameters and their values for this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> bodyBody object containing the payload for this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> headersHeader object containing the headers for this call.
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> handleFailureTells the adapter whether to "fail" or "ignore" failures if they occur.
isAlive -> statusValueTells the adapter what value to look for in the status field to determine if the device is alive.
getDevice/getDevicesFiltered/isAlive/getConfig -> requestFieldsObject containing fields the adapter should send on the request and where it should get the data. The where can be from a response to a getDevicesFiltered or a static value.
getDevice/getDevicesFiltered/isAlive/getConfig -> responseFieldsObject containing fields the adapter should set to send back to iap and where the value should come from in the response or request data.

Using this Adapter

The adapter.js file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.

Generic Adapter Calls

These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.

Method SignatureDescriptionWorkflow?
connect()This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.No
healthCheck(callback)This call ensures that the adapter can communicate with Tapi. The actual call that is used is defined in the adapter properties and .system entities action.json file.No
refreshProperties(properties)This call provides the adapter the ability to accept property changes without having to restart the adapter.No
encryptProperty(property, technique, callback)This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with Tapi.No
iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.Yes
iapFindAdapterPath(apiPath, callback)This call provides the ability to see if a particular API path is supported by the adapter.Yes
iapSuspendAdapter(mode, callback)This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.Yes
iapUnsuspendAdapter(callback)This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.Yes
iapGetAdapterQueue(callback)This call will return the requests that are waiting in the queue if throttling is enabled.Yes
iapTroubleshootAdapter(props, persistFlag, adapter, callback)This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.Yes
iapRunAdapterHealthcheck(adapter, callback)This call will return the results of a healthcheck.Yes
iapRunAdapterConnectivity(callback)This call will return the results of a connectivity check.Yes
iapRunAdapterBasicGet(callback)This call will return the results of running basic get API calls.Yes
iapMoveAdapterEntitiesToDB(callback)This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.Yes
genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.Yes
genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.Yes
iapHasAdapterEntity(entityType, entityId, callback)This call verifies the adapter has the specific entity.No
iapVerifyAdapterCapability(entityType, actionType, entityId, callback)This call verifies the adapter can perform the provided action on the specific entity.No
iapUpdateAdapterEntityCache()This call will update the entity cache.No

Adapter Broker Calls

These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.

Method SignatureDescriptionWorkflow?
hasEntities(entityType, entityList, callback)This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.No
getDevice(deviceName, callback)This call returns the details of the requested device.Yes
getDevicesFiltered(options, callback)This call returns the list of devices that match the criteria provided in the options filter.Yes
isAlive(deviceName, callback)This call returns whether the device status is activeYes
getConfig(deviceName, format, callback)This call returns the configuration for the selected device.Yes
iapGetDeviceCount(callback)This call returns the count of devices.Yes

Specific Adapter Calls

Specific adapter calls are built based on the API of the Tapi. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.

Method SignatureDescriptionPathWorkflow?
getContext(callback)returns tapi.common.Context{base_path}/{version}/data/tapi-common:context/?{query}Yes
postContext(tapiCommonContextBodyParam, callback)creates tapi.common.Context{base_path}/{version}/data/tapi-common:context/?{query}Yes
putContext(tapiCommonContextBodyParam, callback)creates or updates tapi.common.Context{base_path}/{version}/data/tapi-common:context/?{query}Yes
deleteContext(callback)removes tapi.common.Context{base_path}/{version}/data/tapi-common:context/?{query}Yes
postContextName(tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/name/?{query}Yes
getContextNameWithvalueName(valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/name={pathv1}/?{query}Yes
putContextNameWithvalueName(valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/name={pathv1}/?{query}Yes
deleteContextNameWithvalueName(valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/name={pathv1}/?{query}Yes
postContextProfile(tapiCommonContextProfileBodyParam, callback)creates tapi.common.context.Profile{base_path}/{version}/data/tapi-common:context/profile/?{query}Yes
getContextProfileWithuuid(uuid, callback)returns tapi.common.context.Profile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/?{query}Yes
putContextProfileWithuuid(uuid, tapiCommonContextProfileBodyParam, callback)creates or updates tapi.common.context.Profile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/?{query}Yes
deleteContextProfileWithuuid(uuid, callback)removes tapi.common.context.Profile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/?{query}Yes
postContextProfileWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/name/?{query}Yes
getContextProfileWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/name={pathv2}/?{query}Yes
putContextProfileWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/name={pathv2}/?{query}Yes
deleteContextProfileWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/name={pathv2}/?{query}Yes
getContextProfileWithuuidTransmissionCapabilityProfile(uuid, callback)returns tapi.common.TransmissionCapabilityProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/?{query}Yes
postContextProfileWithuuidTransmissionCapabilityProfile(uuid, tapiCommonTransmissionCapabilityProfileBodyParam, callback)creates tapi.common.TransmissionCapabilityProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/?{query}Yes
putContextProfileWithuuidTransmissionCapabilityProfile(uuid, tapiCommonTransmissionCapabilityProfileBodyParam, callback)creates or updates tapi.common.TransmissionCapabilityProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/?{query}Yes
deleteContextProfileWithuuidTransmissionCapabilityProfile(uuid, callback)removes tapi.common.TransmissionCapabilityProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/?{query}Yes
getContextProfileWithuuidTransmissionCapabilityProfilePotentialPayloadStructure(uuid, callback)returns tapi.common.PayloadStructure{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/potential-payload-structure/?{query}Yes
getContextProfileWithuuidTransmissionCapabilityProfilePotentialPayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/potential-payload-structure/capacity/?{query}Yes
postContextServiceInterfacePoint(tapiCommonServiceInterfacePointBodyParam, callback)creates tapi.common.ServiceInterfacePoint{base_path}/{version}/data/tapi-common:context/service-interface-point/?{query}Yes
getContextServiceInterfacePointWithuuid(uuid, callback)returns tapi.common.ServiceInterfacePoint{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/?{query}Yes
putContextServiceInterfacePointWithuuid(uuid, tapiCommonServiceInterfacePointBodyParam, callback)creates or updates tapi.common.ServiceInterfacePoint{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/?{query}Yes
deleteContextServiceInterfacePointWithuuid(uuid, callback)removes tapi.common.ServiceInterfacePoint{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/?{query}Yes
getContextServiceInterfacePointWithuuidAvailableCapacity(uuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/available-capacity/?{query}Yes
getContextServiceInterfacePointWithuuidAvailableCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/available-capacity/total-size/?{query}Yes
getContextServiceInterfacePointWithuuidAvailableCepLayerProtocolQualifierInstances(uuid, callback)returns tapi.common.SupportedLayerProtocolQualifier{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/available-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextServiceInterfacePointWithuuidAvailablePayloadStructure(uuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/available-payload-structure/?{query}Yes
getContextServiceInterfacePointWithuuidAvailablePayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/available-payload-structure/capacity/?{query}Yes
postContextServiceInterfacePointWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/name/?{query}Yes
getContextServiceInterfacePointWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/name={pathv2}/?{query}Yes
putContextServiceInterfacePointWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/name={pathv2}/?{query}Yes
deleteContextServiceInterfacePointWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/name={pathv2}/?{query}Yes
getContextServiceInterfacePointWithuuidProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/profile={pathv2}/?{query}Yes
getContextServiceInterfacePointWithuuidSinkProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/sink-profile={pathv2}/?{query}Yes
getContextServiceInterfacePointWithuuidSourceProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/source-profile={pathv2}/?{query}Yes
getContextServiceInterfacePointWithuuidSupportedCepLayerProtocolQualifierInstances(uuid, callback)returns tapi.common.SupportedLayerProtocolQualifier1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/supported-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextServiceInterfacePointWithuuidSupportedPayloadStructure(uuid, callback)returns tapi.common.PayloadStructure2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/supported-payload-structure/?{query}Yes
getContextServiceInterfacePointWithuuidSupportedPayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/supported-payload-structure/capacity/?{query}Yes
getContextServiceInterfacePointWithuuidTotalPotentialCapacity(uuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/total-potential-capacity/?{query}Yes
getContextServiceInterfacePointWithuuidTotalPotentialCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue4{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/total-potential-capacity/total-size/?{query}Yes
postGetServiceInterfacePointDetails(tapiCommonGetserviceinterfacepointdetailsInputBodyParam, callback)operates on tapi.common.GetServiceInterfacePointDetails{base_path}/{version}/operations/tapi-common:get-service-interface-point-details/?{query}Yes
postGetServiceInterfacePointList(callback)OperationsTapiCommonGetServiceInterfacePointList_POST{base_path}/{version}/operations/tapi-common:get-service-interface-point-list/?{query}Yes
postUpdateServiceInterfacePoint(tapiCommonUpdateserviceinterfacepointInputBodyParam, callback)operates on tapi.common.UpdateServiceInterfacePoint{base_path}/{version}/operations/tapi-common:update-service-interface-point/?{query}Yes
getContextConnectivityContext(callback)returns tapi.connectivity.context.ConnectivityContext{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/?{query}Yes
postContextConnectivityContext(tapiConnectivityContextConnectivityContextBodyParam, callback)creates tapi.connectivity.context.ConnectivityContext{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/?{query}Yes
putContextConnectivityContext(tapiConnectivityContextConnectivityContextBodyParam, callback)creates or updates tapi.connectivity.context.ConnectivityContext{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/?{query}Yes
deleteContextConnectivityContext(callback)removes tapi.connectivity.context.ConnectivityContext{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/?{query}Yes
getContextConnectivityContextConnectionWithuuid(uuid, callback)returns tapi.connectivity.Connection{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/?{query}Yes
getContextConnectivityContextConnectionWithuuidBoundingNode(uuid, callback)returns tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/bounding-node/?{query}Yes
getContextConnectivityContextConnectionWithuuidConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextConnectivityContextConnectionWithuuidConnectionSpecReference(uuid, callback)returns tapi.connectivity.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/connection-spec-reference/?{query}Yes
getContextConnectivityContextConnectionWithuuidLowerConnectionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/lower-connection={pathv2}/?{query}Yes
getContextConnectivityContextConnectionWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/name={pathv2}/?{query}Yes
getContextConnectivityContextConnectionWithuuidRouteWithlocalId(uuid, localId, callback)returns tapi.connectivity.Route{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/route={pathv2}/?{query}Yes
getContextConnectivityContextConnectionWithuuidRouteWithlocalIdConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/route={pathv2}/connection-end-point={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextConnectivityContextConnectionWithuuidRouteWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/route={pathv2}/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectionWithuuidRouteWithlocalIdResilienceRoute(uuid, localId, callback)returns tapi.connectivity.ResilienceRoute{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/route={pathv2}/resilience-route/?{query}Yes
getContextConnectivityContextConnectionWithuuidServerConnectionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/server-connection={pathv2}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSupportedClientLinkWithtopologyUuidLinkUuid(uuid, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/supported-client-link={pathv2},{pathv3}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuid(uuid, switchControlUuid, callback)returns tapi.connectivity.SwitchControl{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParameters(uuid, switchControlUuid, callback)returns tapi.connectivity.ResilienceConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResilienceType(uuid, switchControlUuid, callback)returns tapi.topology.ResilienceType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resilience-type/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalId(uuid, switchControlUuid, localId, callback)returns tapi.connectivity.ResiliencyRouteConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdNameWithvalueName(uuid, switchControlUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/name={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristicWithcostName(uuid, switchControlUuid, localId, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/cost-characteristic={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, switchControlUuid, localId, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/latency-characteristic={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/max-allowed-cost/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/max-allowed-delay/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/max-allowed-hops/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, switchControlUuid, localId, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/risk-diversity-characteristic={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLinkWithtopologyUuidLinkUuid(uuid, switchControlUuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-link={pathv4},{pathv5}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeWithtopologyUuidNodeUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-node={pathv4},{pathv5}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePathWithpathUuid(uuid, switchControlUuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-path={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopologyWithtopologyUuid(uuid, switchControlUuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-topology={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLinkWithtopologyUuidLinkUuid(uuid, switchControlUuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-link={pathv4},{pathv5}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeWithtopologyUuidNodeUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-node={pathv4},{pathv5}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePathWithpathUuid(uuid, switchControlUuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-path={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopologyWithtopologyUuid(uuid, switchControlUuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-topology={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintNameWithvalueName(uuid, switchControlUuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/name={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidNameWithvalueName(uuid, switchControlUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidSubSwitchControlWithconnectionUuidSubSwitchControlSwitchControlUuid(uuid, switchControlUuid, connectionUuid, subSwitchControlSwitchControlUuid, callback)returns tapi.connectivity.SwitchControlRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/sub-switch-control={pathv3},{pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidSwitchWithlocalId(uuid, switchControlUuid, localId, callback)returns tapi.connectivity.Switch{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/switch={pathv3}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidSwitchWithlocalIdNameWithvalueName(uuid, switchControlUuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/switch={pathv3}/name={pathv4}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidSwitchWithlocalIdSelectedConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/switch={pathv3}/selected-connection-end-point={pathv4},{pathv5},{pathv6},{pathv7}/?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidSwitchWithlocalIdSelectedRouteWithconnectionUuidRouteLocalId(uuid, switchControlUuid, localId, connectionUuid, routeLocalId, callback)returns tapi.connectivity.RouteRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/switch={pathv3}/selected-route={pathv4},{pathv5}/?{query}Yes
postContextConnectivityContextConnectivityService(tapiConnectivityConnectivitycontextConnectivityServiceBodyParam, callback)creates tapi.connectivity.connectivitycontext.ConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuid(uuid, callback)returns tapi.connectivity.connectivitycontext.ConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuid(uuid, tapiConnectivityConnectivitycontextConnectivityServiceBodyParam, callback)creates or updates tapi.connectivity.connectivitycontext.ConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuid(uuid, callback)removes tapi.connectivity.connectivitycontext.ConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connection={pathv2}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraint(uuid, callback)returns tapi.connectivity.ConnectivityConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraint(uuid, tapiConnectivityConnectivityConstraintBodyParam, callback)creates tapi.connectivity.ConnectivityConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraint(uuid, tapiConnectivityConnectivityConstraintBodyParam, callback)creates or updates tapi.connectivity.ConnectivityConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraint(uuid, callback)removes tapi.connectivity.ConnectivityConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionExclusion(uuid, tapiConnectivityConnectionRefBodyParam, callback)creates tapi.connectivity.ConnectionRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-exclusion/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionExclusionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-exclusion={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionExclusionWithconnectionUuid(uuid, connectionUuid, tapiConnectivityConnectionRefBodyParam, callback)creates or updates tapi.connectivity.ConnectionRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-exclusion={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionExclusionWithconnectionUuid(uuid, connectionUuid, callback)removes tapi.connectivity.ConnectionRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-exclusion={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionInclusion(uuid, tapiConnectivityConnectionRefBodyParam, callback)creates tapi.connectivity.ConnectionRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-inclusion/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionInclusionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-inclusion={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionInclusionWithconnectionUuid(uuid, connectionUuid, tapiConnectivityConnectionRefBodyParam, callback)creates or updates tapi.connectivity.ConnectionRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-inclusion={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintConnectionInclusionWithconnectionUuid(uuid, connectionUuid, callback)removes tapi.connectivity.ConnectionRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/connection-inclusion={pathv2}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintCorouteInclusion(uuid, callback)returns tapi.connectivity.ConnectivityServiceRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/coroute-inclusion/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintCorouteInclusion(uuid, tapiConnectivityConnectivityServiceRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/coroute-inclusion/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintCorouteInclusion(uuid, tapiConnectivityConnectivityServiceRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/coroute-inclusion/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintCorouteInclusion(uuid, callback)removes tapi.connectivity.ConnectivityServiceRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/coroute-inclusion/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintDiversityExclusion(uuid, tapiConnectivityConnectivityServiceRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/diversity-exclusion/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintDiversityExclusionWithconnectivityServiceUuid(uuid, connectivityServiceUuid, callback)returns tapi.connectivity.ConnectivityServiceRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/diversity-exclusion={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintDiversityExclusionWithconnectivityServiceUuid(uuid, connectivityServiceUuid, tapiConnectivityConnectivityServiceRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/diversity-exclusion={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintDiversityExclusionWithconnectivityServiceUuid(uuid, connectivityServiceUuid, callback)removes tapi.connectivity.ConnectivityServiceRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/diversity-exclusion={pathv2}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacity(uuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacity(uuid, tapiCommonCapacityBodyParam, callback)creates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacity(uuid, tapiCommonCapacityBodyParam, callback)creates or updates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacity(uuid, callback)removes tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/total-size/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacityTotalSize(uuid, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/total-size/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacityTotalSize(uuid, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/total-size/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintRequestedCapacityTotalSize(uuid, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/requested-capacity/total-size/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintSchedule(uuid, callback)returns tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/schedule/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintSchedule(uuid, tapiCommonTimeRangeBodyParam, callback)creates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/schedule/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintSchedule(uuid, tapiCommonTimeRangeBodyParam, callback)creates or updates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/schedule/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityConstraintSchedule(uuid, callback)removes tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-constraint/schedule/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityService(uuid, tapiConnectivityConnectivityServiceRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-service/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityServiceWithconnectivityServiceUuid(uuid, connectivityServiceUuid, callback)returns tapi.connectivity.ConnectivityServiceRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-service={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityServiceWithconnectivityServiceUuid(uuid, connectivityServiceUuid, tapiConnectivityConnectivityServiceRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-service={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityServiceWithconnectivityServiceUuid(uuid, connectivityServiceUuid, callback)removes tapi.connectivity.ConnectivityServiceRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-service={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPoint(uuid, tapiConnectivityConnectivityserviceEndPointBodyParam, callback)creates tapi.connectivity.connectivityservice.EndPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalId(uuid, localId, callback)returns tapi.connectivity.connectivityservice.EndPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalId(uuid, localId, tapiConnectivityConnectivityserviceEndPointBodyParam, callback)creates or updates tapi.connectivity.connectivityservice.EndPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalId(uuid, localId, callback)removes tapi.connectivity.connectivityservice.EndPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdAssembledConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/assembled-connectivity-service-end-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdAssembledConnectivityServiceEndPointWithconnectivityServiceUuidConnectivityServiceEndPointLocalId(uuid, localId, connectivityServiceUuid, connectivityServiceEndPointLocalId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/assembled-connectivity-service-end-point={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdAssembledConnectivityServiceEndPointWithconnectivityServiceUuidConnectivityServiceEndPointLocalId(uuid, localId, connectivityServiceUuid, connectivityServiceEndPointLocalId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/assembled-connectivity-service-end-point={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdAssembledConnectivityServiceEndPointWithconnectivityServiceUuidConnectivityServiceEndPointLocalId(uuid, localId, connectivityServiceUuid, connectivityServiceEndPointLocalId, callback)removes tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/assembled-connectivity-service-end-point={pathv3},{pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, tapiCommonCapacityBodyParam, callback)creates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, tapiCommonCapacityBodyParam, callback)creates or updates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, callback)removes tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/connection-end-point={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCsepRoleWithroleName(uuid, localId, roleName, callback)returns tapi.connectivity.CsepRole{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/csep-role={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdCsepRoleWithroleNameConnectivityServiceSpecReference(uuid, localId, roleName, callback)returns tapi.connectivity.ConnectivityServiceSpecReference{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/csep-role={pathv3}/connectivity-service-spec-reference/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraint(uuid, localId, tapiConnectivityConnectivityserviceendpointLayerProtocolConstraintBodyParam, callback)creates tapi.connectivity.connectivityserviceendpoint.LayerProtocolConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalId(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.connectivity.connectivityserviceendpoint.LayerProtocolConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalId(uuid, localId, layerProtocolConstraintLocalId, tapiConnectivityConnectivityserviceendpointLayerProtocolConstraintBodyParam, callback)creates or updates tapi.connectivity.connectivityserviceendpoint.LayerProtocolConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalId(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.connectivity.connectivityserviceendpoint.LayerProtocolConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdName(uuid, localId, layerProtocolConstraintLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/name={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/name={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/name={pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdPeerFwdConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/peer-fwd-connectivity-service-end-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdPeerFwdConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/peer-fwd-connectivity-service-end-point/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdPeerFwdConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/peer-fwd-connectivity-service-end-point/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdPeerFwdConnectivityServiceEndPoint(uuid, localId, callback)removes tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/peer-fwd-connectivity-service-end-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProfile(uuid, localId, tapiCommonProfileRefBodyParam, callback)creates tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/profile/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/profile={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProfileWithprofileUuid(uuid, localId, profileUuid, tapiCommonProfileRefBodyParam, callback)creates or updates tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/profile={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProfileWithprofileUuid(uuid, localId, profileUuid, callback)removes tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/profile={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProtectingConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/protecting-connectivity-service-end-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProtectingConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/protecting-connectivity-service-end-point/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProtectingConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/protecting-connectivity-service-end-point/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdProtectingConnectivityServiceEndPoint(uuid, localId, callback)removes tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/protecting-connectivity-service-end-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServerConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/server-connectivity-service-end-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServerConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceEndPointRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/server-connectivity-service-end-point/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServerConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/server-connectivity-service-end-point/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServerConnectivityServiceEndPoint(uuid, localId, callback)removes tapi.connectivity.ConnectivityServiceEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/server-connectivity-service-end-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, tapiCommonServiceInterfacePointRefBodyParam, callback)creates tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, tapiCommonServiceInterfacePointRefBodyParam, callback)creates or updates tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)removes tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSinkProfile(uuid, localId, tapiCommonProfileRefBodyParam, callback)creates tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/sink-profile/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSinkProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/sink-profile={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSinkProfileWithprofileUuid(uuid, localId, profileUuid, tapiCommonProfileRefBodyParam, callback)creates or updates tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/sink-profile={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSinkProfileWithprofileUuid(uuid, localId, profileUuid, callback)removes tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/sink-profile={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSourceProfile(uuid, localId, tapiCommonProfileRefBodyParam, callback)creates tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/source-profile/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSourceProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/source-profile={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSourceProfileWithprofileUuid(uuid, localId, profileUuid, tapiCommonProfileRefBodyParam, callback)creates or updates tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/source-profile={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdSourceProfileWithprofileUuid(uuid, localId, profileUuid, callback)removes tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/source-profile={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidInternalPoint(uuid, tapiConnectivityConnectivityServiceInternalPointBodyParam, callback)creates tapi.connectivity.ConnectivityServiceInternalPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalId(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceInternalPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalId(uuid, localId, tapiConnectivityConnectivityServiceInternalPointBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceInternalPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalId(uuid, localId, callback)removes tapi.connectivity.ConnectivityServiceInternalPoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalIdConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/connection-end-point={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidInternalPointWithlocalIdNodeEdgePoint(uuid, localId, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/internal-point={pathv2}/node-edge-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/name={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/name={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/name={pathv2}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraint(uuid, callback)returns tapi.connectivity.ResilienceConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraint(uuid, tapiConnectivityResilienceConstraintBodyParam, callback)creates tapi.connectivity.ResilienceConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraint(uuid, tapiConnectivityResilienceConstraintBodyParam, callback)creates or updates tapi.connectivity.ResilienceConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraint(uuid, callback)removes tapi.connectivity.ResilienceConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResilienceType(uuid, callback)returns tapi.topology.ResilienceType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resilience-type/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResilienceType(uuid, tapiTopologyResilienceTypeBodyParam, callback)creates tapi.topology.ResilienceType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resilience-type/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResilienceType(uuid, tapiTopologyResilienceTypeBodyParam, callback)creates or updates tapi.topology.ResilienceType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resilience-type/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResilienceType(uuid, callback)removes tapi.topology.ResilienceType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resilience-type/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraint(uuid, tapiConnectivityResiliencyRouteConstraintBodyParam, callback)creates tapi.connectivity.ResiliencyRouteConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalId(uuid, localId, callback)returns tapi.connectivity.ResiliencyRouteConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalId(uuid, localId, tapiConnectivityResiliencyRouteConstraintBodyParam, callback)creates or updates tapi.connectivity.ResiliencyRouteConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalId(uuid, localId, callback)removes tapi.connectivity.ResiliencyRouteConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, localId, callback)returns tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, localId, tapiPathComputationRoutingConstraintBodyParam, callback)creates tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, localId, tapiPathComputationRoutingConstraintBodyParam, callback)creates or updates tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, localId, callback)removes tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristic(uuid, localId, tapiTopologyCostCharacteristicBodyParam, callback)creates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/cost-characteristic/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristicWithcostName(uuid, localId, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/cost-characteristic={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristicWithcostName(uuid, localId, costName, tapiTopologyCostCharacteristicBodyParam, callback)creates or updates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/cost-characteristic={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristicWithcostName(uuid, localId, costName, callback)removes tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/cost-characteristic={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristic(uuid, localId, tapiTopologyLatencyCharacteristicBodyParam, callback)creates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/latency-characteristic/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/latency-characteristic={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, tapiTopologyLatencyCharacteristicBodyParam, callback)creates or updates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/latency-characteristic={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, callback)removes tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/latency-characteristic={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-cost/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, localId, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-cost/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, localId, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-cost/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, localId, callback)removes tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-cost/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-delay/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, localId, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-delay/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, localId, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-delay/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, localId, callback)removes tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-delay/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-hops/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, localId, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-hops/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, localId, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-hops/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, localId, callback)removes tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-hops/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristic(uuid, localId, tapiTopologyRiskCharacteristicBodyParam, callback)creates tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/risk-diversity-characteristic/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, localId, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/risk-diversity-characteristic={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, localId, riskCharacteristicName, tapiTopologyRiskCharacteristicBodyParam, callback)creates or updates tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/risk-diversity-characteristic={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, localId, riskCharacteristicName, callback)removes tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/risk-diversity-characteristic={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, localId, callback)returns tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, localId, tapiPathComputationTopologyConstraintBodyParam, callback)creates tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, localId, tapiPathComputationTopologyConstraintBodyParam, callback)creates or updates tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, localId, callback)removes tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLink(uuid, localId, tapiTopologyLinkRefBodyParam, callback)creates tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-link/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-link={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, tapiTopologyLinkRefBodyParam, callback)creates or updates tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-link={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)removes tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-link={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePoint(uuid, localId, tapiTopologyNodeEdgePointRefBodyParam, callback)creates tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node-edge-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, tapiTopologyNodeEdgePointRefBodyParam, callback)creates or updates tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)removes tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNode(uuid, localId, tapiTopologyNodeRefBodyParam, callback)creates tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, tapiTopologyNodeRefBodyParam, callback)creates or updates tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)removes tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePath(uuid, localId, tapiPathComputationPathRefBodyParam, callback)creates tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-path/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-path={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePathWithpathUuid(uuid, localId, pathUuid, tapiPathComputationPathRefBodyParam, callback)creates or updates tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-path={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePathWithpathUuid(uuid, localId, pathUuid, callback)removes tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-path={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopology(uuid, localId, tapiTopologyTopologyRefBodyParam, callback)creates tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-topology/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-topology={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, tapiTopologyTopologyRefBodyParam, callback)creates or updates tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-topology={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)removes tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-topology={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLink(uuid, localId, tapiTopologyLinkRefBodyParam, callback)creates tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-link/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-link={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, tapiTopologyLinkRefBodyParam, callback)creates or updates tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-link={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)removes tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-link={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePoint(uuid, localId, tapiTopologyNodeEdgePointRefBodyParam, callback)creates tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node-edge-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, tapiTopologyNodeEdgePointRefBodyParam, callback)creates or updates tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)removes tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNode(uuid, localId, tapiTopologyNodeRefBodyParam, callback)creates tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, tapiTopologyNodeRefBodyParam, callback)creates or updates tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)removes tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePath(uuid, localId, tapiPathComputationPathRefBodyParam, callback)creates tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-path/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-path={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePathWithpathUuid(uuid, localId, pathUuid, tapiPathComputationPathRefBodyParam, callback)creates or updates tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-path={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePathWithpathUuid(uuid, localId, pathUuid, callback)removes tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-path={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopology(uuid, localId, tapiTopologyTopologyRefBodyParam, callback)creates tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-topology/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-topology={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, tapiTopologyTopologyRefBodyParam, callback)creates or updates tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-topology={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)removes tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-topology={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidRoutingConstraint(uuid, callback)returns tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidRoutingConstraint(uuid, tapiPathComputationRoutingConstraintBodyParam, callback)creates tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidRoutingConstraint(uuid, tapiPathComputationRoutingConstraintBodyParam, callback)creates or updates tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidRoutingConstraint(uuid, callback)removes tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintCostCharacteristic(uuid, tapiTopologyCostCharacteristicBodyParam, callback)creates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/cost-characteristic/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintCostCharacteristicWithcostName(uuid, costName, tapiTopologyCostCharacteristicBodyParam, callback)creates or updates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)removes tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintLatencyCharacteristic(uuid, tapiTopologyLatencyCharacteristicBodyParam, callback)creates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/latency-characteristic/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, tapiTopologyLatencyCharacteristicBodyParam, callback)creates or updates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)removes tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, callback)returns tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, callback)removes tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, callback)returns tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, callback)removes tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, callback)returns tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, callback)removes tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintRiskDiversityCharacteristic(uuid, tapiTopologyRiskCharacteristicBodyParam, callback)creates tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/risk-diversity-characteristic/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, tapiTopologyRiskCharacteristicBodyParam, callback)creates or updates tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)removes tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraint(uuid, tapiPathComputationTopologyConstraintBodyParam, callback)creates tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalId(uuid, localId, callback)returns tapi.path.computation.TopologyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalId(uuid, localId, tapiPathComputationTopologyConstraintBodyParam, callback)creates or updates tapi.path.computation.TopologyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalId(uuid, localId, callback)removes tapi.path.computation.TopologyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeLink(uuid, localId, tapiTopologyLinkRefBodyParam, callback)creates tapi.topology.LinkRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-link/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, tapiTopologyLinkRefBodyParam, callback)creates or updates tapi.topology.LinkRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)removes tapi.topology.LinkRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePoint(uuid, localId, tapiTopologyNodeEdgePointRefBodyParam, callback)creates tapi.topology.NodeEdgePointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, tapiTopologyNodeEdgePointRefBodyParam, callback)creates or updates tapi.topology.NodeEdgePointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)removes tapi.topology.NodeEdgePointRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNode(uuid, localId, tapiTopologyNodeRefBodyParam, callback)creates tapi.topology.NodeRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, tapiTopologyNodeRefBodyParam, callback)creates or updates tapi.topology.NodeRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)removes tapi.topology.NodeRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludePath(uuid, localId, tapiPathComputationPathRefBodyParam, callback)creates tapi.path.computation.PathRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-path/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, tapiPathComputationPathRefBodyParam, callback)creates or updates tapi.path.computation.PathRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, callback)removes tapi.path.computation.PathRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeTopology(uuid, localId, tapiTopologyTopologyRefBodyParam, callback)creates tapi.topology.TopologyRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-topology/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, tapiTopologyTopologyRefBodyParam, callback)creates or updates tapi.topology.TopologyRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)removes tapi.topology.TopologyRef2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeLink(uuid, localId, tapiTopologyLinkRefBodyParam, callback)creates tapi.topology.LinkRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-link/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, tapiTopologyLinkRefBodyParam, callback)creates or updates tapi.topology.LinkRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)removes tapi.topology.LinkRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePoint(uuid, localId, tapiTopologyNodeEdgePointRefBodyParam, callback)creates tapi.topology.NodeEdgePointRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, tapiTopologyNodeEdgePointRefBodyParam, callback)creates or updates tapi.topology.NodeEdgePointRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)removes tapi.topology.NodeEdgePointRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNode(uuid, localId, tapiTopologyNodeRefBodyParam, callback)creates tapi.topology.NodeRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, tapiTopologyNodeRefBodyParam, callback)creates or updates tapi.topology.NodeRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)removes tapi.topology.NodeRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludePath(uuid, localId, tapiPathComputationPathRefBodyParam, callback)creates tapi.path.computation.PathRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-path/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, tapiPathComputationPathRefBodyParam, callback)creates or updates tapi.path.computation.PathRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, callback)removes tapi.path.computation.PathRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeTopology(uuid, localId, tapiTopologyTopologyRefBodyParam, callback)creates tapi.topology.TopologyRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-topology/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, tapiTopologyTopologyRefBodyParam, callback)creates or updates tapi.topology.TopologyRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)removes tapi.topology.TopologyRef3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPoint(uuid, callback)returns tapi.connectivity.ConnectionEndPoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointAggregatedConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/aggregated-connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointCepRoleWithroleName(uuid, roleName, callback)returns tapi.connectivity.CepRole{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/cep-role={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointCepRoleWithroleNameConnectionSpecReference(uuid, roleName, callback)returns tapi.connectivity.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/cep-role={pathv2}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointClientNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/client-node-edge-point={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointParentNodeEdgePoint(uuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/parent-node-edge-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointSinkProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/sink-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionEndPointSourceProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection-end-point/source-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnection(uuid, callback)returns tapi.connectivity.Connection1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionBoundingNode(uuid, callback)returns tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/bounding-node/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionConnectionSpecReference(uuid, callback)returns tapi.connectivity.ConnectionSpecReference1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionLowerConnectionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/lower-connection={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionRouteWithlocalId(uuid, localId, callback)returns tapi.connectivity.Route1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/route={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionRouteWithlocalIdConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/route={pathv2}/connection-end-point={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionRouteWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/route={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionRouteWithlocalIdResilienceRoute(uuid, localId, callback)returns tapi.connectivity.ResilienceRoute1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/route={pathv2}/resilience-route/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionServerConnectionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/server-connection={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSupportedClientLinkWithtopologyUuidLinkUuid(uuid, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/supported-client-link={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuid(uuid, switchControlUuid, callback)returns tapi.connectivity.SwitchControl1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParameters(uuid, switchControlUuid, callback)returns tapi.connectivity.ResilienceConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResilienceType(uuid, switchControlUuid, callback)returns tapi.topology.ResilienceType1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resilience-type/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalId(uuid, switchControlUuid, localId, callback)returns tapi.connectivity.ResiliencyRouteConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdNameWithvalueName(uuid, switchControlUuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.RoutingConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristicWithcostName(uuid, switchControlUuid, localId, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/cost-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, switchControlUuid, localId, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/latency-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.ValueOrPriority3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/max-allowed-cost/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.ValueOrPriority4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/max-allowed-delay/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.ValueOrPriority5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/max-allowed-hops/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, switchControlUuid, localId, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/routing-constraint/risk-diversity-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, switchControlUuid, localId, callback)returns tapi.path.computation.TopologyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLinkWithtopologyUuidLinkUuid(uuid, switchControlUuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-link={pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeWithtopologyUuidNodeUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-node={pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePathWithpathUuid(uuid, switchControlUuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-path={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopologyWithtopologyUuid(uuid, switchControlUuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/exclude-topology={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLinkWithtopologyUuidLinkUuid(uuid, switchControlUuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-link={pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeWithtopologyUuidNodeUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-node={pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePathWithpathUuid(uuid, switchControlUuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-path={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopologyWithtopologyUuid(uuid, switchControlUuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/include-topology={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintNameWithvalueName(uuid, switchControlUuid, localId, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/resiliency-route-constraint={pathv3}/topology-constraint/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidNameWithvalueName(uuid, switchControlUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidSubSwitchControlWithconnectionUuidSubSwitchControlSwitchControlUuid(uuid, switchControlUuid, connectionUuid, subSwitchControlSwitchControlUuid, callback)returns tapi.connectivity.SwitchControlRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/sub-switch-control={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidSwitchWithlocalId(uuid, switchControlUuid, localId, callback)returns tapi.connectivity.Switch1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/switch={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidSwitchWithlocalIdNameWithvalueName(uuid, switchControlUuid, localId, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/switch={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidSwitchWithlocalIdSelectedConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, switchControlUuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/switch={pathv3}/selected-connection-end-point={pathv4},{pathv5},{pathv6},{pathv7}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidSwitchWithlocalIdSelectedRouteWithconnectionUuidRouteLocalId(uuid, switchControlUuid, localId, connectionUuid, routeLocalId, callback)returns tapi.connectivity.RouteRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/switch={pathv3}/selected-route={pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPoint(uuid, callback)returns tapi.connectivity.ConnectivityServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointAssembledConnectivityServiceEndPointWithconnectivityServiceUuidConnectivityServiceEndPointLocalId(uuid, connectivityServiceUuid, connectivityServiceEndPointLocalId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/assembled-connectivity-service-end-point={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointCapacity(uuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointCsepRoleWithroleName(uuid, roleName, callback)returns tapi.connectivity.CsepRole{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/csep-role={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointCsepRoleWithroleNameConnectivityServiceSpecReference(uuid, roleName, callback)returns tapi.connectivity.ConnectivityServiceSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/csep-role={pathv2}/connectivity-service-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointLayerProtocolConstraintWithlocalId(uuid, localId, callback)returns tapi.connectivity.LayerProtocolConstraint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/layer-protocol-constraint={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointLayerProtocolConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/layer-protocol-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointPeerFwdConnectivityServiceEndPoint(uuid, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/peer-fwd-connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointProtectingConnectivityServiceEndPoint(uuid, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/protecting-connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointServerConnectivityServiceEndPoint(uuid, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/server-connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointServiceInterfacePoint(uuid, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointSinkProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/sink-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointSourceProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service-end-point/source-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityService(uuid, callback)returns tapi.connectivity.ConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connection={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraint(uuid, callback)returns tapi.connectivity.ConnectivityConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraintConnectionExclusionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/connection-exclusion={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraintConnectionInclusionWithconnectionUuid(uuid, connectionUuid, callback)returns tapi.connectivity.ConnectionRef9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/connection-inclusion={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraintCorouteInclusion(uuid, callback)returns tapi.connectivity.ConnectivityServiceRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/coroute-inclusion/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraintDiversityExclusionWithconnectivityServiceUuid(uuid, connectivityServiceUuid, callback)returns tapi.connectivity.ConnectivityServiceRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/diversity-exclusion={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraintRequestedCapacity(uuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/requested-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraintRequestedCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/requested-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityConstraintSchedule(uuid, callback)returns tapi.common.TimeRange1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-constraint/schedule/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceConnectivityServiceWithconnectivityServiceUuid(uuid, connectivityServiceUuid, callback)returns tapi.connectivity.ConnectivityServiceRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/connectivity-service={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalId(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPoint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdAssembledConnectivityServiceEndPointWithconnectivityServiceUuidConnectivityServiceEndPointLocalId(uuid, localId, connectivityServiceUuid, connectivityServiceEndPointLocalId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/assembled-connectivity-service-end-point={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdCapacity(uuid, localId, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdCapacityTotalSize(uuid, localId, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/connection-end-point={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdCsepRoleWithroleName(uuid, localId, roleName, callback)returns tapi.connectivity.CsepRole1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/csep-role={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdCsepRoleWithroleNameConnectivityServiceSpecReference(uuid, localId, roleName, callback)returns tapi.connectivity.ConnectivityServiceSpecReference1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/csep-role={pathv3}/connectivity-service-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalId(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.connectivity.LayerProtocolConstraint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/layer-protocol-constraint={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/layer-protocol-constraint={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdPeerFwdConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/peer-fwd-connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdProtectingConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/protecting-connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdServerConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/server-connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdSinkProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/sink-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceEndPointWithlocalIdSourceProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/end-point={pathv2}/source-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceInternalPointWithlocalId(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceInternalPoint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/internal-point={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceInternalPointWithlocalIdConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/internal-point={pathv2}/connection-end-point={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceInternalPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/internal-point={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceInternalPointWithlocalIdNodeEdgePoint(uuid, localId, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/internal-point={pathv2}/node-edge-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraint(uuid, callback)returns tapi.connectivity.ResilienceConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResilienceType(uuid, callback)returns tapi.topology.ResilienceType1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resilience-type/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalId(uuid, localId, callback)returns tapi.connectivity.ResiliencyRouteConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue10{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, localId, callback)returns tapi.path.computation.RoutingConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristicWithcostName(uuid, localId, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-cost/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-delay/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-hops/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, localId, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/routing-constraint/risk-diversity-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, localId, callback)returns tapi.path.computation.TopologyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/exclude-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/include-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintResiliencyRouteConstraintWithlocalIdTopologyConstraintNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue11{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/resiliency-route-constraint={pathv2}/topology-constraint/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceRoutingConstraint(uuid, callback)returns tapi.path.computation.RoutingConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/routing-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceRoutingConstraintMaxAllowedCost(uuid, callback)returns tapi.path.computation.ValueOrPriority3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/routing-constraint/max-allowed-cost/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceRoutingConstraintMaxAllowedDelay(uuid, callback)returns tapi.path.computation.ValueOrPriority4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/routing-constraint/max-allowed-delay/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceRoutingConstraintMaxAllowedHops(uuid, callback)returns tapi.path.computation.ValueOrPriority5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/routing-constraint/max-allowed-hops/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalId(uuid, localId, callback)returns tapi.path.computation.TopologyConstraint3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue12{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRoute(uuid, callback)returns tapi.connectivity.Route{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:route/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRouteConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:route/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRouteNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:route/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRouteResilienceRoute(uuid, callback)returns tapi.connectivity.ResilienceRoute{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:route/resilience-route/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControl(uuid, callback)returns tapi.connectivity.SwitchControl{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParameters(uuid, callback)returns tapi.connectivity.ResilienceConstraint2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResilienceType(uuid, callback)returns tapi.topology.ResilienceType2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resilience-type/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalId(uuid, localId, callback)returns tapi.connectivity.ResiliencyRouteConstraint2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue13{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraint(uuid, localId, callback)returns tapi.path.computation.RoutingConstraint2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/routing-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintCostCharacteristicWithcostName(uuid, localId, costName, callback)returns tapi.topology.CostCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/routing-constraint/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/routing-constraint/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedCost(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-cost/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedDelay(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-delay/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintMaxAllowedHops(uuid, localId, callback)returns tapi.path.computation.ValueOrPriority8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/routing-constraint/max-allowed-hops/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, localId, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/routing-constraint/risk-diversity-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraint(uuid, localId, callback)returns tapi.path.computation.TopologyConstraint4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/exclude-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/exclude-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/exclude-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/exclude-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/include-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/include-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/include-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/include-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersResiliencyRouteConstraintWithlocalIdTopologyConstraintNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue14{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/resiliency-route-constraint={pathv2}/topology-constraint/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlSubSwitchControlWithconnectionUuidSwitchControlUuid(uuid, connectionUuid, switchControlUuid, callback)returns tapi.connectivity.SwitchControlRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/sub-switch-control={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlSwitchWithlocalId(uuid, localId, callback)returns tapi.connectivity.Switch{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/switch={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlSwitchWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue15{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/switch={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlSwitchWithlocalIdSelectedConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/switch={pathv2}/selected-connection-end-point={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlSwitchWithlocalIdSelectedRouteWithconnectionUuidRouteLocalId(uuid, localId, connectionUuid, routeLocalId, callback)returns tapi.connectivity.RouteRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/switch={pathv2}/selected-route={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitch(uuid, callback)returns tapi.connectivity.Switch{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchSelectedConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch/selected-connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchSelectedRouteWithconnectionUuidRouteLocalId(uuid, connectionUuid, routeLocalId, callback)returns tapi.connectivity.RouteRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch/selected-route={pathv2},{pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepList(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.connectivity.context.topologycontext.topology.node.ownednodeedgepoint.CepList{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ceplist.ConnectionEndPoint{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidAggregatedConnectionEndPointWithtopologyUuidAggregatedConnectionEndPointNodeUuidNodeEdgePointUuidAggregatedConnectionEndPointConnectionEndPointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, topologyUuid, aggregatedConnectionEndPointNodeUuid, nodeEdgePointUuid, aggregatedConnectionEndPointConnectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/aggregated-connection-end-point={pathv5},{pathv6},{pathv7},{pathv8}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidCepRoleWithroleName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, roleName, callback)returns tapi.connectivity.CepRole{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/cep-role={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidCepRoleWithroleNameConnectionSpecReference(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, roleName, callback)returns tapi.connectivity.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/cep-role={pathv5}/connection-spec-reference/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidClientNodeEdgePointWithtopologyUuidClientNodeEdgePointNodeUuidNodeEdgePointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, topologyUuid, clientNodeEdgePointNodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/client-node-edge-point={pathv5},{pathv6},{pathv7}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidParentNodeEdgePoint(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/parent-node-edge-point/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidSinkProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/sink-profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidSourceProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/source-profile={pathv5}/?{query}Yes
postCreateConnectivityService(tapiConnectivityCreateconnectivityserviceInputBodyParam, callback)operates on tapi.connectivity.CreateConnectivityService{base_path}/{version}/operations/tapi-connectivity:create-connectivity-service/?{query}Yes
postDeleteConnectivityService(tapiConnectivityDeleteconnectivityserviceInputBodyParam, callback)operates on tapi.connectivity.DeleteConnectivityService{base_path}/{version}/operations/tapi-connectivity:delete-connectivity-service/?{query}Yes
postGetConnectionDetails(tapiConnectivityGetconnectiondetailsInputBodyParam, callback)operates on tapi.connectivity.GetConnectionDetails{base_path}/{version}/operations/tapi-connectivity:get-connection-details/?{query}Yes
postGetConnectionEndPointDetails(tapiConnectivityGetconnectionendpointdetailsInputBodyParam, callback)operates on tapi.connectivity.GetConnectionEndPointDetails{base_path}/{version}/operations/tapi-connectivity:get-connection-end-point-details/?{query}Yes
postGetConnectivityServiceDetails(tapiConnectivityGetconnectivityservicedetailsInputBodyParam, callback)operates on tapi.connectivity.GetConnectivityServiceDetails{base_path}/{version}/operations/tapi-connectivity:get-connectivity-service-details/?{query}Yes
postGetConnectivityServiceList(callback)OperationsTapiConnectivityGetConnectivityServiceList_POST{base_path}/{version}/operations/tapi-connectivity:get-connectivity-service-list/?{query}Yes
postUpdateConnectivityService(tapiConnectivityUpdateconnectivityserviceInputBodyParam, callback)operates on tapi.connectivity.UpdateConnectivityService{base_path}/{version}/operations/tapi-connectivity:update-connectivity-service/?{query}Yes
getContextNotificationContext(callback)returns tapi.notification.context.NotificationContext{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/?{query}Yes
postContextNotificationContext(tapiNotificationContextNotificationContextBodyParam, callback)creates tapi.notification.context.NotificationContext{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/?{query}Yes
putContextNotificationContext(tapiNotificationContextNotificationContextBodyParam, callback)creates or updates tapi.notification.context.NotificationContext{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/?{query}Yes
deleteContextNotificationContext(callback)removes tapi.notification.context.NotificationContext{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/?{query}Yes
getContextNotificationContextEventNotificationWithuuid(uuid, callback)returns tapi.notification.notificationcontext.EventNotification{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAttributeValueChange(uuid, callback)returns tapi.notification.AttributeValueChange{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/attribute-value-change/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePoint(uuid, callback)returns tapi.common.ServiceInterfacePoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointAvailableCapacity(uuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointAvailableCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointAvailableCepLayerProtocolQualifierInstances(uuid, callback)returns tapi.common.SupportedLayerProtocolQualifier{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/available-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointAvailablePayloadStructure(uuid, callback)returns tapi.common.PayloadStructure{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/available-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointAvailablePayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/available-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointSinkProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/sink-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointSourceProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/source-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointSupportedCepLayerProtocolQualifierInstances(uuid, callback)returns tapi.common.SupportedLayerProtocolQualifier1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/supported-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointSupportedPayloadStructure(uuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/supported-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointSupportedPayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/supported-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointTotalPotentialCapacity(uuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidServiceInterfacePointTotalPotentialCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/service-interface-point/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTargetObjectNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/target-object-name={pathv2}/?{query}Yes
postContextNotificationContextNotifSubscription(tapiNotificationNotificationSubscriptionServiceBodyParam, callback)creates tapi.notification.NotificationSubscriptionService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuid(uuid, callback)returns tapi.notification.NotificationSubscriptionService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuid(uuid, tapiNotificationNotificationSubscriptionServiceBodyParam, callback)creates or updates tapi.notification.NotificationSubscriptionService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuid(uuid, callback)removes tapi.notification.NotificationSubscriptionService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidEventNotification(uuid, tapiNotificationEventNotificationBodyParam, callback)creates tapi.notification.EventNotification{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuid(uuid, eventNotificationUuid, callback)returns tapi.notification.EventNotification{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuid(uuid, eventNotificationUuid, tapiNotificationEventNotificationBodyParam, callback)creates or updates tapi.notification.EventNotification{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuid(uuid, eventNotificationUuid, callback)removes tapi.notification.EventNotification{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidName(uuid, eventNotificationUuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/name/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidNameWithvalueName(uuid, eventNotificationUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/name={pathv3}/?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidNameWithvalueName(uuid, eventNotificationUuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/name={pathv3}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidNameWithvalueName(uuid, eventNotificationUuid, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/name={pathv3}/?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidTargetObjectName(uuid, eventNotificationUuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/target-object-name/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidTargetObjectNameWithvalueName(uuid, eventNotificationUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/target-object-name={pathv3}/?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidTargetObjectNameWithvalueName(uuid, eventNotificationUuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/target-object-name={pathv3}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidTargetObjectNameWithvalueName(uuid, eventNotificationUuid, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/target-object-name={pathv3}/?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/name/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/name={pathv2}/?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/name={pathv2}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/name={pathv2}/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNotificationChannel(uuid, callback)returns tapi.notification.NotificationChannel{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNotificationChannelNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel/name={pathv2}/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNotificationWithnotificationUuid(uuid, notificationUuid, callback)returns tapi.notification.Notification{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification={pathv2}/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNotificationWithnotificationUuidAdditionalInfoWithvalueName(uuid, notificationUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification={pathv2}/additional-info={pathv3}/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNotificationWithnotificationUuidChangedAttributesWithvalueName(uuid, notificationUuid, valueName, callback)returns tapi.notification.NameAndValueChange{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification={pathv2}/changed-attributes={pathv3}/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNotificationWithnotificationUuidNameWithvalueName(uuid, notificationUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidNotificationWithnotificationUuidTargetObjectNameWithvalueName(uuid, notificationUuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification={pathv2}/target-object-name={pathv3}/?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilter(uuid, tapiNotificationSubscriptionFilterBodyParam, callback)creates tapi.notification.SubscriptionFilter{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilterWithlocalId(uuid, localId, callback)returns tapi.notification.SubscriptionFilter{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter={pathv2}/?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilterWithlocalId(uuid, localId, tapiNotificationSubscriptionFilterBodyParam, callback)creates or updates tapi.notification.SubscriptionFilter{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter={pathv2}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilterWithlocalId(uuid, localId, callback)removes tapi.notification.SubscriptionFilter{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter={pathv2}/?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilterWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter={pathv2}/name/?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilterWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter={pathv2}/name={pathv3}/?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilterWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter={pathv2}/name={pathv3}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidSubscriptionFilterWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/subscription-filter={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextNotificationWithuuid(uuid, callback)returns tapi.notification.Notification{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/?{query}Yes
getContextNotificationContextNotificationWithuuidAdditionalInfoWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/additional-info={pathv2}/?{query}Yes
getContextNotificationContextNotificationWithuuidChangedAttributesWithvalueName(uuid, valueName, callback)returns tapi.notification.NameAndValueChange{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/changed-attributes={pathv2}/?{query}Yes
getContextNotificationContextNotificationWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/name={pathv2}/?{query}Yes
getContextNotificationContextNotificationWithuuidTargetObjectNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/target-object-name={pathv2}/?{query}Yes
postCreateNotificationSubscriptionService(tapiNotificationCreatenotificationsubscriptionserviceInputBodyParam, callback)operates on tapi.notification.CreateNotificationSubscriptionService{base_path}/{version}/operations/tapi-notification:create-notification-subscription-service/?{query}Yes
postDeleteNotificationSubscriptionService(tapiNotificationDeletenotificationsubscriptionserviceInputBodyParam, callback)operates on tapi.notification.DeleteNotificationSubscriptionService{base_path}/{version}/operations/tapi-notification:delete-notification-subscription-service/?{query}Yes
postGetNotificationList(tapiNotificationGetnotificationlistInputBodyParam, callback)operates on tapi.notification.GetNotificationList{base_path}/{version}/operations/tapi-notification:get-notification-list/?{query}Yes
postGetNotificationSubscriptionServiceDetails(tapiNotificationGetnotificationsubscriptionservicedetailsInputBodyParam, callback)operates on tapi.notification.GetNotificationSubscriptionServiceDetails{base_path}/{version}/operations/tapi-notification:get-notification-subscription-service-details/?{query}Yes
postGetNotificationSubscriptionServiceList(callback)OperationsTapiNotificationGetNotificationSubscriptionServiceList_POST{base_path}/{version}/operations/tapi-notification:get-notification-subscription-service-list/?{query}Yes
postGetSupportedNotificationTypes(callback)OperationsTapiNotificationGetSupportedNotificationTypes_POST{base_path}/{version}/operations/tapi-notification:get-supported-notification-types/?{query}Yes
postUpdateNotificationSubscriptionService(tapiNotificationUpdatenotificationsubscriptionserviceInputBodyParam, callback)operates on tapi.notification.UpdateNotificationSubscriptionService{base_path}/{version}/operations/tapi-notification:update-notification-subscription-service/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationService(uuid, callback)returns tapi.path.computation.PathComputationService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceEndPointWithlocalId(uuid, localId, callback)returns tapi.path.computation.PathServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/end-point={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceEndPointWithlocalIdCapacity(uuid, localId, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/end-point={pathv2}/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceEndPointWithlocalIdCapacityTotalSize(uuid, localId, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/end-point={pathv2}/capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/end-point={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/end-point={pathv2}/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceObjectiveFunction(uuid, callback)returns tapi.path.computation.PathObjectiveFunction{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/objective-function/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceObjectiveFunctionNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/objective-function/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceOptimizationConstraint(uuid, callback)returns tapi.path.computation.PathOptimizationConstraint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/optimization-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceOptimizationConstraintNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/optimization-constraint/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServicePathWithpathUuid(uuid, pathUuid, callback)returns tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/path={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceRoutingConstraint(uuid, callback)returns tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/routing-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceRoutingConstraintMaxAllowedCost(uuid, callback)returns tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/routing-constraint/max-allowed-cost/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceRoutingConstraintMaxAllowedDelay(uuid, callback)returns tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/routing-constraint/max-allowed-delay/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceRoutingConstraintMaxAllowedHops(uuid, callback)returns tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/routing-constraint/max-allowed-hops/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalId(uuid, localId, callback)returns tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathComputationServiceTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-computation-service/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathObjectiveFunction(uuid, callback)returns tapi.path.computation.PathObjectiveFunction1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-objective-function/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathObjectiveFunctionNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-objective-function/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathOptimizationConstraint(uuid, callback)returns tapi.path.computation.PathOptimizationConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-optimization-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathOptimizationConstraintNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-optimization-constraint/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathServiceEndPoint(uuid, callback)returns tapi.path.computation.PathServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathServiceEndPointCapacity(uuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-service-end-point/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathServiceEndPointCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-service-end-point/capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathServiceEndPointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-service-end-point/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathServiceEndPointServiceInterfacePoint(uuid, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path-service-end-point/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPath(uuid, callback)returns tapi.path.computation.Path{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathLinkWithtopologyUuidLinkUuid(uuid, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/link={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathRoutingConstraint(uuid, callback)returns tapi.path.computation.RoutingConstraint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/routing-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathRoutingConstraintMaxAllowedCost(uuid, callback)returns tapi.path.computation.ValueOrPriority3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/routing-constraint/max-allowed-cost/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathRoutingConstraintMaxAllowedDelay(uuid, callback)returns tapi.path.computation.ValueOrPriority4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/routing-constraint/max-allowed-delay/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathRoutingConstraintMaxAllowedHops(uuid, callback)returns tapi.path.computation.ValueOrPriority5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/routing-constraint/max-allowed-hops/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPathRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-path-computation:path/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
getContextPathComputationContext(callback)returns tapi.path.computation.PathComputationContext{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/?{query}Yes
postContextPathComputationContext(tapiPathComputationPathComputationContextBodyParam, callback)creates tapi.path.computation.PathComputationContext{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/?{query}Yes
putContextPathComputationContext(tapiPathComputationPathComputationContextBodyParam, callback)creates or updates tapi.path.computation.PathComputationContext{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/?{query}Yes
deleteContextPathComputationContext(callback)removes tapi.path.computation.PathComputationContext{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/?{query}Yes
postContextPathComputationContextPathCompService(tapiPathComputationPathComputationServiceBodyParam, callback)creates tapi.path.computation.PathComputationService{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuid(uuid, callback)returns tapi.path.computation.PathComputationService1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuid(uuid, tapiPathComputationPathComputationServiceBodyParam, callback)creates or updates tapi.path.computation.PathComputationService{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuid(uuid, callback)removes tapi.path.computation.PathComputationService{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidEndPoint(uuid, tapiPathComputationPathServiceEndPointBodyParam, callback)creates tapi.path.computation.PathServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalId(uuid, localId, callback)returns tapi.path.computation.PathServiceEndPoint1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalId(uuid, localId, tapiPathComputationPathServiceEndPointBodyParam, callback)creates or updates tapi.path.computation.PathServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalId(uuid, localId, callback)removes tapi.path.computation.PathServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, tapiCommonCapacityBodyParam, callback)creates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, tapiCommonCapacityBodyParam, callback)creates or updates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacity(uuid, localId, callback)removes tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdCapacityTotalSize(uuid, localId, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/capacity/total-size/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/name/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, tapiCommonServiceInterfacePointRefBodyParam, callback)creates tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, tapiCommonServiceInterfacePointRefBodyParam, callback)creates or updates tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)removes tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/name/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/name={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/name={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/name={pathv2}/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidObjectiveFunction(uuid, callback)returns tapi.path.computation.PathObjectiveFunction2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidObjectiveFunction(uuid, tapiPathComputationPathObjectiveFunctionBodyParam, callback)creates tapi.path.computation.PathObjectiveFunction{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidObjectiveFunction(uuid, tapiPathComputationPathObjectiveFunctionBodyParam, callback)creates or updates tapi.path.computation.PathObjectiveFunction{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidObjectiveFunction(uuid, callback)removes tapi.path.computation.PathObjectiveFunction{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidObjectiveFunctionName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/name/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidObjectiveFunctionNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/name={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidObjectiveFunctionNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/name={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidObjectiveFunctionNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/objective-function/name={pathv2}/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidOptimizationConstraint(uuid, callback)returns tapi.path.computation.PathOptimizationConstraint2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidOptimizationConstraint(uuid, tapiPathComputationPathOptimizationConstraintBodyParam, callback)creates tapi.path.computation.PathOptimizationConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidOptimizationConstraint(uuid, tapiPathComputationPathOptimizationConstraintBodyParam, callback)creates or updates tapi.path.computation.PathOptimizationConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidOptimizationConstraint(uuid, callback)removes tapi.path.computation.PathOptimizationConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidOptimizationConstraintName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/name/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidOptimizationConstraintNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue9{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/name={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidOptimizationConstraintNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/name={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidOptimizationConstraintNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/optimization-constraint/name={pathv2}/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidPathWithpathUuid(uuid, pathUuid, callback)returns tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/path={pathv2}/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidRoutingConstraint(uuid, callback)returns tapi.path.computation.RoutingConstraint2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidRoutingConstraint(uuid, tapiPathComputationRoutingConstraintBodyParam, callback)creates tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidRoutingConstraint(uuid, tapiPathComputationRoutingConstraintBodyParam, callback)creates or updates tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidRoutingConstraint(uuid, callback)removes tapi.path.computation.RoutingConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidRoutingConstraintCostCharacteristic(uuid, tapiTopologyCostCharacteristicBodyParam, callback)creates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/cost-characteristic/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidRoutingConstraintCostCharacteristicWithcostName(uuid, costName, tapiTopologyCostCharacteristicBodyParam, callback)creates or updates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)removes tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidRoutingConstraintLatencyCharacteristic(uuid, tapiTopologyLatencyCharacteristicBodyParam, callback)creates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/latency-characteristic/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, tapiTopologyLatencyCharacteristicBodyParam, callback)creates or updates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)removes tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, callback)returns tapi.path.computation.ValueOrPriority6{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedCost(uuid, callback)removes tapi.path.computation.ValueOrPriority{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, callback)returns tapi.path.computation.ValueOrPriority7{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedDelay(uuid, callback)removes tapi.path.computation.ValueOrPriority1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, callback)returns tapi.path.computation.ValueOrPriority8{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, tapiPathComputationValueOrPriorityBodyParam, callback)creates or updates tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidRoutingConstraintMaxAllowedHops(uuid, callback)removes tapi.path.computation.ValueOrPriority2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidRoutingConstraintRiskDiversityCharacteristic(uuid, tapiTopologyRiskCharacteristicBodyParam, callback)creates tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/risk-diversity-characteristic/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, tapiTopologyRiskCharacteristicBodyParam, callback)creates or updates tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)removes tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraint(uuid, tapiPathComputationTopologyConstraintBodyParam, callback)creates tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalId(uuid, localId, callback)returns tapi.path.computation.TopologyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalId(uuid, localId, tapiPathComputationTopologyConstraintBodyParam, callback)creates or updates tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalId(uuid, localId, callback)removes tapi.path.computation.TopologyConstraint{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeLink(uuid, localId, tapiTopologyLinkRefBodyParam, callback)creates tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-link/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, tapiTopologyLinkRefBodyParam, callback)creates or updates tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)removes tapi.topology.LinkRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-link={pathv3},{pathv4}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePoint(uuid, localId, tapiTopologyNodeEdgePointRefBodyParam, callback)creates tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, tapiTopologyNodeEdgePointRefBodyParam, callback)creates or updates tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)removes tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNode(uuid, localId, tapiTopologyNodeRefBodyParam, callback)creates tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, tapiTopologyNodeRefBodyParam, callback)creates or updates tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)removes tapi.topology.NodeRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-node={pathv3},{pathv4}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludePath(uuid, localId, tapiPathComputationPathRefBodyParam, callback)creates tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-path/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, tapiPathComputationPathRefBodyParam, callback)creates or updates tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludePathWithpathUuid(uuid, localId, pathUuid, callback)removes tapi.path.computation.PathRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-path={pathv3}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeTopology(uuid, localId, tapiTopologyTopologyRefBodyParam, callback)creates tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-topology/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef2{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, tapiTopologyTopologyRefBodyParam, callback)creates or updates tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdExcludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)removes tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/exclude-topology={pathv3}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeLink(uuid, localId, tapiTopologyLinkRefBodyParam, callback)creates tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-link/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, tapiTopologyLinkRefBodyParam, callback)creates or updates tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeLinkWithtopologyUuidLinkUuid(uuid, localId, topologyUuid, linkUuid, callback)removes tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-link={pathv3},{pathv4}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePoint(uuid, localId, tapiTopologyNodeEdgePointRefBodyParam, callback)creates tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, tapiTopologyNodeEdgePointRefBodyParam, callback)creates or updates tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, localId, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)removes tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNode(uuid, localId, tapiTopologyNodeRefBodyParam, callback)creates tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)returns tapi.topology.NodeRef3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, tapiTopologyNodeRefBodyParam, callback)creates or updates tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeNodeWithtopologyUuidNodeUuid(uuid, localId, topologyUuid, nodeUuid, callback)removes tapi.topology.NodeRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-node={pathv3},{pathv4}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludePath(uuid, localId, tapiPathComputationPathRefBodyParam, callback)creates tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-path/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, callback)returns tapi.path.computation.PathRef3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, tapiPathComputationPathRefBodyParam, callback)creates or updates tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludePathWithpathUuid(uuid, localId, pathUuid, callback)removes tapi.path.computation.PathRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-path={pathv3}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeTopology(uuid, localId, tapiTopologyTopologyRefBodyParam, callback)creates tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-topology/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)returns tapi.topology.TopologyRef3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, tapiTopologyTopologyRefBodyParam, callback)creates or updates tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdIncludeTopologyWithtopologyUuid(uuid, localId, topologyUuid, callback)removes tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/include-topology={pathv3}/?{query}Yes
postContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/name/?{query}Yes
getContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
putContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
deleteContextPathComputationContextPathCompServiceWithuuidTopologyConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path-comp-service={pathv1}/topology-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextPathComputationContextPathWithuuid(uuid, callback)returns tapi.path.computation.Path1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/?{query}Yes
getContextPathComputationContextPathWithuuidLinkWithtopologyUuidLinkUuid(uuid, topologyUuid, linkUuid, callback)returns tapi.topology.LinkRef1{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/link={pathv2},{pathv3}/?{query}Yes
getContextPathComputationContextPathWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue10{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/name={pathv2}/?{query}Yes
getContextPathComputationContextPathWithuuidRoutingConstraint(uuid, callback)returns tapi.path.computation.RoutingConstraint3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/routing-constraint/?{query}Yes
getContextPathComputationContextPathWithuuidRoutingConstraintCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/routing-constraint/cost-characteristic={pathv2}/?{query}Yes
getContextPathComputationContextPathWithuuidRoutingConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/routing-constraint/latency-characteristic={pathv2}/?{query}Yes
getContextPathComputationContextPathWithuuidRoutingConstraintMaxAllowedCost(uuid, callback)returns tapi.path.computation.ValueOrPriority9{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/routing-constraint/max-allowed-cost/?{query}Yes
getContextPathComputationContextPathWithuuidRoutingConstraintMaxAllowedDelay(uuid, callback)returns tapi.path.computation.ValueOrPriority10{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/routing-constraint/max-allowed-delay/?{query}Yes
getContextPathComputationContextPathWithuuidRoutingConstraintMaxAllowedHops(uuid, callback)returns tapi.path.computation.ValueOrPriority11{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/routing-constraint/max-allowed-hops/?{query}Yes
getContextPathComputationContextPathWithuuidRoutingConstraintRiskDiversityCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic3{base_path}/{version}/data/tapi-common:context/tapi-path-computation:path-computation-context/path={pathv1}/routing-constraint/risk-diversity-characteristic={pathv2}/?{query}Yes
postComputeP2PPath(tapiPathComputationComputep2ppathInputBodyParam, callback)operates on tapi.path.computation.ComputeP2PPath{base_path}/{version}/operations/tapi-path-computation:compute-p-2-p-path/?{query}Yes
postDeleteP2PPath(tapiPathComputationDeletep2ppathInputBodyParam, callback)operates on tapi.path.computation.DeleteP2PPath{base_path}/{version}/operations/tapi-path-computation:delete-p-2-p-path/?{query}Yes
postOptimizeP2PPath(tapiPathComputationOptimizep2ppathInputBodyParam, callback)operates on tapi.path.computation.OptimizeP2PPath{base_path}/{version}/operations/tapi-path-computation:optimize-p-2-p-path/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroup(uuid, callback)returns tapi.topology.InterRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupAssociatedNodeRuleGroupWithtopologyUuidNodeUuidNodeRuleGroupUuid(uuid, topologyUuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/associated-node-rule-group={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupAvailableCapacity(uuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupAvailableCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRiskCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/risk-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalId(uuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalIdCepPortRole(uuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalIdConnectionSpecReference(uuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalIdSignalProperty(uuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupTotalPotentialCapacity(uuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupTotalPotentialCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLink(uuid, callback)returns tapi.topology.Link{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkAvailableCapacity(uuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkAvailableCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/node-edge-point={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkResilienceType(uuid, callback)returns tapi.topology.ResilienceType{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/resilience-type/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkRiskCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/risk-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkTotalPotentialCapacity(uuid, callback)returns tapi.common.Capacity3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkTotalPotentialCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidLinkValidationMechanismWithvalidationMechanism(uuid, validationMechanism, callback)returns tapi.topology.ValidationMechanism{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:link/validation-mechanism={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNetworkTopologyService(uuid, callback)returns tapi.topology.NetworkTopologyService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:network-topology-service/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNetworkTopologyServiceNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:network-topology-service/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNetworkTopologyServiceTopologyWithtopologyUuid(uuid, topologyUuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:network-topology-service/topology={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePoint(uuid, callback)returns tapi.topology.NodeEdgePoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointAggregatedNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/aggregated-node-edge-point={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointAvailableCapacity(uuid, callback)returns tapi.common.Capacity4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointAvailableCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointAvailableCepLayerProtocolQualifierInstances(uuid, callback)returns tapi.common.SupportedLayerProtocolQualifier{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/available-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointAvailablePayloadStructure(uuid, callback)returns tapi.common.PayloadStructure{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/available-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointAvailablePayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/available-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointInterDomainPlugIdPac(uuid, callback)returns tapi.topology.InterDomainPlugIdPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/inter-domain-plug-id-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointMappedServiceInterfacePointWithserviceInterfacePointUuid(uuid, serviceInterfacePointUuid, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/mapped-service-interface-point={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointSinkProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/sink-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointSourceProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/source-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointSupportedCepLayerProtocolQualifierInstances(uuid, callback)returns tapi.common.SupportedLayerProtocolQualifier1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/supported-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointSupportedLayerProtocolQualifier(uuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/supported-layer-protocol-qualifier/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointSupportedLayerProtocolQualifierCapacity(uuid, callback)returns tapi.common.CapacityValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/supported-layer-protocol-qualifier/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointTotalPotentialCapacity(uuid, callback)returns tapi.common.Capacity5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointTotalPotentialCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroup(uuid, callback)returns tapi.topology.NodeRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupAvailableCapacity(uuid, callback)returns tapi.common.Capacity6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupAvailableCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuid(uuid, interRuleGroupUuid, callback)returns tapi.topology.InterRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidAssociatedNodeRuleGroupWithtopologyUuidNodeUuidNodeRuleGroupUuid(uuid, interRuleGroupUuid, topologyUuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/associated-node-rule-group={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidAvailableCapacity(uuid, interRuleGroupUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidAvailableCapacityTotalSize(uuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidCostCharacteristicWithcostName(uuid, interRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, interRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidNameWithvalueName(uuid, interRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, interRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/risk-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidRuleWithlocalId(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/rule={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/rule={pathv3}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/rule={pathv3}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, interRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/rule={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/rule={pathv3}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacity(uuid, interRuleGroupUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/inter-rule-group={pathv2}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/node-edge-point={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupNodeRuleGroupWithtopologyUuidNodeUuidNodeRuleGroupUuid(uuid, topologyUuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/node-rule-group={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRiskCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/risk-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalId(uuid, localId, callback)returns tapi.topology.Rule1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalIdCepPortRole(uuid, localId, callback)returns tapi.topology.PortRoleRule1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalIdConnectionSpecReference(uuid, localId, callback)returns tapi.topology.ConnectionSpecReference1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalIdSignalProperty(uuid, localId, callback)returns tapi.topology.SignalPropertyRule1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupTotalPotentialCapacity(uuid, callback)returns tapi.common.Capacity7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupTotalPotentialCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNode(uuid, callback)returns tapi.topology.Node{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeAggregatedNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/aggregated-node-edge-point={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeAvailableCapacity(uuid, callback)returns tapi.common.Capacity8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeAvailableCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue10{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEncapTopology(uuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/encap-topology/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuid(uuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidAvailableCapacity(uuid, nodeRuleGroupUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeRuleGroupUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuid(uuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.topology.InterRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAssociatedNodeRuleGroupWithtopologyUuidNodeUuidAssociatedNodeRuleGroupNodeRuleGroupUuid(uuid, nodeRuleGroupUuid, interRuleGroupUuid, topologyUuid, nodeUuid, associatedNodeRuleGroupNodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/associated-node-rule-group={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacity(uuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeRuleGroupUuid, interRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/cost-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeRuleGroupUuid, interRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/latency-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidNameWithvalueName(uuid, nodeRuleGroupUuid, interRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeRuleGroupUuid, interRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/risk-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalId(uuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/name={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacity(uuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/inter-rule-group={pathv3}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidNameWithvalueName(uuid, nodeRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, nodeRuleGroupUuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidNodeRuleGroupWithtopologyUuidNodeUuidNodeRuleGroupNodeRuleGroupUuid(uuid, nodeRuleGroupUuid, topologyUuid, nodeUuid, nodeRuleGroupNodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/node-rule-group={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/risk-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalId(uuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidTotalPotentialCapacity(uuid, nodeRuleGroupUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeRuleGroupUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuid(uuid, ownedNodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidAggregatedNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, ownedNodeEdgePointUuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/aggregated-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCapacity(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCapacityTotalSize(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCepLayerProtocolQualifierInstances(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.SupportedLayerProtocolQualifier{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/available-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailablePayloadStructure(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/available-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailablePayloadStructureCapacity(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/available-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidInterDomainPlugIdPac(uuid, ownedNodeEdgePointUuid, callback)returns tapi.topology.InterDomainPlugIdPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/inter-domain-plug-id-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidMappedServiceInterfacePointWithserviceInterfacePointUuid(uuid, ownedNodeEdgePointUuid, serviceInterfacePointUuid, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/mapped-service-interface-point={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidNameWithvalueName(uuid, ownedNodeEdgePointUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidProfileWithprofileUuid(uuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidSinkProfileWithprofileUuid(uuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/sink-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidSourceProfileWithprofileUuid(uuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/source-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedCepLayerProtocolQualifierInstances(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.SupportedLayerProtocolQualifier1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/supported-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedLayerProtocolQualifier(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/supported-layer-protocol-qualifier/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedLayerProtocolQualifierCapacity(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/supported-layer-protocol-qualifier/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidTotalPotentialCapacity(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidTotalPotentialCapacityTotalSize(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeTotalPotentialCapacity(uuid, callback)returns tapi.common.Capacity9{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeTotalPotentialCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue11{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRule(uuid, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRuleCepPortRole(uuid, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRuleConnectionSpecReference(uuid, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRuleNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRuleSignalProperty(uuid, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopology(uuid, callback)returns tapi.topology.Topology{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyBoundaryNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/boundary-node-edge-point={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuid(uuid, linkUuid, callback)returns tapi.topology.Link{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidAvailableCapacity(uuid, linkUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidAvailableCapacityTotalSize(uuid, linkUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidCostCharacteristicWithcostName(uuid, linkUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidLatencyCharacteristicWithtrafficPropertyName(uuid, linkUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidNameWithvalueName(uuid, linkUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, linkUuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidResilienceType(uuid, linkUuid, callback)returns tapi.topology.ResilienceType{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/resilience-type/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidRiskCharacteristicWithriskCharacteristicName(uuid, linkUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/risk-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidTotalPotentialCapacity(uuid, linkUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidTotalPotentialCapacityTotalSize(uuid, linkUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyLinkWithlinkUuidValidationMechanismWithvalidationMechanism(uuid, linkUuid, validationMechanism, callback)returns tapi.topology.ValidationMechanism{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/link={pathv2}/validation-mechanism={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuid(uuid, nodeUuid, callback)returns tapi.topology.Node{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidAggregatedNodeEdgePointWithtopologyUuidAggregatedNodeEdgePointNodeUuidNodeEdgePointUuid(uuid, nodeUuid, topologyUuid, aggregatedNodeEdgePointNodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/aggregated-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidAvailableCapacity(uuid, nodeUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidAvailableCapacityTotalSize(uuid, nodeUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidCostCharacteristicWithcostName(uuid, nodeUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidEncapTopology(uuid, nodeUuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/encap-topology/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNameWithvalueName(uuid, nodeUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidAvailableCapacity(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeUuid, nodeRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/cost-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.topology.InterRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAssociatedNodeRuleGroupWithtopologyUuidAssociatedNodeRuleGroupNodeUuidAssociatedNodeRuleGroupNodeRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, topologyUuid, associatedNodeRuleGroupNodeUuid, associatedNodeRuleGroupNodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/associated-node-rule-group={pathv5},{pathv6},{pathv7}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacity(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/cost-characteristic={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/latency-characteristic={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/name={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/risk-characteristic={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalId(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/name={pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacity(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, nodeRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/latency-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidNodeEdgePointWithtopologyUuidNodeEdgePointNodeUuidNodeEdgePointUuid(uuid, nodeUuid, nodeRuleGroupUuid, topologyUuid, nodeEdgePointNodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidNodeRuleGroupWithtopologyUuidNodeRuleGroupNodeUuidNodeRuleGroupNodeRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, topologyUuid, nodeRuleGroupNodeUuid, nodeRuleGroupNodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/node-rule-group={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, nodeRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/risk-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalId(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/name={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidTotalPotentialCapacity(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAggregatedNodeEdgePointWithtopologyUuidAggregatedNodeEdgePointNodeUuidNodeEdgePointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, topologyUuid, aggregatedNodeEdgePointNodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/aggregated-node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCapacityTotalSize(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCepLayerProtocolQualifierInstances(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.SupportedLayerProtocolQualifier{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/available-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailablePayloadStructure(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/available-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailablePayloadStructureCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/available-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidInterDomainPlugIdPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.topology.InterDomainPlugIdPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/inter-domain-plug-id-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMappedServiceInterfacePointWithserviceInterfacePointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, serviceInterfacePointUuid, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/mapped-service-interface-point={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSinkProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/sink-profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSourceProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/source-profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedCepLayerProtocolQualifierInstances(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.SupportedLayerProtocolQualifier1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/supported-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedLayerProtocolQualifier(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/supported-layer-protocol-qualifier/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedLayerProtocolQualifierCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/supported-layer-protocol-qualifier/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidTotalPotentialCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidTotalPotentialCapacity(uuid, nodeUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/total-potential-capacity/total-size/?{query}Yes
getContextTopologyContext(callback)returns tapi.topology.TopologyContext{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/?{query}Yes
postContextTopologyContext(tapiTopologyTopologyContextBodyParam, callback)creates tapi.topology.TopologyContext{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/?{query}Yes
putContextTopologyContext(tapiTopologyTopologyContextBodyParam, callback)creates or updates tapi.topology.TopologyContext{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/?{query}Yes
deleteContextTopologyContext(callback)removes tapi.topology.TopologyContext{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/?{query}Yes
getContextTopologyContextNwTopologyService(callback)returns tapi.topology.NetworkTopologyService{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/nw-topology-service/?{query}Yes
getContextTopologyContextNwTopologyServiceNameWithvalueName(valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/nw-topology-service/name={pathv1}/?{query}Yes
getContextTopologyContextNwTopologyServiceTopologyWithtopologyUuid(topologyUuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/nw-topology-service/topology={pathv1}/?{query}Yes
getContextTopologyContextTopologyWithuuid(uuid, callback)returns tapi.topology.Topology1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/?{query}Yes
getContextTopologyContextTopologyWithuuidBoundaryNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef5{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/boundary-node-edge-point={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuid(uuid, linkUuid, callback)returns tapi.topology.Link1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidAvailableCapacity(uuid, linkUuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/available-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidAvailableCapacityTotalSize(uuid, linkUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/available-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidCostCharacteristicWithcostName(uuid, linkUuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidLatencyCharacteristicWithtrafficPropertyName(uuid, linkUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidNameWithvalueName(uuid, linkUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/name={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidNodeEdgePointWithtopologyUuidNodeUuidNodeEdgePointUuid(uuid, linkUuid, topologyUuid, nodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidResilienceType(uuid, linkUuid, callback)returns tapi.topology.ResilienceType1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/resilience-type/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidRiskCharacteristicWithriskCharacteristicName(uuid, linkUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/risk-characteristic={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidTotalPotentialCapacity(uuid, linkUuid, callback)returns tapi.common.Capacity3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/total-potential-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidTotalPotentialCapacityTotalSize(uuid, linkUuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/total-potential-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidValidationMechanismWithvalidationMechanism(uuid, linkUuid, validationMechanism, callback)returns tapi.topology.ValidationMechanism1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/validation-mechanism={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/name={pathv2}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuid(uuid, nodeUuid, callback)returns tapi.topology.Node1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidAggregatedNodeEdgePointWithtopologyUuidAggregatedNodeEdgePointNodeUuidNodeEdgePointUuid(uuid, nodeUuid, topologyUuid, aggregatedNodeEdgePointNodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/aggregated-node-edge-point={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidAvailableCapacity(uuid, nodeUuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/available-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidAvailableCapacityTotalSize(uuid, nodeUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/available-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidCostCharacteristicWithcostName(uuid, nodeUuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidEncapTopology(uuid, nodeUuid, callback)returns tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/encap-topology/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNameWithvalueName(uuid, nodeUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/name={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroup1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidAvailableCapacity(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/available-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/available-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeUuid, nodeRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/cost-characteristic={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.topology.InterRuleGroup1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAssociatedNodeRuleGroupWithtopologyUuidAssociatedNodeRuleGroupNodeUuidAssociatedNodeRuleGroupNodeRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, topologyUuid, associatedNodeRuleGroupNodeUuid, associatedNodeRuleGroupNodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/associated-node-rule-group={pathv5},{pathv6},{pathv7}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacity(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/available-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/available-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/cost-characteristic={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/latency-characteristic={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/risk-characteristic={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalId(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.Rule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/cep-port-role/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/connection-spec-reference/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/rule={pathv5}/signal-property/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacity(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/total-potential-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/inter-rule-group={pathv4}/total-potential-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, nodeRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/latency-characteristic={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/name={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidNodeEdgePointWithtopologyUuidNodeEdgePointNodeUuidNodeEdgePointUuid(uuid, nodeUuid, nodeRuleGroupUuid, topologyUuid, nodeEdgePointNodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidNodeRuleGroupWithtopologyUuidNodeRuleGroupNodeUuidNodeRuleGroupNodeRuleGroupUuid(uuid, nodeUuid, nodeRuleGroupUuid, topologyUuid, nodeRuleGroupNodeUuid, nodeRuleGroupNodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/node-rule-group={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, nodeRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/risk-characteristic={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalId(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.Rule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/cep-port-role/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/connection-spec-reference/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeUuid, nodeRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeUuid, nodeRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/signal-property/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidTotalPotentialCapacity(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.Capacity3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/total-potential-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/total-potential-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePoint1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAggregatedNodeEdgePointWithtopologyUuidAggregatedNodeEdgePointNodeUuidNodeEdgePointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, topologyUuid, aggregatedNodeEdgePointNodeUuid, nodeEdgePointUuid, callback)returns tapi.topology.NodeEdgePointRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/aggregated-node-edge-point={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/available-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCapacityTotalSize(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/available-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailableCepLayerProtocolQualifierInstances(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.SupportedLayerProtocolQualifier2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/available-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailablePayloadStructure(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/available-payload-structure/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAvailablePayloadStructureCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue5{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/available-payload-structure/capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidInterDomainPlugIdPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.topology.InterDomainPlugIdPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/inter-domain-plug-id-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMappedServiceInterfacePointWithserviceInterfacePointUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, serviceInterfacePointUuid, callback)returns tapi.common.ServiceInterfacePointRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/mapped-service-interface-point={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/name={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/profile={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSinkProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/sink-profile={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSourceProfileWithprofileUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, profileUuid, callback)returns tapi.common.ProfileRef5{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/source-profile={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedCepLayerProtocolQualifierInstances(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.SupportedLayerProtocolQualifier3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/supported-cep-layer-protocol-qualifier-instances/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedLayerProtocolQualifier(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/supported-layer-protocol-qualifier/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedLayerProtocolQualifierCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue6{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/supported-layer-protocol-qualifier/capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidTotalPotentialCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.Capacity3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/total-potential-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue7{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/total-potential-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidTotalPotentialCapacity(uuid, nodeUuid, callback)returns tapi.common.Capacity3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/total-potential-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/total-potential-capacity/total-size/?{query}Yes
postGetLinkDetails(tapiTopologyGetlinkdetailsInputBodyParam, callback)operates on tapi.topology.GetLinkDetails{base_path}/{version}/operations/tapi-topology:get-link-details/?{query}Yes
postGetNodeDetails(tapiTopologyGetnodedetailsInputBodyParam, callback)operates on tapi.topology.GetNodeDetails{base_path}/{version}/operations/tapi-topology:get-node-details/?{query}Yes
postGetNodeEdgePointDetails(tapiTopologyGetnodeedgepointdetailsInputBodyParam, callback)operates on tapi.topology.GetNodeEdgePointDetails{base_path}/{version}/operations/tapi-topology:get-node-edge-point-details/?{query}Yes
postGetTopologyDetails(tapiTopologyGettopologydetailsInputBodyParam, callback)operates on tapi.topology.GetTopologyDetails{base_path}/{version}/operations/tapi-topology:get-topology-details/?{query}Yes
postGetTopologyList(callback)OperationsTapiTopologyGetTopologyList_POST{base_path}/{version}/operations/tapi-topology:get-topology-list/?{query}Yes
getContextStreamAdminContext(callback)returns tapi.streaming.StreamAdminContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/?{query}Yes
postContextStreamAdminContext(tapiStreamingStreamAdminContextBodyParam, callback)creates tapi.streaming.StreamAdminContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/?{query}Yes
putContextStreamAdminContext(tapiStreamingStreamAdminContextBodyParam, callback)creates or updates tapi.streaming.StreamAdminContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/?{query}Yes
deleteContextStreamAdminContext(callback)removes tapi.streaming.StreamAdminContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/?{query}Yes
postContextStreamAdminContextName(tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/name/?{query}Yes
getContextStreamAdminContextNameWithvalueName(valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/name={pathv1}/?{query}Yes
putContextStreamAdminContextNameWithvalueName(valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/name={pathv1}/?{query}Yes
deleteContextStreamAdminContextNameWithvalueName(valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/name={pathv1}/?{query}Yes
getContextStreamAdminContextStreamMonitorWithuuid(uuid, callback)returns tapi.streaming.StreamMonitor{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/stream-monitor={pathv1}/?{query}Yes
getContextStreamAdminContextStreamMonitorWithuuidAvailableStream(uuid, callback)returns tapi.streaming.AvailableStreamRef{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/stream-monitor={pathv1}/available-stream/?{query}Yes
getContextStreamAdminContextStreamMonitorWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/stream-monitor={pathv1}/name={pathv2}/?{query}Yes
getContextStreamContext(callback)returns tapi.streaming.context.StreamContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/?{query}Yes
postContextStreamContext(tapiStreamingContextStreamContextBodyParam, callback)creates tapi.streaming.context.StreamContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/?{query}Yes
putContextStreamContext(tapiStreamingContextStreamContextBodyParam, callback)creates or updates tapi.streaming.context.StreamContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/?{query}Yes
deleteContextStreamContext(callback)removes tapi.streaming.context.StreamContext{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/?{query}Yes
getContextStreamContextAvailableStreamWithuuid(uuid, callback)returns tapi.streaming.AvailableStream{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/available-stream={pathv1}/?{query}Yes
getContextStreamContextAvailableStreamWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/available-stream={pathv1}/name={pathv2}/?{query}Yes
getContextStreamContextAvailableStreamWithuuidSupportedStreamType(uuid, callback)returns tapi.streaming.SupportedStreamTypeRef{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/available-stream={pathv1}/supported-stream-type/?{query}Yes
getContextStreamContextSupportedStreamTypeWithuuid(uuid, callback)returns tapi.streaming.streamcontext.SupportedStreamType{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/supported-stream-type={pathv1}/?{query}Yes
getContextStreamContextSupportedStreamTypeWithuuidCompactedLogDetails(uuid, callback)returns tapi.streaming.CompactedLogDetails{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/supported-stream-type={pathv1}/compacted-log-details/?{query}Yes
getContextStreamContextSupportedStreamTypeWithuuidConnectionProtocolDetails(uuid, callback)returns tapi.streaming.ConnectionProtocolDetails{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/supported-stream-type={pathv1}/connection-protocol-details/?{query}Yes
getContextStreamContextSupportedStreamTypeWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/supported-stream-type={pathv1}/name={pathv2}/?{query}Yes
postConnectToStream(tapiStreamingConnecttostreamInputBodyParam, callback)operates on tapi.streaming.ConnectToStream{base_path}/{version}/operations/tapi-streaming:connect-to-stream/?{query}Yes
postGetAvailableStreamConnectionDetails(callback)OperationsTapiStreamingGetAvailableStreamConnectionDetails_POST{base_path}/{version}/operations/tapi-streaming:get-available-stream-connection-details/?{query}Yes
postGetSupportedStreamConnectionTypes(callback)OperationsTapiStreamingGetSupportedStreamConnectionTypes_POST{base_path}/{version}/operations/tapi-streaming:get-supported-stream-connection-types/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-cn-csep-ttp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCnCsepTtpPacBodyParam, callback)creates tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-cn-csep-ttp-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCnCsepTtpPacBodyParam, callback)creates or updates tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-cn-csep-ttp-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-cn-csep-ttp-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OduConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.digital.otn.OduConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.digital.otn.OduConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OduConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCommonPac(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OduCsepCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-common-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCommonPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCsepCommonPacBodyParam, callback)creates tapi.digital.otn.OduCsepCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-common-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCommonPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCsepCommonPacBodyParam, callback)creates or updates tapi.digital.otn.OduCsepCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-common-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCommonPac(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OduCsepCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-common-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OduCsepCtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ctp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCsepCtpPacBodyParam, callback)creates tapi.digital.otn.OduCsepCtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ctp-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCsepCtpPacBodyParam, callback)creates or updates tapi.digital.otn.OduCsepCtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ctp-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepCtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OduCsepCtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ctp-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OduCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ttp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCsepTtpPacBodyParam, callback)creates tapi.digital.otn.OduCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ttp-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOduCsepTtpPacBodyParam, callback)creates or updates tapi.digital.otn.OduCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ttp-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OduCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-csep-ttp-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OtuConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOtuConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.digital.otn.OtuConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOtuConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.digital.otn.OtuConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OtuConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OtuCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOtuCsepTtpPacBodyParam, callback)creates tapi.digital.otn.OtuCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnOtuCsepTtpPacBodyParam, callback)creates or updates tapi.digital.otn.OtuCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OtuCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPacFecType(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.FecType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/fec-type/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPacFecType(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnFecTypeBodyParam, callback)creates tapi.digital.otn.FecType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/fec-type/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPacFecType(uuid, localId, layerProtocolConstraintLocalId, tapiDigitalOtnFecTypeBodyParam, callback)creates or updates tapi.digital.otn.FecType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/fec-type/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtuConnectivityServiceEndPointSpecOtuCsepTtpPacFecType(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.FecType{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:otu-connectivity-service-end-point-spec/otu-csep-ttp-pac/fec-type/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePoint(uuid, localId, callback)returns tapi.digital.otn.OtnOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePoint(uuid, localId, tapiDigitalOtnOtnOamMepServicePointBodyParam, callback)creates tapi.digital.otn.OtnOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePoint(uuid, localId, tapiDigitalOtnOtnOamMepServicePointBodyParam, callback)creates or updates tapi.digital.otn.OtnOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePoint(uuid, localId, callback)removes tapi.digital.otn.OtnOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMep(uuid, localId, callback)returns tapi.digital.otn.OduMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMep(uuid, localId, tapiDigitalOtnOduMepBodyParam, callback)creates tapi.digital.otn.OduMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMep(uuid, localId, tapiDigitalOtnOduMepBodyParam, callback)creates or updates tapi.digital.otn.OduMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMep(uuid, localId, callback)removes tapi.digital.otn.OduMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, callback)returns tapi.digital.otn.OduMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, tapiDigitalOtnOduMepStatusBodyParam, callback)creates tapi.digital.otn.OduMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, tapiDigitalOtnOduMepStatusBodyParam, callback)creates or updates tapi.digital.otn.OduMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, callback)removes tapi.digital.otn.OduMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMep(uuid, localId, callback)returns tapi.digital.otn.OduTcmMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMep(uuid, localId, tapiDigitalOtnOduTcmMepBodyParam, callback)creates tapi.digital.otn.OduTcmMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMep(uuid, localId, tapiDigitalOtnOduTcmMepBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMep(uuid, localId, callback)removes tapi.digital.otn.OduTcmMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, callback)returns tapi.digital.otn.OduTcmMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, tapiDigitalOtnOduTcmMepStatusBodyParam, callback)creates tapi.digital.otn.OduTcmMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, tapiDigitalOtnOduTcmMepStatusBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, callback)removes tapi.digital.otn.OduTcmMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMep(uuid, localId, callback)returns tapi.digital.otn.OtuMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMep(uuid, localId, tapiDigitalOtnOtuMepBodyParam, callback)creates tapi.digital.otn.OtuMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMep(uuid, localId, tapiDigitalOtnOtuMepBodyParam, callback)creates or updates tapi.digital.otn.OtuMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMep(uuid, localId, callback)removes tapi.digital.otn.OtuMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, callback)returns tapi.digital.otn.OtsiaMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtuMepStatus(uuid, localId, callback)returns tapi.digital.otn.OtuMepStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otu-mep-status/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePoint(uuid, localId, callback)returns tapi.digital.otn.OtnOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePoint(uuid, localId, tapiDigitalOtnOtnOamMipServicePointBodyParam, callback)creates tapi.digital.otn.OtnOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePoint(uuid, localId, tapiDigitalOtnOtnOamMipServicePointBodyParam, callback)creates or updates tapi.digital.otn.OtnOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePoint(uuid, localId, callback)removes tapi.digital.otn.OtnOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMip(uuid, localId, callback)returns tapi.digital.otn.OduMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMip(uuid, localId, tapiDigitalOtnOduMipBodyParam, callback)creates tapi.digital.otn.OduMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMip(uuid, localId, tapiDigitalOtnOduMipBodyParam, callback)creates or updates tapi.digital.otn.OduMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMip(uuid, localId, callback)removes tapi.digital.otn.OduMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, callback)returns tapi.digital.otn.OduMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, tapiDigitalOtnOduMipStatusBodyParam, callback)creates tapi.digital.otn.OduMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, tapiDigitalOtnOduMipStatusBodyParam, callback)creates or updates tapi.digital.otn.OduMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, callback)removes tapi.digital.otn.OduMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMip(uuid, localId, callback)returns tapi.digital.otn.OduTcmMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMip(uuid, localId, tapiDigitalOtnOduTcmMipBodyParam, callback)creates tapi.digital.otn.OduTcmMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMip(uuid, localId, tapiDigitalOtnOduTcmMipBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMip(uuid, localId, callback)removes tapi.digital.otn.OduTcmMip{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, callback)returns tapi.digital.otn.OduTcmMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, tapiDigitalOtnOduTcmMipStatusBodyParam, callback)creates tapi.digital.otn.OduTcmMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, tapiDigitalOtnOduTcmMipStatusBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, callback)removes tapi.digital.otn.OduTcmMipStatus{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpec(uuid, localId, callback)returns tapi.digital.otn.OtnMepSpec{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduMep(uuid, localId, callback)returns tapi.digital.otn.OduMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-mep/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduMepOduMepStatus(uuid, localId, callback)returns tapi.digital.otn.OduMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-mep/odu-mep-status/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-mep/otn-oam-common/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduTcmMep(uuid, localId, callback)returns tapi.digital.otn.OduTcmMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-tcm-mep/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduTcmMepOduTcmMepStatus(uuid, localId, callback)returns tapi.digital.otn.OduTcmMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduTcmMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-tcm-mep/otn-oam-common/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOduTcmMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOtuMep(uuid, localId, callback)returns tapi.digital.otn.OtuMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/otu-mep/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOtuMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/otu-mep/otn-oam-common/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOtuMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/otu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOtuMepOtsiaMep(uuid, localId, callback)returns tapi.digital.otn.OtsiaMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/otu-mep/otsia-mep/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdOtnMepSpecOtuMepOtuMepStatus(uuid, localId, callback)returns tapi.digital.otn.OtuMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-digital-otn:otn-mep-spec/otu-mep/otu-mep-status/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpec(uuid, localId, callback)returns tapi.digital.otn.OtnMipSpec{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduMip(uuid, localId, callback)returns tapi.digital.otn.OduMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-mip/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduMipOduMipStatus(uuid, localId, callback)returns tapi.digital.otn.OduMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-mip/odu-mip-status/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduMipOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon8{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-mip/otn-oam-common/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduMipOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr8{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-mip/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduTcmMip(uuid, localId, callback)returns tapi.digital.otn.OduTcmMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-tcm-mip/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduTcmMipOduTcmMipStatus(uuid, localId, callback)returns tapi.digital.otn.OduTcmMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduTcmMipOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon9{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-tcm-mip/otn-oam-common/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdOtnMipSpecOduTcmMipOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr9{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-digital-otn:otn-mip-spec/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextMegWithuuidOduTcmMegSpec(uuid, callback)returns tapi.digital.otn.OduTcmMegSpec{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-digital-otn:odu-tcm-meg-spec/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOduErrorPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OduErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:odu-error-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOduErrorPerformanceDataFarEndOduCounters(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OduCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:odu-error-performance-data/far-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOduErrorPerformanceDataNearEndOduCounters(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OduCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:odu-error-performance-data/near-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOduErrorPerformanceDataOduCnErrorPerformanceDataWithoduCnOhIndex(uuid, localId, historyDataLocalId, oduCnOhIndex, callback)returns tapi.digital.otn.OduCnErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:odu-error-performance-data/odu-cn-error-performance-data={pathv4}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOduErrorPerformanceDataOduCnErrorPerformanceDataWithoduCnOhIndexFarEndOduCounters(uuid, localId, historyDataLocalId, oduCnOhIndex, callback)returns tapi.digital.otn.OduCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:odu-error-performance-data/odu-cn-error-performance-data={pathv4}/far-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOduErrorPerformanceDataOduCnErrorPerformanceDataWithoduCnOhIndexNearEndOduCounters(uuid, localId, historyDataLocalId, oduCnOhIndex, callback)returns tapi.digital.otn.OduCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:odu-error-performance-data/odu-cn-error-performance-data={pathv4}/near-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOtuFecPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OtuFecPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:otu-fec-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOduDelayPerformanceData(uuid, localId, callback)returns tapi.digital.otn.OduDelayPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:odu-delay-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOduErrorPerformanceData(uuid, localId, callback)returns tapi.digital.otn.OduErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:odu-error-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOduErrorPerformanceDataFarEndOduCounters(uuid, localId, callback)returns tapi.digital.otn.OduCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:odu-error-performance-data/far-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOduErrorPerformanceDataNearEndOduCounters(uuid, localId, callback)returns tapi.digital.otn.OduCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:odu-error-performance-data/near-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOduErrorPerformanceDataOduCnErrorPerformanceDataWithoduCnOhIndex(uuid, localId, oduCnOhIndex, callback)returns tapi.digital.otn.OduCnErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:odu-error-performance-data/odu-cn-error-performance-data={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOduErrorPerformanceDataOduCnErrorPerformanceDataWithoduCnOhIndexFarEndOduCounters(uuid, localId, oduCnOhIndex, callback)returns tapi.digital.otn.OduCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:odu-error-performance-data/odu-cn-error-performance-data={pathv3}/far-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOduErrorPerformanceDataOduCnErrorPerformanceDataWithoduCnOhIndexNearEndOduCounters(uuid, localId, oduCnOhIndex, callback)returns tapi.digital.otn.OduCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:odu-error-performance-data/odu-cn-error-performance-data={pathv3}/near-end-odu-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOtuFecPerformanceData(uuid, localId, callback)returns tapi.digital.otn.OtuFecPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:otu-fec-performance-data/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePoint(uuid, localId, callback)returns tapi.digital.otn.OtnOamMepServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePoint(uuid, localId, tapiDigitalOtnOtnOamMepServicePointBodyParam, callback)creates tapi.digital.otn.OtnOamMepServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePoint(uuid, localId, tapiDigitalOtnOtnOamMepServicePointBodyParam, callback)creates or updates tapi.digital.otn.OtnOamMepServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePoint(uuid, localId, callback)removes tapi.digital.otn.OtnOamMepServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMep(uuid, localId, callback)returns tapi.digital.otn.OduMep2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMep(uuid, localId, tapiDigitalOtnOduMepBodyParam, callback)creates tapi.digital.otn.OduMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMep(uuid, localId, tapiDigitalOtnOduMepBodyParam, callback)creates or updates tapi.digital.otn.OduMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMep(uuid, localId, callback)removes tapi.digital.otn.OduMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, callback)returns tapi.digital.otn.OduMepStatus2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, tapiDigitalOtnOduMepStatusBodyParam, callback)creates tapi.digital.otn.OduMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, tapiDigitalOtnOduMepStatusBodyParam, callback)creates or updates tapi.digital.otn.OduMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOduMepStatus(uuid, localId, callback)removes tapi.digital.otn.OduMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/odu-mep-status/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon10{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr10{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduMepOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMep(uuid, localId, callback)returns tapi.digital.otn.OduTcmMep2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMep(uuid, localId, tapiDigitalOtnOduTcmMepBodyParam, callback)creates tapi.digital.otn.OduTcmMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMep(uuid, localId, tapiDigitalOtnOduTcmMepBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMep(uuid, localId, callback)removes tapi.digital.otn.OduTcmMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, callback)returns tapi.digital.otn.OduTcmMepStatus2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, tapiDigitalOtnOduTcmMepStatusBodyParam, callback)creates tapi.digital.otn.OduTcmMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, tapiDigitalOtnOduTcmMepStatusBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOduTcmMepStatus(uuid, localId, callback)removes tapi.digital.otn.OduTcmMepStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/odu-tcm-mep-status/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon11{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr11{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOduTcmMepOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/odu-tcm-mep/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMep(uuid, localId, callback)returns tapi.digital.otn.OtuMep2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMep(uuid, localId, tapiDigitalOtnOtuMepBodyParam, callback)creates tapi.digital.otn.OtuMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMep(uuid, localId, tapiDigitalOtnOtuMepBodyParam, callback)creates or updates tapi.digital.otn.OtuMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMep(uuid, localId, callback)removes tapi.digital.otn.OtuMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon12{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr12{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, callback)returns tapi.digital.otn.OtsiaMep2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtuMepStatus(uuid, localId, callback)returns tapi.digital.otn.OtuMepStatus2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otu-mep-status/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePoint(uuid, localId, callback)returns tapi.digital.otn.OtnOamMipServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePoint(uuid, localId, tapiDigitalOtnOtnOamMipServicePointBodyParam, callback)creates tapi.digital.otn.OtnOamMipServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePoint(uuid, localId, tapiDigitalOtnOtnOamMipServicePointBodyParam, callback)creates or updates tapi.digital.otn.OtnOamMipServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePoint(uuid, localId, callback)removes tapi.digital.otn.OtnOamMipServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMip(uuid, localId, callback)returns tapi.digital.otn.OduMip2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMip(uuid, localId, tapiDigitalOtnOduMipBodyParam, callback)creates tapi.digital.otn.OduMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMip(uuid, localId, tapiDigitalOtnOduMipBodyParam, callback)creates or updates tapi.digital.otn.OduMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMip(uuid, localId, callback)removes tapi.digital.otn.OduMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, callback)returns tapi.digital.otn.OduMipStatus2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, tapiDigitalOtnOduMipStatusBodyParam, callback)creates tapi.digital.otn.OduMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, tapiDigitalOtnOduMipStatusBodyParam, callback)creates or updates tapi.digital.otn.OduMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOduMipStatus(uuid, localId, callback)removes tapi.digital.otn.OduMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/odu-mip-status/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon13{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr13{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduMipOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-mip/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMip(uuid, localId, callback)returns tapi.digital.otn.OduTcmMip2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMip(uuid, localId, tapiDigitalOtnOduTcmMipBodyParam, callback)creates tapi.digital.otn.OduTcmMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMip(uuid, localId, tapiDigitalOtnOduTcmMipBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMip(uuid, localId, callback)removes tapi.digital.otn.OduTcmMip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, callback)returns tapi.digital.otn.OduTcmMipStatus2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, tapiDigitalOtnOduTcmMipStatusBodyParam, callback)creates tapi.digital.otn.OduTcmMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, tapiDigitalOtnOduTcmMipStatusBodyParam, callback)creates or updates tapi.digital.otn.OduTcmMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOduTcmMipStatus(uuid, localId, callback)removes tapi.digital.otn.OduTcmMipStatus1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/odu-tcm-mip-status/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, callback)returns tapi.digital.otn.OtnOamCommon14{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates tapi.digital.otn.OtnOamCommon7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, tapiDigitalOtnOtnOamCommonBodyParam, callback)creates or updates tapi.digital.otn.OtnOamCommon7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, callback)returns tapi.digital.otn.DegThr14{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates tapi.digital.otn.DegThr7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, tapiDigitalOtnDegThrBodyParam, callback)creates or updates tapi.digital.otn.DegThr7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMipServicePointOduTcmMipOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mip-service-point/odu-tcm-mip/otn-oam-common/deg-thr/?{query}Yes
getContextOamContextOamServiceWithuuidOduTcmOamService(uuid, callback)returns tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:odu-tcm-oam-service/?{query}Yes
postContextOamContextOamServiceWithuuidOduTcmOamService(uuid, tapiDigitalOtnOduTcmOamServiceBodyParam, callback)creates tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:odu-tcm-oam-service/?{query}Yes
putContextOamContextOamServiceWithuuidOduTcmOamService(uuid, tapiDigitalOtnOduTcmOamServiceBodyParam, callback)creates or updates tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:odu-tcm-oam-service/?{query}Yes
deleteContextOamContextOamServiceWithuuidOduTcmOamService(uuid, callback)removes tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:odu-tcm-oam-service/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCommon(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduCommonPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-common/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtp(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduCtpPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMipWithcodirectional(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, codirectional, callback)returns tapi.digital.otn.OduMip{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMipWithcodirectionalOduMipStatus(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, codirectional, callback)returns tapi.digital.otn.OduMipStatus{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip={pathv5}/odu-mip-status/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMipWithcodirectionalOtnOamCommon(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, codirectional, callback)returns tapi.digital.otn.OtnOamCommon{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip={pathv5}/otn-oam-common/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMipWithcodirectionalOtnOamCommonDegThr(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, codirectional, callback)returns tapi.digital.otn.DegThr{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip={pathv5}/otn-oam-common/deg-thr/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduProtection(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduProtectionPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-protection/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduTermAndAdapter(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduTerminationAndClientAdaptationPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-term-and-adapter/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduTermAndAdapterAcceptedPayloadType(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduPayloadType{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-term-and-adapter/accepted-payload-type/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduTermAndAdapterOduMep(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduMep{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-term-and-adapter/odu-mep/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduTermAndAdapterOduMepOduMepStatus(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduMepStatus{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-term-and-adapter/odu-mep/odu-mep-status/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduTermAndAdapterOduMepOtnOamCommon(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtnOamCommon{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-term-and-adapter/odu-mep/otn-oam-common/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduTermAndAdapterOduMepOtnOamCommonDegThr(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.DegThr{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-term-and-adapter/odu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtuConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpecOtuTtpPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtuTtpPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/otu-ttp-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpecOtuTtpPacFecType(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.FecType{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/otu-ttp-pac/fec-type/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpecOtuTtpPacOtuMep(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtuMep{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/otu-ttp-pac/otu-mep/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpecOtuTtpPacOtuMepOtnOamCommon(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtnOamCommon1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/otu-ttp-pac/otu-mep/otn-oam-common/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpecOtuTtpPacOtuMepOtnOamCommonDegThr(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.DegThr1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/otu-ttp-pac/otu-mep/otn-oam-common/deg-thr/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpecOtuTtpPacOtuMepOtsiaMep(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtsiaMep{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/otu-ttp-pac/otu-mep/otsia-mep/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtuConnectionEndPointSpecOtuTtpPacOtuMepOtuMepStatus(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtuMepStatus{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:otu-connection-end-point-spec/otu-ttp-pac/otu-mep/otu-mep-status/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJob(uuid, localId, callback)returns tapi.oam.ConnectivityOamJob{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJob(uuid, localId, tapiOamConnectivityOamJobBodyParam, callback)creates tapi.oam.ConnectivityOamJob{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJob(uuid, localId, tapiOamConnectivityOamJobBodyParam, callback)creates or updates tapi.oam.ConnectivityOamJob{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJob(uuid, localId, callback)removes tapi.oam.ConnectivityOamJob{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmData(uuid, localId, tapiOamPmDataBodyParam, callback)creates tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalId(uuid, localId, pmDataLocalId, callback)returns tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalId(uuid, localId, pmDataLocalId, tapiOamPmDataBodyParam, callback)creates or updates tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalId(uuid, localId, pmDataLocalId, callback)removes tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdGranularityPeriod(uuid, localId, pmDataLocalId, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/granularity-period/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdGranularityPeriod(uuid, localId, pmDataLocalId, tapiCommonTimePeriodBodyParam, callback)creates tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/granularity-period/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdGranularityPeriod(uuid, localId, pmDataLocalId, tapiCommonTimePeriodBodyParam, callback)creates or updates tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/granularity-period/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdGranularityPeriod(uuid, localId, pmDataLocalId, callback)removes tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/granularity-period/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdName(uuid, localId, pmDataLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdNameWithvalueName(uuid, localId, pmDataLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/name={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdNameWithvalueName(uuid, localId, pmDataLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/name={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdNameWithvalueName(uuid, localId, pmDataLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/name={pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameter(uuid, localId, pmDataLocalId, tapiOamPmParameterBodyParam, callback)creates tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterName(uuid, localId, pmDataLocalId, pmParameterName, callback)returns tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterName(uuid, localId, pmDataLocalId, pmParameterName, tapiOamPmParameterBodyParam, callback)creates or updates tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterName(uuid, localId, pmDataLocalId, pmParameterName, callback)removes tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfig(uuid, localId, pmDataLocalId, pmParameterName, tapiOamThresholdConfigBodyParam, callback)creates tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmDataLocalId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config={pathv5},{pathv6},{pathv7}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmDataLocalId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, tapiOamThresholdConfigBodyParam, callback)creates or updates tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config={pathv5},{pathv6},{pathv7}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmDataLocalId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)removes tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config={pathv5},{pathv6},{pathv7}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmDataLocalId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config={pathv5},{pathv6},{pathv7}/pm-parameter-value/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmDataLocalId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, tapiCommonPmParameterValueBodyParam, callback)creates tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config={pathv5},{pathv6},{pathv7}/pm-parameter-value/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmDataLocalId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, tapiCommonPmParameterValueBodyParam, callback)creates or updates tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config={pathv5},{pathv6},{pathv7}/pm-parameter-value/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobPmDataWithpmDataLocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmDataLocalId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)removes tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/pm-data={pathv3}/pm-parameter={pathv4}/threshold-config={pathv5},{pathv6},{pathv7}/pm-parameter-value/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobProfile(uuid, localId, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/profile/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobProfile(uuid, localId, tapiCommonProfileRefBodyParam, callback)creates tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/profile/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobProfile(uuid, localId, tapiCommonProfileRefBodyParam, callback)creates or updates tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/profile/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobProfile(uuid, localId, callback)removes tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/profile/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobSchedule(uuid, localId, callback)returns tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/schedule/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobSchedule(uuid, localId, tapiCommonTimeRangeBodyParam, callback)creates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/schedule/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobSchedule(uuid, localId, tapiCommonTimeRangeBodyParam, callback)creates or updates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/schedule/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamJobSchedule(uuid, localId, callback)removes tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-job/schedule/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamService(uuid, localId, callback)returns tapi.oam.ConnectivityOamService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamService(uuid, localId, tapiOamConnectivityOamServiceBodyParam, callback)creates tapi.oam.ConnectivityOamService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamService(uuid, localId, tapiOamConnectivityOamServiceBodyParam, callback)creates or updates tapi.oam.ConnectivityOamService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamService(uuid, localId, callback)removes tapi.oam.ConnectivityOamService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePoint(uuid, localId, tapiOamConnectivityOamServicePointBodyParam, callback)creates tapi.oam.ConnectivityOamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePointWithconnectivityOamServicePointLocalId(uuid, localId, connectivityOamServicePointLocalId, callback)returns tapi.oam.ConnectivityOamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePointWithconnectivityOamServicePointLocalId(uuid, localId, connectivityOamServicePointLocalId, tapiOamConnectivityOamServicePointBodyParam, callback)creates or updates tapi.oam.ConnectivityOamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePointWithconnectivityOamServicePointLocalId(uuid, localId, connectivityOamServicePointLocalId, callback)removes tapi.oam.ConnectivityOamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePointWithconnectivityOamServicePointLocalIdName(uuid, localId, connectivityOamServicePointLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point={pathv3}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePointWithconnectivityOamServicePointLocalIdNameWithvalueName(uuid, localId, connectivityOamServicePointLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point={pathv3}/name={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePointWithconnectivityOamServicePointLocalIdNameWithvalueName(uuid, localId, connectivityOamServicePointLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point={pathv3}/name={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceConnectivityOamServicePointWithconnectivityOamServicePointLocalIdNameWithvalueName(uuid, localId, connectivityOamServicePointLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/connectivity-oam-service-point={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentData(uuid, callback)returns tapi.oam.CurrentData{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataConnectionEndPoint(uuid, callback)returns tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/connection-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataElapsedTime(uuid, callback)returns tapi.common.TimeInterval{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/elapsed-time/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataElapsedTimePeriodWithunit(uuid, unit, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/elapsed-time/period={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataHistoryDataWithlocalId(uuid, localId, callback)returns tapi.oam.HistoryData{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/history-data={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataHistoryDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/history-data={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataHistoryDataWithlocalIdPmDataPac(uuid, localId, callback)returns tapi.oam.PmDataPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/history-data={pathv2}/pm-data-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataHistoryDataWithlocalIdPmDataPacGranularityPeriod(uuid, localId, callback)returns tapi.common.TimeInterval{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/history-data={pathv2}/pm-data-pac/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataHistoryDataWithlocalIdPmDataPacGranularityPeriodPeriodWithunit(uuid, localId, unit, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/history-data={pathv2}/pm-data-pac/granularity-period/period={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataMep(uuid, callback)returns tapi.oam.MepRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/mep/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataMip(uuid, callback)returns tapi.oam.MipRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/mip/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataPmDataPac(uuid, callback)returns tapi.oam.PmDataPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/pm-data-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataPmDataPacGranularityPeriod(uuid, callback)returns tapi.common.TimeInterval1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/pm-data-pac/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidCurrentDataPmDataPacGranularityPeriodPeriodWithunit(uuid, unit, callback)returns tapi.common.TimePeriod1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:current-data/pm-data-pac/granularity-period/period={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHistoryData(uuid, callback)returns tapi.oam.HistoryData{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:history-data/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHistoryDataNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:history-data/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHistoryDataPmDataPac(uuid, callback)returns tapi.oam.PmDataPac1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:history-data/pm-data-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHistoryDataPmDataPacGranularityPeriod(uuid, callback)returns tapi.common.TimeInterval2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:history-data/pm-data-pac/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHistoryDataPmDataPacGranularityPeriodPeriodWithunit(uuid, unit, callback)returns tapi.common.TimePeriod2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:history-data/pm-data-pac/granularity-period/period={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMeg(uuid, callback)returns tapi.oam.Meg{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:meg/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMegMepWithlocalId(uuid, localId, callback)returns tapi.oam.Mep{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:meg/mep={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMegMepWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:meg/mep={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMegMipWithlocalId(uuid, localId, callback)returns tapi.oam.Mip{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:meg/mip={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMegMipWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:meg/mip={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMegNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:meg/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMep(uuid, callback)returns tapi.oam.Mep{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:mep/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMepNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:mep/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMip(uuid, callback)returns tapi.oam.Mip{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:mip/?{query}Yes
getContextNotificationContextEventNotificationWithuuidMipNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:mip/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJob(uuid, callback)returns tapi.oam.OamJob{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobConnectivityServiceEndPoint(uuid, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalId(uuid, localId, callback)returns tapi.oam.CurrentData{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdConnectionEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/connection-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdElapsedTime(uuid, localId, callback)returns tapi.common.TimeInterval1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/elapsed-time/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdElapsedTimePeriodWithunit(uuid, localId, unit, callback)returns tapi.common.TimePeriod1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/elapsed-time/period={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalId(uuid, localId, historyDataLocalId, callback)returns tapi.oam.HistoryData{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/history-data={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdNameWithvalueName(uuid, localId, historyDataLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/history-data={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPmDataPac(uuid, localId, historyDataLocalId, callback)returns tapi.oam.PmDataPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/history-data={pathv3}/pm-data-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPmDataPacGranularityPeriod(uuid, localId, historyDataLocalId, callback)returns tapi.common.TimeInterval{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/history-data={pathv3}/pm-data-pac/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPmDataPacGranularityPeriodPeriodWithunit(uuid, localId, historyDataLocalId, unit, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/history-data={pathv3}/pm-data-pac/granularity-period/period={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdMep(uuid, localId, callback)returns tapi.oam.MepRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/mep/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdMip(uuid, localId, callback)returns tapi.oam.MipRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/mip/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdPmDataPac(uuid, localId, callback)returns tapi.oam.PmDataPac1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/pm-data-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdPmDataPacGranularityPeriod(uuid, localId, callback)returns tapi.common.TimeInterval2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/pm-data-pac/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobCurrentDataWithlocalIdPmDataPacGranularityPeriodPeriodWithunit(uuid, localId, unit, callback)returns tapi.common.TimePeriod2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/current-data={pathv2}/pm-data-pac/granularity-period/period={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobOamServicePointWithoamServiceUuidOamServicePointLocalId(uuid, oamServiceUuid, oamServicePointLocalId, callback)returns tapi.oam.OamServicePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/oam-service-point={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobPmDataWithlocalId(uuid, localId, callback)returns tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/pm-data={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobPmDataWithlocalIdGranularityPeriod(uuid, localId, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/pm-data={pathv2}/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobPmDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/pm-data={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobPmDataWithlocalIdPmParameterWithpmParameterName(uuid, localId, pmParameterName, callback)returns tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/pm-data={pathv2}/pm-parameter={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/pm-parameter-value/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobProfile(uuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/profile/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamJobSchedule(uuid, callback)returns tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-job/schedule/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamProfile(uuid, callback)returns tapi.oam.OamProfile{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-profile/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamProfilePmDataWithlocalId(uuid, localId, callback)returns tapi.oam.PmData1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamProfilePmDataWithlocalIdGranularityPeriod(uuid, localId, callback)returns tapi.common.TimePeriod1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamProfilePmDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamProfilePmDataWithlocalIdPmParameterWithpmParameterName(uuid, localId, pmParameterName, callback)returns tapi.oam.PmParameter1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/pm-parameter={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamProfilePmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.oam.ThresholdConfig1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamProfilePmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.common.PmParameterValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/pm-parameter-value/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServicePoint(uuid, callback)returns tapi.oam.OamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServicePointConnectionEndPoint(uuid, callback)returns tapi.connectivity.ConnectionEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service-point/connection-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServicePointConnectivityServiceEndPoint(uuid, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service-point/connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServicePointMep(uuid, callback)returns tapi.oam.MepRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service-point/mep/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServicePointMip(uuid, callback)returns tapi.oam.MipRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service-point/mip/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServicePointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service-point/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServicePointServiceInterfacePoint(uuid, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service-point/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamService(uuid, callback)returns tapi.oam.OamService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceMeg(uuid, callback)returns tapi.oam.MegRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/meg/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceOamServicePointWithlocalId(uuid, localId, callback)returns tapi.oam.OamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/oam-service-point={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceOamServicePointWithlocalIdConnectionEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectionEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/oam-service-point={pathv2}/connection-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceOamServicePointWithlocalIdConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/oam-service-point={pathv2}/connectivity-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceOamServicePointWithlocalIdMep(uuid, localId, callback)returns tapi.oam.MepRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/oam-service-point={pathv2}/mep/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceOamServicePointWithlocalIdMip(uuid, localId, callback)returns tapi.oam.MipRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/oam-service-point={pathv2}/mip/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceOamServicePointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/oam-service-point={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidOamServiceOamServicePointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:oam-service/oam-service-point={pathv2}/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPmData(uuid, callback)returns tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:pm-data/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPmDataGranularityPeriod(uuid, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:pm-data/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPmDataNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:pm-data/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPmDataPmParameterWithpmParameterName(uuid, pmParameterName, callback)returns tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:pm-data/pm-parameter={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPmDataPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:pm-data/pm-parameter={pathv2}/threshold-config={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPmDataPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-oam:pm-data/pm-parameter={pathv2}/threshold-config={pathv3},{pathv4},{pathv5}/pm-parameter-value/?{query}Yes
getContextOamContext(callback)returns tapi.oam.OamContext{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/?{query}Yes
postContextOamContext(tapiOamOamContextBodyParam, callback)creates tapi.oam.OamContext{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/?{query}Yes
putContextOamContext(tapiOamOamContextBodyParam, callback)creates or updates tapi.oam.OamContext{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/?{query}Yes
deleteContextOamContext(callback)removes tapi.oam.OamContext{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/?{query}Yes
getContextOamContextMegWithuuid(uuid, callback)returns tapi.oam.Meg1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalId(uuid, localId, callback)returns tapi.oam.Mep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/name={pathv3}/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalId(uuid, localId, callback)returns tapi.oam.Mip1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/name={pathv3}/?{query}Yes
getContextOamContextMegWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue9{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/name={pathv2}/?{query}Yes
postContextOamContextOamJob(tapiOamOamJobBodyParam, callback)creates tapi.oam.OamJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job/?{query}Yes
getContextOamContextOamJobWithuuid(uuid, callback)returns tapi.oam.OamJob1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/?{query}Yes
putContextOamContextOamJobWithuuid(uuid, tapiOamOamJobBodyParam, callback)creates or updates tapi.oam.OamJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/?{query}Yes
deleteContextOamContextOamJobWithuuid(uuid, callback)removes tapi.oam.OamJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/?{query}Yes
postContextOamContextOamJobWithuuidConnectionEndPoint(uuid, tapiConnectivityConnectionEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connection-end-point/?{query}Yes
getContextOamContextOamJobWithuuidConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.connectivity.ConnectionEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
putContextOamContextOamJobWithuuidConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, tapiConnectivityConnectionEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
deleteContextOamContextOamJobWithuuidConnectionEndPointWithtopologyUuidNodeUuidNodeEdgePointUuidConnectionEndPointUuid(uuid, topologyUuid, nodeUuid, nodeEdgePointUuid, connectionEndPointUuid, callback)removes tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connection-end-point={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextOamContextOamJobWithuuidConnectivityServiceEndPoint(uuid, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connectivity-service-end-point/?{query}Yes
postContextOamContextOamJobWithuuidConnectivityServiceEndPoint(uuid, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connectivity-service-end-point/?{query}Yes
putContextOamContextOamJobWithuuidConnectivityServiceEndPoint(uuid, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connectivity-service-end-point/?{query}Yes
deleteContextOamContextOamJobWithuuidConnectivityServiceEndPoint(uuid, callback)removes tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/connectivity-service-end-point/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalId(uuid, localId, callback)returns tapi.oam.CurrentData1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdConnectionEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectionEndPointRef2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/connection-end-point/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdElapsedTime(uuid, localId, callback)returns tapi.common.TimeInterval3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/elapsed-time/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdElapsedTimePeriodWithunit(uuid, localId, unit, callback)returns tapi.common.TimePeriod3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/elapsed-time/period={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalId(uuid, localId, historyDataLocalId, callback)returns tapi.oam.HistoryData1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdNameWithvalueName(uuid, localId, historyDataLocalId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/name={pathv4}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPmDataPac(uuid, localId, historyDataLocalId, callback)returns tapi.oam.PmDataPac1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/pm-data-pac/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPmDataPacGranularityPeriod(uuid, localId, historyDataLocalId, callback)returns tapi.common.TimeInterval1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/pm-data-pac/granularity-period/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPmDataPacGranularityPeriodPeriodWithunit(uuid, localId, historyDataLocalId, unit, callback)returns tapi.common.TimePeriod1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/pm-data-pac/granularity-period/period={pathv4}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdMep(uuid, localId, callback)returns tapi.oam.MepRef2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/mep/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdMip(uuid, localId, callback)returns tapi.oam.MipRef2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/mip/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue9{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/name={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPmDataPac(uuid, localId, callback)returns tapi.oam.PmDataPac2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/pm-data-pac/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPmDataPacGranularityPeriod(uuid, localId, callback)returns tapi.common.TimeInterval4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/pm-data-pac/granularity-period/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPmDataPacGranularityPeriodPeriodWithunit(uuid, localId, unit, callback)returns tapi.common.TimePeriod4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/pm-data-pac/granularity-period/period={pathv3}/?{query}Yes
postContextOamContextOamJobWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/name/?{query}Yes
getContextOamContextOamJobWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue10{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/name={pathv2}/?{query}Yes
putContextOamContextOamJobWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/name={pathv2}/?{query}Yes
deleteContextOamContextOamJobWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/name={pathv2}/?{query}Yes
postContextOamContextOamJobWithuuidOamServicePoint(uuid, tapiOamOamServicePointRefBodyParam, callback)creates tapi.oam.OamServicePointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/oam-service-point/?{query}Yes
getContextOamContextOamJobWithuuidOamServicePointWithoamServiceUuidOamServicePointLocalId(uuid, oamServiceUuid, oamServicePointLocalId, callback)returns tapi.oam.OamServicePointRef1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/oam-service-point={pathv2},{pathv3}/?{query}Yes
putContextOamContextOamJobWithuuidOamServicePointWithoamServiceUuidOamServicePointLocalId(uuid, oamServiceUuid, oamServicePointLocalId, tapiOamOamServicePointRefBodyParam, callback)creates or updates tapi.oam.OamServicePointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/oam-service-point={pathv2},{pathv3}/?{query}Yes
deleteContextOamContextOamJobWithuuidOamServicePointWithoamServiceUuidOamServicePointLocalId(uuid, oamServiceUuid, oamServicePointLocalId, callback)removes tapi.oam.OamServicePointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/oam-service-point={pathv2},{pathv3}/?{query}Yes
postContextOamContextOamJobWithuuidPmData(uuid, tapiOamPmDataBodyParam, callback)creates tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data/?{query}Yes
getContextOamContextOamJobWithuuidPmDataWithlocalId(uuid, localId, callback)returns tapi.oam.PmData2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/?{query}Yes
putContextOamContextOamJobWithuuidPmDataWithlocalId(uuid, localId, tapiOamPmDataBodyParam, callback)creates or updates tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/?{query}Yes
deleteContextOamContextOamJobWithuuidPmDataWithlocalId(uuid, localId, callback)removes tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/?{query}Yes
getContextOamContextOamJobWithuuidPmDataWithlocalIdGranularityPeriod(uuid, localId, callback)returns tapi.common.TimePeriod2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/granularity-period/?{query}Yes
postContextOamContextOamJobWithuuidPmDataWithlocalIdGranularityPeriod(uuid, localId, tapiCommonTimePeriodBodyParam, callback)creates tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/granularity-period/?{query}Yes
putContextOamContextOamJobWithuuidPmDataWithlocalIdGranularityPeriod(uuid, localId, tapiCommonTimePeriodBodyParam, callback)creates or updates tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/granularity-period/?{query}Yes
deleteContextOamContextOamJobWithuuidPmDataWithlocalIdGranularityPeriod(uuid, localId, callback)removes tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/granularity-period/?{query}Yes
postContextOamContextOamJobWithuuidPmDataWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/name/?{query}Yes
getContextOamContextOamJobWithuuidPmDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue10{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/name={pathv3}/?{query}Yes
putContextOamContextOamJobWithuuidPmDataWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/name={pathv3}/?{query}Yes
deleteContextOamContextOamJobWithuuidPmDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/name={pathv3}/?{query}Yes
postContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameter(uuid, localId, tapiOamPmParameterBodyParam, callback)creates tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter/?{query}Yes
getContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterName(uuid, localId, pmParameterName, callback)returns tapi.oam.PmParameter2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/?{query}Yes
putContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterName(uuid, localId, pmParameterName, tapiOamPmParameterBodyParam, callback)creates or updates tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/?{query}Yes
deleteContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterName(uuid, localId, pmParameterName, callback)removes tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/?{query}Yes
postContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfig(uuid, localId, pmParameterName, tapiOamThresholdConfigBodyParam, callback)creates tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config/?{query}Yes
getContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.oam.ThresholdConfig2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/?{query}Yes
putContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, tapiOamThresholdConfigBodyParam, callback)creates or updates tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/?{query}Yes
deleteContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)removes tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.common.PmParameterValue2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/pm-parameter-value/?{query}Yes
postContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, tapiCommonPmParameterValueBodyParam, callback)creates tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/pm-parameter-value/?{query}Yes
putContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, tapiCommonPmParameterValueBodyParam, callback)creates or updates tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/pm-parameter-value/?{query}Yes
deleteContextOamContextOamJobWithuuidPmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)removes tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/pm-parameter-value/?{query}Yes
getContextOamContextOamJobWithuuidProfile(uuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/profile/?{query}Yes
postContextOamContextOamJobWithuuidProfile(uuid, tapiCommonProfileRefBodyParam, callback)creates tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/profile/?{query}Yes
putContextOamContextOamJobWithuuidProfile(uuid, tapiCommonProfileRefBodyParam, callback)creates or updates tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/profile/?{query}Yes
deleteContextOamContextOamJobWithuuidProfile(uuid, callback)removes tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/profile/?{query}Yes
getContextOamContextOamJobWithuuidSchedule(uuid, callback)returns tapi.common.TimeRange1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/schedule/?{query}Yes
postContextOamContextOamJobWithuuidSchedule(uuid, tapiCommonTimeRangeBodyParam, callback)creates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/schedule/?{query}Yes
putContextOamContextOamJobWithuuidSchedule(uuid, tapiCommonTimeRangeBodyParam, callback)creates or updates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/schedule/?{query}Yes
deleteContextOamContextOamJobWithuuidSchedule(uuid, callback)removes tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/schedule/?{query}Yes
postContextOamContextOamService(tapiOamOamServiceBodyParam, callback)creates tapi.oam.OamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service/?{query}Yes
getContextOamContextOamServiceWithuuid(uuid, callback)returns tapi.oam.OamService1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/?{query}Yes
putContextOamContextOamServiceWithuuid(uuid, tapiOamOamServiceBodyParam, callback)creates or updates tapi.oam.OamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/?{query}Yes
deleteContextOamContextOamServiceWithuuid(uuid, callback)removes tapi.oam.OamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/?{query}Yes
getContextOamContextOamServiceWithuuidMeg(uuid, callback)returns tapi.oam.MegRef1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/meg/?{query}Yes
postContextOamContextOamServiceWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/name/?{query}Yes
getContextOamContextOamServiceWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue11{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/name={pathv2}/?{query}Yes
putContextOamContextOamServiceWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/name={pathv2}/?{query}Yes
deleteContextOamContextOamServiceWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/name={pathv2}/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePoint(uuid, tapiOamOamServicePointBodyParam, callback)creates tapi.oam.OamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalId(uuid, localId, callback)returns tapi.oam.OamServicePoint1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalId(uuid, localId, tapiOamOamServicePointBodyParam, callback)creates or updates tapi.oam.OamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalId(uuid, localId, callback)removes tapi.oam.OamServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectionEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectionEndPointRef3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connection-end-point/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectionEndPoint(uuid, localId, tapiConnectivityConnectionEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connection-end-point/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectionEndPoint(uuid, localId, tapiConnectivityConnectionEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connection-end-point/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectionEndPoint(uuid, localId, callback)removes tapi.connectivity.ConnectionEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connection-end-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectivityServiceEndPoint(uuid, localId, callback)returns tapi.connectivity.ConnectivityServiceEndPointRef1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connectivity-service-end-point/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connectivity-service-end-point/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectivityServiceEndPoint(uuid, localId, tapiConnectivityConnectivityServiceEndPointRefBodyParam, callback)creates or updates tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connectivity-service-end-point/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdConnectivityServiceEndPoint(uuid, localId, callback)removes tapi.connectivity.ConnectivityServiceEndPointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/connectivity-service-end-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdMep(uuid, localId, callback)returns tapi.oam.MepRef3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/mep/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdMip(uuid, localId, callback)returns tapi.oam.MipRef3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/mip/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/name/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue11{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/name={pathv3}/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/name={pathv3}/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/name={pathv3}/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/service-interface-point/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdServiceInterfacePoint(uuid, localId, tapiCommonServiceInterfacePointRefBodyParam, callback)creates tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/service-interface-point/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdServiceInterfacePoint(uuid, localId, tapiCommonServiceInterfacePointRefBodyParam, callback)creates or updates tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/service-interface-point/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdServiceInterfacePoint(uuid, localId, callback)removes tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/service-interface-point/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMepMipList(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.oam.MepMipList{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-oam:mep-mip-list/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMepMipListMepWithmegUuidMepLocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, megUuid, mepLocalId, callback)returns tapi.oam.MepRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-oam:mep-mip-list/mep={pathv5},{pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMepMipListMipWithmegUuidMipLocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, megUuid, mipLocalId, callback)returns tapi.oam.MipRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-oam:mep-mip-list/mip={pathv5},{pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMepMipList(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.oam.MepMipList{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-oam:mep-mip-list/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMepMipListMepWithmegUuidMepLocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, megUuid, mepLocalId, callback)returns tapi.oam.MepRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-oam:mep-mip-list/mep={pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMepMipListMipWithmegUuidMipLocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, megUuid, mipLocalId, callback)returns tapi.oam.MipRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-oam:mep-mip-list/mip={pathv4},{pathv5}/?{query}Yes
postCreateOamJob(tapiOamCreateoamjobInputBodyParam, callback)operates on tapi.oam.CreateOamJob{base_path}/{version}/operations/tapi-oam:create-oam-job/?{query}Yes
postCreateOamProfile(tapiOamCreateoamprofileInputBodyParam, callback)operates on tapi.oam.CreateOamProfile{base_path}/{version}/operations/tapi-oam:create-oam-profile/?{query}Yes
postCreateOamServicePoint(tapiOamCreateoamservicepointInputBodyParam, callback)operates on tapi.oam.CreateOamServicePoint{base_path}/{version}/operations/tapi-oam:create-oam-service-point/?{query}Yes
postCreateOamService(tapiOamCreateoamserviceInputBodyParam, callback)operates on tapi.oam.CreateOamService{base_path}/{version}/operations/tapi-oam:create-oam-service/?{query}Yes
postDeleteOamJob(tapiOamDeleteoamjobInputBodyParam, callback)operates on tapi.oam.DeleteOamJob{base_path}/{version}/operations/tapi-oam:delete-oam-job/?{query}Yes
postDeleteOamProfile(tapiOamDeleteoamprofileInputBodyParam, callback)operates on tapi.oam.DeleteOamProfile{base_path}/{version}/operations/tapi-oam:delete-oam-profile/?{query}Yes
postDeleteOamServicePoint(tapiOamDeleteoamservicepointInputBodyParam, callback)operates on tapi.oam.DeleteOamServicePoint{base_path}/{version}/operations/tapi-oam:delete-oam-service-point/?{query}Yes
postDeleteOamService(tapiOamDeleteoamserviceInputBodyParam, callback)operates on tapi.oam.DeleteOamService{base_path}/{version}/operations/tapi-oam:delete-oam-service/?{query}Yes
postGetMeg(tapiOamGetmegInputBodyParam, callback)operates on tapi.oam.GetMeg{base_path}/{version}/operations/tapi-oam:get-meg/?{query}Yes
postGetOamJobList(callback)OperationsTapiOamGetOamJobList_POST{base_path}/{version}/operations/tapi-oam:get-oam-job-list/?{query}Yes
postGetOamJob(tapiOamGetoamjobInputBodyParam, callback)operates on tapi.oam.GetOamJob{base_path}/{version}/operations/tapi-oam:get-oam-job/?{query}Yes
postGetOamProfile(tapiOamGetoamprofileInputBodyParam, callback)operates on tapi.oam.GetOamProfile{base_path}/{version}/operations/tapi-oam:get-oam-profile/?{query}Yes
postGetOamServiceList(callback)OperationsTapiOamGetOamServiceList_POST{base_path}/{version}/operations/tapi-oam:get-oam-service-list/?{query}Yes
postGetOamServicePoint(tapiOamGetoamservicepointInputBodyParam, callback)operates on tapi.oam.GetOamServicePoint{base_path}/{version}/operations/tapi-oam:get-oam-service-point/?{query}Yes
postGetOamService(tapiOamGetoamserviceInputBodyParam, callback)operates on tapi.oam.GetOamService{base_path}/{version}/operations/tapi-oam:get-oam-service/?{query}Yes
postUpdateOamJob(tapiOamUpdateoamjobInputBodyParam, callback)operates on tapi.oam.UpdateOamJob{base_path}/{version}/operations/tapi-oam:update-oam-job/?{query}Yes
postUpdateOamProfile(tapiOamUpdateoamprofileInputBodyParam, callback)operates on tapi.oam.UpdateOamProfile{base_path}/{version}/operations/tapi-oam:update-oam-profile/?{query}Yes
postUpdateOamServicePoint(tapiOamUpdateoamservicepointInputBodyParam, callback)operates on tapi.oam.UpdateOamServicePoint{base_path}/{version}/operations/tapi-oam:update-oam-service-point/?{query}Yes
postUpdateOamService(tapiOamUpdateoamserviceInputBodyParam, callback)operates on tapi.oam.UpdateOamService{base_path}/{version}/operations/tapi-oam:update-oam-service/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDetectedCondition(uuid, callback)returns tapi.fm.DetectedCondition{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-fm:detected-condition/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDetectedConditionDetectorInfo(uuid, callback)returns tapi.fm.DetectorInfo{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-fm:detected-condition/detector-info/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDetectedConditionPmMetricInfo(uuid, callback)returns tapi.fm.PmMetricInfo{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-fm:detected-condition/pm-metric-info/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDetectedConditionPmMetricInfoGranularityPeriod(uuid, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-fm:detected-condition/pm-metric-info/granularity-period/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDetectedConditionPmMetricInfoThresholdConfiguredValue(uuid, callback)returns tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-fm:detected-condition/pm-metric-info/threshold-configured-value/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDetectedConditionPmMetricInfoThresholdObservedValue(uuid, callback)returns tapi.common.PmParameterValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-fm:detected-condition/pm-metric-info/threshold-observed-value/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDetectedConditionSimpleDetector(uuid, callback)returns tapi.fm.SimpleDetector{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-fm:detected-condition/simple-detector/?{query}Yes
getContextNotificationContextNotificationWithuuidAlarmInfo(uuid, callback)returns tapi.fm.AlarmInfo{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/tapi-fm:alarm-info/?{query}Yes
getContextNotificationContextNotificationWithuuidTcaInfo(uuid, callback)returns tapi.fm.TcaInfo{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/tapi-fm:tca-info/?{query}Yes
getContextNotificationContextNotificationWithuuidTcaInfoGranularityPeriod(uuid, callback)returns tapi.common.TimePeriod1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/tapi-fm:tca-info/granularity-period/?{query}Yes
getContextNotificationContextNotificationWithuuidTcaInfoThresholdConfiguredValue(uuid, callback)returns tapi.common.PmParameterValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/tapi-fm:tca-info/threshold-configured-value/?{query}Yes
getContextNotificationContextNotificationWithuuidTcaInfoThresholdObservedValue(uuid, callback)returns tapi.common.PmParameterValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notification={pathv1}/tapi-fm:tca-info/threshold-observed-value/?{query}Yes
getContextServiceInterfacePointWithuuidSupportingAccessPort(uuid, callback)returns tapi.equipment.SupportingAccessPort{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-equipment:supporting-access-port/?{query}Yes
postContextServiceInterfacePointWithuuidSupportingAccessPort(uuid, tapiEquipmentSupportingAccessPortBodyParam, callback)creates tapi.equipment.SupportingAccessPort{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-equipment:supporting-access-port/?{query}Yes
putContextServiceInterfacePointWithuuidSupportingAccessPort(uuid, tapiEquipmentSupportingAccessPortBodyParam, callback)creates or updates tapi.equipment.SupportingAccessPort{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-equipment:supporting-access-port/?{query}Yes
deleteContextServiceInterfacePointWithuuidSupportingAccessPort(uuid, callback)removes tapi.equipment.SupportingAccessPort{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-equipment:supporting-access-port/?{query}Yes
getContextServiceInterfacePointWithuuidSupportingAccessPortAccessPort(uuid, callback)returns tapi.equipment.AccessPortRef{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-equipment:supporting-access-port/access-port/?{query}Yes
getContextConnectivityContextConnectionWithuuidPhysicalRouteList(uuid, callback)returns tapi.equipment.PhysicalRouteList{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/tapi-equipment:physical-route-list/?{query}Yes
getContextConnectivityContextConnectionWithuuidPhysicalRouteListPhysicalRouteWithlocalId(uuid, localId, callback)returns tapi.equipment.PhysicalRoute{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/tapi-equipment:physical-route-list/physical-route={pathv2}/?{query}Yes
getContextConnectivityContextConnectionWithuuidPhysicalRouteListPhysicalRouteWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/tapi-equipment:physical-route-list/physical-route={pathv2}/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectionWithuuidPhysicalRouteListPhysicalRouteWithlocalIdPhysicalRouteElement(uuid, localId, callback)returns tapi.equipment.PhysicalRouteElement{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/tapi-equipment:physical-route-list/physical-route={pathv2}/physical-route-element/?{query}Yes
getContextConnectivityContextConnectionWithuuidPhysicalRouteListPhysicalRouteWithlocalIdPhysicalRouteElementAccessPortInRoute(uuid, localId, callback)returns tapi.equipment.AccessPortRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/tapi-equipment:physical-route-list/physical-route={pathv2}/physical-route-element/access-port-in-route/?{query}Yes
getContextConnectivityContextConnectionWithuuidPhysicalRouteListPhysicalRouteWithlocalIdPhysicalRouteElementConnectorPinInRouteWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, localId, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/tapi-equipment:physical-route-list/physical-route={pathv2}/physical-route-element/connector-pin-in-route={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextConnectivityContextConnectionWithuuidPhysicalRouteListPhysicalRouteWithlocalIdPhysicalRouteElementConnectorPinInRouteWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, localId, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/tapi-equipment:physical-route-list/physical-route={pathv2}/physical-route-element/connector-pin-in-route={pathv3},{pathv4},{pathv5},{pathv6}/pin-and-role={pathv7}/?{query}Yes
getContextPhysicalContext(callback)returns tapi.equipment.PhysicalContext{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/?{query}Yes
postContextPhysicalContext(tapiEquipmentPhysicalContextBodyParam, callback)creates tapi.equipment.PhysicalContext{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/?{query}Yes
putContextPhysicalContext(tapiEquipmentPhysicalContextBodyParam, callback)creates or updates tapi.equipment.PhysicalContext{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/?{query}Yes
deleteContextPhysicalContext(callback)removes tapi.equipment.PhysicalContext{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/?{query}Yes
getContextPhysicalContextDeviceWithuuid(uuid, callback)returns tapi.equipment.Device{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/?{query}Yes
getContextPhysicalContextDeviceWithuuidAccessPortWithaccessPortUuid(uuid, accessPortUuid, callback)returns tapi.equipment.AccessPort{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/access-port={pathv2}/?{query}Yes
getContextPhysicalContextDeviceWithuuidAccessPortWithaccessPortUuidConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, accessPortUuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/access-port={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextPhysicalContextDeviceWithuuidAccessPortWithaccessPortUuidConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, accessPortUuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/access-port={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/pin-and-role={pathv7}/?{query}Yes
getContextPhysicalContextDeviceWithuuidAccessPortWithaccessPortUuidNameWithvalueName(uuid, accessPortUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/access-port={pathv2}/name={pathv3}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuid(uuid, equipmentUuid, callback)returns tapi.equipment.Equipment{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidActualEquipment(uuid, equipmentUuid, callback)returns tapi.equipment.ActualEquipment{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/actual-equipment/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalId(uuid, equipmentUuid, localId, callback)returns tapi.equipment.ActualNonFieldReplaceableModule{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalIdCommonActualProperties(uuid, equipmentUuid, localId, callback)returns tapi.equipment.CommonActualProperties{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/common-actual-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalIdCommonEquipmentProperties(uuid, equipmentUuid, localId, callback)returns tapi.equipment.CommonEquipmentProperties{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/common-equipment-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalIdNameWithvalueName(uuid, equipmentUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/name={pathv4}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidActualEquipmentCommonActualProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonActualProperties{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/actual-equipment/common-actual-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidActualEquipmentCommonEquipmentProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonEquipmentProperties{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/actual-equipment/common-equipment-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuid(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.Holder{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/contained-holder={pathv3}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidActualHolder(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.ActualHolder{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/contained-holder={pathv3}/actual-holder/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidActualHolderCommonHolderProperties(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.CommonHolderProperties{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/contained-holder={pathv3}/actual-holder/common-holder-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidExpectedHolder(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.ExpectedHolder{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/contained-holder={pathv3}/expected-holder/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidExpectedHolderCommonHolderProperties(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.CommonHolderProperties1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/contained-holder={pathv3}/expected-holder/common-holder-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidNameWithvalueName(uuid, equipmentUuid, containedHolderUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/contained-holder={pathv3}/name={pathv4}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidOccupyingFru(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.EquipmentRef{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/contained-holder={pathv3}/occupying-fru/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidExpectedEquipment(uuid, equipmentUuid, callback)returns tapi.equipment.ExpectedEquipment{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/expected-equipment/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidExpectedEquipmentCommonEquipmentProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonEquipmentProperties1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/expected-equipment/common-equipment-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidExpectedEquipmentExpectedHolder(uuid, equipmentUuid, callback)returns tapi.equipment.ExpectedHolder{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/expected-equipment/expected-holder/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidExpectedEquipmentExpectedHolderCommonHolderProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonHolderProperties{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/expected-equipment/expected-holder/common-holder-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalId(uuid, equipmentUuid, localId, callback)returns tapi.equipment.ExpectedNonFieldReplaceableModule{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/expected-equipment/expected-non-field-replaceable-module={pathv3}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalIdCommonEquipmentProperties(uuid, equipmentUuid, localId, callback)returns tapi.equipment.CommonEquipmentProperties1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/expected-equipment/expected-non-field-replaceable-module={pathv3}/common-equipment-properties/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalIdNameWithvalueName(uuid, equipmentUuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/expected-equipment/expected-non-field-replaceable-module={pathv3}/name={pathv4}/?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidNameWithvalueName(uuid, equipmentUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/name={pathv3}/?{query}Yes
getContextPhysicalContextDeviceWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/name={pathv2}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuid(uuid, callback)returns tapi.equipment.PhysicalSpan{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalId(uuid, localId, callback)returns tapi.equipment.AbstractStrand{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdAdjacentStrandWithphysicalSpanUuidAbstractStrandLocalId(uuid, localId, physicalSpanUuid, abstractStrandLocalId, callback)returns tapi.equipment.AbstractStrandRef{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/adjacent-strand={pathv3},{pathv4}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, localId, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, localId, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/pin-and-role={pathv7}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/name={pathv3}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdSplicedStrandWithphysicalSpanUuidAbstractStrandLocalId(uuid, localId, physicalSpanUuid, abstractStrandLocalId, callback)returns tapi.equipment.AbstractStrandRef1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/spliced-strand={pathv3},{pathv4}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdStrandMediaCharacteristicsWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/strand-media-characteristics={pathv3}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAccessPortWithdeviceUuidAccessPortUuid(uuid, deviceUuid, accessPortUuid, callback)returns tapi.equipment.AccessPortRef{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/access-port={pathv2},{pathv3}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrand(uuid, callback)returns tapi.equipment.AbstractStrand{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandAdjacentStrandWithphysicalSpanUuidAbstractStrandLocalId(uuid, physicalSpanUuid, abstractStrandLocalId, callback)returns tapi.equipment.AbstractStrandRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/adjacent-strand={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/connector-pin={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/connector-pin={pathv2},{pathv3},{pathv4},{pathv5}/pin-and-role={pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandSplicedStrandWithphysicalSpanUuidAbstractStrandLocalId(uuid, physicalSpanUuid, abstractStrandLocalId, callback)returns tapi.equipment.AbstractStrandRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/spliced-strand={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandStrandMediaCharacteristicsWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/strand-media-characteristics={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAccessPort(uuid, callback)returns tapi.equipment.AccessPort{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:access-port/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAccessPortConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:access-port/connector-pin={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAccessPortConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:access-port/connector-pin={pathv2},{pathv3},{pathv4},{pathv5}/pin-and-role={pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAccessPortNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:access-port/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDevice(uuid, callback)returns tapi.equipment.Device1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceAccessPortWithaccessPortUuid(uuid, accessPortUuid, callback)returns tapi.equipment.AccessPort1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/access-port={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceAccessPortWithaccessPortUuidConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, accessPortUuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/access-port={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceAccessPortWithaccessPortUuidConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, accessPortUuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/access-port={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/pin-and-role={pathv7}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceAccessPortWithaccessPortUuidNameWithvalueName(uuid, accessPortUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/access-port={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuid(uuid, equipmentUuid, callback)returns tapi.equipment.Equipment1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidActualEquipment(uuid, equipmentUuid, callback)returns tapi.equipment.ActualEquipment1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/actual-equipment/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalId(uuid, equipmentUuid, localId, callback)returns tapi.equipment.ActualNonFieldReplaceableModule1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalIdCommonActualProperties(uuid, equipmentUuid, localId, callback)returns tapi.equipment.CommonActualProperties1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/common-actual-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalIdCommonEquipmentProperties(uuid, equipmentUuid, localId, callback)returns tapi.equipment.CommonEquipmentProperties2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidActualEquipmentActualNonFieldReplaceableModuleWithlocalIdNameWithvalueName(uuid, equipmentUuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/actual-equipment/actual-non-field-replaceable-module={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidActualEquipmentCommonActualProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonActualProperties1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/actual-equipment/common-actual-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidActualEquipmentCommonEquipmentProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonEquipmentProperties2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/actual-equipment/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuid(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.Holder1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/contained-holder={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidActualHolder(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.ActualHolder1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/contained-holder={pathv3}/actual-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidActualHolderCommonHolderProperties(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.CommonHolderProperties2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/contained-holder={pathv3}/actual-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidExpectedHolder(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.ExpectedHolder1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/contained-holder={pathv3}/expected-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidExpectedHolderCommonHolderProperties(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.CommonHolderProperties3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/contained-holder={pathv3}/expected-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidNameWithvalueName(uuid, equipmentUuid, containedHolderUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/contained-holder={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidContainedHolderWithcontainedHolderUuidOccupyingFru(uuid, equipmentUuid, containedHolderUuid, callback)returns tapi.equipment.EquipmentRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/contained-holder={pathv3}/occupying-fru/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidExpectedEquipment(uuid, equipmentUuid, callback)returns tapi.equipment.ExpectedEquipment1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/expected-equipment/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidExpectedEquipmentCommonEquipmentProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonEquipmentProperties3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/expected-equipment/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidExpectedEquipmentExpectedHolder(uuid, equipmentUuid, callback)returns tapi.equipment.ExpectedHolder1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/expected-equipment/expected-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidExpectedEquipmentExpectedHolderCommonHolderProperties(uuid, equipmentUuid, callback)returns tapi.equipment.CommonHolderProperties1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/expected-equipment/expected-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalId(uuid, equipmentUuid, localId, callback)returns tapi.equipment.ExpectedNonFieldReplaceableModule1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/expected-equipment/expected-non-field-replaceable-module={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalIdCommonEquipmentProperties(uuid, equipmentUuid, localId, callback)returns tapi.equipment.CommonEquipmentProperties3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/expected-equipment/expected-non-field-replaceable-module={pathv3}/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalIdNameWithvalueName(uuid, equipmentUuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/expected-equipment/expected-non-field-replaceable-module={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidNameWithvalueName(uuid, equipmentUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipment(uuid, callback)returns tapi.equipment.Equipment{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentActualEquipment(uuid, callback)returns tapi.equipment.ActualEquipment{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/actual-equipment/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentActualEquipmentActualNonFieldReplaceableModuleWithlocalId(uuid, localId, callback)returns tapi.equipment.ActualNonFieldReplaceableModule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/actual-equipment/actual-non-field-replaceable-module={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentActualEquipmentActualNonFieldReplaceableModuleWithlocalIdCommonActualProperties(uuid, localId, callback)returns tapi.equipment.CommonActualProperties{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/actual-equipment/actual-non-field-replaceable-module={pathv2}/common-actual-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentActualEquipmentActualNonFieldReplaceableModuleWithlocalIdCommonEquipmentProperties(uuid, localId, callback)returns tapi.equipment.CommonEquipmentProperties{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/actual-equipment/actual-non-field-replaceable-module={pathv2}/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentActualEquipmentActualNonFieldReplaceableModuleWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/actual-equipment/actual-non-field-replaceable-module={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentActualEquipmentCommonActualProperties(uuid, callback)returns tapi.equipment.CommonActualProperties{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/actual-equipment/common-actual-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentActualEquipmentCommonEquipmentProperties(uuid, callback)returns tapi.equipment.CommonEquipmentProperties{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/actual-equipment/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentContainedHolderWithcontainedHolderUuid(uuid, containedHolderUuid, callback)returns tapi.equipment.Holder{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/contained-holder={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentContainedHolderWithcontainedHolderUuidActualHolder(uuid, containedHolderUuid, callback)returns tapi.equipment.ActualHolder{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/contained-holder={pathv2}/actual-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentContainedHolderWithcontainedHolderUuidActualHolderCommonHolderProperties(uuid, containedHolderUuid, callback)returns tapi.equipment.CommonHolderProperties{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/contained-holder={pathv2}/actual-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentContainedHolderWithcontainedHolderUuidExpectedHolder(uuid, containedHolderUuid, callback)returns tapi.equipment.ExpectedHolder{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/contained-holder={pathv2}/expected-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentContainedHolderWithcontainedHolderUuidExpectedHolderCommonHolderProperties(uuid, containedHolderUuid, callback)returns tapi.equipment.CommonHolderProperties1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/contained-holder={pathv2}/expected-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentContainedHolderWithcontainedHolderUuidNameWithvalueName(uuid, containedHolderUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/contained-holder={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentContainedHolderWithcontainedHolderUuidOccupyingFru(uuid, containedHolderUuid, callback)returns tapi.equipment.EquipmentRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/contained-holder={pathv2}/occupying-fru/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentExpectedEquipment(uuid, callback)returns tapi.equipment.ExpectedEquipment{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/expected-equipment/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentExpectedEquipmentCommonEquipmentProperties(uuid, callback)returns tapi.equipment.CommonEquipmentProperties1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/expected-equipment/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentExpectedEquipmentExpectedHolder(uuid, callback)returns tapi.equipment.ExpectedHolder{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/expected-equipment/expected-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentExpectedEquipmentExpectedHolderCommonHolderProperties(uuid, callback)returns tapi.equipment.CommonHolderProperties{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/expected-equipment/expected-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalId(uuid, localId, callback)returns tapi.equipment.ExpectedNonFieldReplaceableModule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/expected-equipment/expected-non-field-replaceable-module={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalIdCommonEquipmentProperties(uuid, localId, callback)returns tapi.equipment.CommonEquipmentProperties1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/expected-equipment/expected-non-field-replaceable-module={pathv2}/common-equipment-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentExpectedEquipmentExpectedNonFieldReplaceableModuleWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/expected-equipment/expected-non-field-replaceable-module={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHolder(uuid, callback)returns tapi.equipment.Holder{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHolderActualHolder(uuid, callback)returns tapi.equipment.ActualHolder{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:holder/actual-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHolderActualHolderCommonHolderProperties(uuid, callback)returns tapi.equipment.CommonHolderProperties1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:holder/actual-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHolderExpectedHolder(uuid, callback)returns tapi.equipment.ExpectedHolder1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:holder/expected-holder/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHolderExpectedHolderCommonHolderProperties(uuid, callback)returns tapi.equipment.CommonHolderProperties2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:holder/expected-holder/common-holder-properties/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHolderNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue7{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:holder/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidHolderOccupyingFru(uuid, callback)returns tapi.equipment.EquipmentRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:holder/occupying-fru/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpan(uuid, callback)returns tapi.equipment.PhysicalSpan1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalId(uuid, localId, callback)returns tapi.equipment.AbstractStrand1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdAdjacentStrandWithphysicalSpanUuidAbstractStrandLocalId(uuid, localId, physicalSpanUuid, abstractStrandLocalId, callback)returns tapi.equipment.AbstractStrandRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/adjacent-strand={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, localId, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdConnectorPinWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, localId, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/connector-pin={pathv3},{pathv4},{pathv5},{pathv6}/pin-and-role={pathv7}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdSplicedStrandWithphysicalSpanUuidAbstractStrandLocalId(uuid, localId, physicalSpanUuid, abstractStrandLocalId, callback)returns tapi.equipment.AbstractStrandRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/spliced-strand={pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdStrandMediaCharacteristicsWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/strand-media-characteristics={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAccessPortWithdeviceUuidAccessPortUuid(uuid, deviceUuid, accessPortUuid, callback)returns tapi.equipment.AccessPortRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/access-port={pathv2},{pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/name={pathv2}/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidSupportingPhysicalSpan(uuid, linkUuid, callback)returns tapi.equipment.SupportingPhysicalSpan{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/tapi-equipment:supporting-physical-span/?{query}Yes
getContextTopologyContextTopologyWithuuidLinkWithlinkUuidSupportingPhysicalSpanPhysicalSpan(uuid, linkUuid, callback)returns tapi.equipment.PhysicalSpanRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/link={pathv2}/tapi-equipment:supporting-physical-span/physical-span/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportingAccessPort(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.equipment.SupportingAccessPort{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-equipment:supporting-access-port/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportingAccessPortAccessPort(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.equipment.AccessPortRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-equipment:supporting-access-port/access-port/?{query}Yes
postGetDeviceList(callback)OperationsTapiEquipmentGetDeviceList_POST{base_path}/{version}/operations/tapi-equipment:get-device-list/?{query}Yes
postGetDevice(tapiEquipmentGetdeviceInputBodyParam, callback)operates on tapi.equipment.GetDevice{base_path}/{version}/operations/tapi-equipment:get-device/?{query}Yes
postGetPhysicalSpanList(callback)OperationsTapiEquipmentGetPhysicalSpanList_POST{base_path}/{version}/operations/tapi-equipment:get-physical-span-list/?{query}Yes
postGetPhysicalSpan(tapiEquipmentGetphysicalspanInputBodyParam, callback)operates on tapi.equipment.GetPhysicalSpan{base_path}/{version}/operations/tapi-equipment:get-physical-span/?{query}Yes
getContextServiceInterfacePointWithuuidEthServiceIntefacePointSpec(uuid, callback)returns tapi.eth.EthServiceIntefacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-eth:eth-service-inteface-point-spec/?{query}Yes
postContextServiceInterfacePointWithuuidEthServiceIntefacePointSpec(uuid, tapiEthEthServiceIntefacePointSpecBodyParam, callback)creates tapi.eth.EthServiceIntefacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-eth:eth-service-inteface-point-spec/?{query}Yes
putContextServiceInterfacePointWithuuidEthServiceIntefacePointSpec(uuid, tapiEthEthServiceIntefacePointSpecBodyParam, callback)creates or updates tapi.eth.EthServiceIntefacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-eth:eth-service-inteface-point-spec/?{query}Yes
deleteContextServiceInterfacePointWithuuidEthServiceIntefacePointSpec(uuid, callback)removes tapi.eth.EthServiceIntefacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-eth:eth-service-inteface-point-spec/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpec(uuid, localId, callback)returns tapi.eth.EthConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpec(uuid, localId, tapiEthEthConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.eth.EthConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpec(uuid, localId, tapiEthEthConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.eth.EthConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpec(uuid, localId, callback)removes tapi.eth.EthConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPac(uuid, localId, callback)returns tapi.eth.EthCtpCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPac(uuid, localId, tapiEthEthCtpCommonPacBodyParam, callback)creates tapi.eth.EthCtpCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPac(uuid, localId, tapiEthEthCtpCommonPacBodyParam, callback)creates or updates tapi.eth.EthCtpCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPac(uuid, localId, callback)removes tapi.eth.EthCtpCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacFilterConfig(uuid, localId, callback)returns tapi.eth.ControlFrameFilter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/filter-config/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacFilterConfig(uuid, localId, tapiEthControlFrameFilterBodyParam, callback)creates tapi.eth.ControlFrameFilter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/filter-config/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacFilterConfig(uuid, localId, tapiEthControlFrameFilterBodyParam, callback)creates or updates tapi.eth.ControlFrameFilter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/filter-config/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacFilterConfig(uuid, localId, callback)removes tapi.eth.ControlFrameFilter{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/filter-config/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPac(uuid, localId, callback)returns tapi.eth.TrafficConditioningPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPac(uuid, localId, tapiEthTrafficConditioningPacBodyParam, callback)creates tapi.eth.TrafficConditioningPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPac(uuid, localId, tapiEthTrafficConditioningPacBodyParam, callback)creates or updates tapi.eth.TrafficConditioningPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPac(uuid, localId, callback)removes tapi.eth.TrafficConditioningPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacCondConfigList(uuid, localId, tapiEthTrafficConditioningConfigurationBodyParam, callback)creates tapi.eth.TrafficConditioningConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/cond-config-list/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacCondConfigListWithqueueId(uuid, localId, queueId, callback)returns tapi.eth.TrafficConditioningConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/cond-config-list={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacCondConfigListWithqueueId(uuid, localId, queueId, tapiEthTrafficConditioningConfigurationBodyParam, callback)creates or updates tapi.eth.TrafficConditioningConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/cond-config-list={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacCondConfigListWithqueueId(uuid, localId, queueId, callback)removes tapi.eth.TrafficConditioningConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/cond-config-list={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacPrioConfigList(uuid, localId, tapiEthPriorityConfigurationBodyParam, callback)creates tapi.eth.PriorityConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/prio-config-list/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacPrioConfigListWithqueueId(uuid, localId, queueId, callback)returns tapi.eth.PriorityConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/prio-config-list={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacPrioConfigListWithqueueId(uuid, localId, queueId, tapiEthPriorityConfigurationBodyParam, callback)creates or updates tapi.eth.PriorityConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/prio-config-list={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficConditioningPacPrioConfigListWithqueueId(uuid, localId, queueId, callback)removes tapi.eth.PriorityConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-conditioning-pac/prio-config-list={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPac(uuid, localId, callback)returns tapi.eth.TrafficShapingPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPac(uuid, localId, tapiEthTrafficShapingPacBodyParam, callback)creates tapi.eth.TrafficShapingPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPac(uuid, localId, tapiEthTrafficShapingPacBodyParam, callback)creates or updates tapi.eth.TrafficShapingPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPac(uuid, localId, callback)removes tapi.eth.TrafficShapingPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacPrioConfigList(uuid, localId, tapiEthPriorityConfigurationBodyParam, callback)creates tapi.eth.PriorityConfiguration1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/prio-config-list/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacPrioConfigListWithqueueId(uuid, localId, queueId, callback)returns tapi.eth.PriorityConfiguration1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/prio-config-list={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacPrioConfigListWithqueueId(uuid, localId, queueId, tapiEthPriorityConfigurationBodyParam, callback)creates or updates tapi.eth.PriorityConfiguration1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/prio-config-list={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacPrioConfigListWithqueueId(uuid, localId, queueId, callback)removes tapi.eth.PriorityConfiguration1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/prio-config-list={pathv3}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacQueueConfigList(uuid, localId, tapiEthQueueConfigurationBodyParam, callback)creates tapi.eth.QueueConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/queue-config-list/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacQueueConfigListWithqueueId(uuid, localId, queueId, callback)returns tapi.eth.QueueConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/queue-config-list={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacQueueConfigListWithqueueId(uuid, localId, queueId, tapiEthQueueConfigurationBodyParam, callback)creates or updates tapi.eth.QueueConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/queue-config-list={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthCtpCommonPacTrafficShapingPacQueueConfigListWithqueueId(uuid, localId, queueId, callback)removes tapi.eth.QueueConfiguration{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-ctp-common-pac/traffic-shaping-pac/queue-config-list={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPac(uuid, localId, callback)returns tapi.eth.EthTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPac(uuid, localId, tapiEthEthTerminationCommonPacBodyParam, callback)creates tapi.eth.EthTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPac(uuid, localId, tapiEthEthTerminationCommonPacBodyParam, callback)creates or updates tapi.eth.EthTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPac(uuid, localId, callback)removes tapi.eth.EthTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPacPriorityRegenerate(uuid, localId, callback)returns tapi.eth.PriorityMapping{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/priority-regenerate/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPacPriorityRegenerate(uuid, localId, tapiEthPriorityMappingBodyParam, callback)creates tapi.eth.PriorityMapping{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/priority-regenerate/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPacPriorityRegenerate(uuid, localId, tapiEthPriorityMappingBodyParam, callback)creates or updates tapi.eth.PriorityMapping{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/priority-regenerate/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEthTerminationCommonPacPriorityRegenerate(uuid, localId, callback)removes tapi.eth.PriorityMapping{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/eth-termination-common-pac/priority-regenerate/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEtyTerminationCommonPac(uuid, localId, callback)returns tapi.eth.EtyTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/ety-termination-common-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEtyTerminationCommonPac(uuid, localId, tapiEthEtyTerminationCommonPacBodyParam, callback)creates tapi.eth.EtyTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/ety-termination-common-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEtyTerminationCommonPac(uuid, localId, tapiEthEtyTerminationCommonPacBodyParam, callback)creates or updates tapi.eth.EtyTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/ety-termination-common-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdEthConnectivityServiceEndPointSpecEtyTerminationCommonPac(uuid, localId, callback)removes tapi.eth.EtyTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-eth:eth-connectivity-service-end-point-spec/ety-termination-common-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEthConnectivityService(uuid, callback)returns tapi.eth.EthConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/tapi-eth:eth-connectivity-service/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEthConnectivityService(uuid, tapiEthEthConnectivityServiceBodyParam, callback)creates tapi.eth.EthConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/tapi-eth:eth-connectivity-service/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEthConnectivityService(uuid, tapiEthEthConnectivityServiceBodyParam, callback)creates or updates tapi.eth.EthConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/tapi-eth:eth-connectivity-service/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEthConnectivityService(uuid, callback)removes tapi.eth.EthConnectivityService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/tapi-eth:eth-connectivity-service/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdEthMepSpec(uuid, localId, callback)returns tapi.eth.EthMepSpec{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-eth:eth-mep-spec/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdEthMepSpecEthMepCommon(uuid, localId, callback)returns tapi.eth.EthMepCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-eth:eth-mep-spec/eth-mep-common/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdEthMepSpecEthMepSink(uuid, localId, callback)returns tapi.eth.EthMepSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-eth:eth-mep-spec/eth-mep-sink/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdEthMepSpecEthMepSinkBandwidthReport(uuid, localId, callback)returns tapi.eth.BandwidthReport{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-eth:eth-mep-spec/eth-mep-sink/bandwidth-report/?{query}Yes
getContextOamContextMegWithuuidMepWithlocalIdEthMepSpecEthMepSource(uuid, localId, callback)returns tapi.eth.EthMepSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mep={pathv2}/tapi-eth:eth-mep-spec/eth-mep-source/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdEthMipSpec(uuid, localId, callback)returns tapi.eth.EthMipSpec{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-eth:eth-mip-spec/?{query}Yes
getContextOamContextMegWithuuidMipWithlocalIdEthMipSpecEthMipCommon(uuid, localId, callback)returns tapi.eth.EthMipCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/mip={pathv2}/tapi-eth:eth-mip-spec/eth-mip-common/?{query}Yes
getContextOamContextMegWithuuidEthMegSpec(uuid, callback)returns tapi.eth.EthMegSpec{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-eth:eth-meg-spec/?{query}Yes
getContextOamContextMegWithuuidEthMegSpecEthCfmMaintenanceAssociation(uuid, callback)returns tapi.eth.EthCfmMaintenanceAssociation{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-eth:eth-meg-spec/eth-cfm-maintenance-association/?{query}Yes
getContextOamContextMegWithuuidEthMegSpecEthCfmMaintenanceAssociationMaintenanceAssociationName(uuid, callback)returns tapi.eth.MaintenanceAssociationName{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-eth:eth-meg-spec/eth-cfm-maintenance-association/maintenance-association-name/?{query}Yes
getContextOamContextMegWithuuidEthMegSpecEthCfmMaintenanceDomain(uuid, callback)returns tapi.eth.EthCfmMaintenanceDomain{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-eth:eth-meg-spec/eth-cfm-maintenance-domain/?{query}Yes
getContextOamContextMegWithuuidEthMegSpecEthMegCommon(uuid, callback)returns tapi.eth.EthMegCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-eth:eth-meg-spec/eth-meg-common/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1DmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthOnDemand1DmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1DmPerformanceDataSamplesNearEnd1DmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.SamplesDmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-dm-performance-data/samples-near-end-1-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1DmPerformanceDataStatisticalNearEnd1DmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-dm-performance-data/statistical-near-end-1-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1DmSourcePerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthOnDemand1DmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-dm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1LmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthOnDemand1LmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1LmPerformanceDataStatisticalNearEnd1LmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalLmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-lm-performance-data/statistical-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1LmPerformanceDataTotalCountersNearEnd1LmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-lm-performance-data/total-counters-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemand1LmSourcePerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthOnDemand1LmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-1-lm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandDmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthOnDemandDmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandDmPerformanceDataSamplesFarEndDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.SamplesDmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-dm-performance-data/samples-far-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandDmPerformanceDataSamplesNearEndDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.SamplesDmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-dm-performance-data/samples-near-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandDmPerformanceDataStatisticalBiDirDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-dm-performance-data/statistical-bi-dir-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandDmPerformanceDataStatisticalFarEndDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-dm-performance-data/statistical-far-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandDmPerformanceDataStatisticalNearEndDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-dm-performance-data/statistical-near-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandLmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthOnDemandLmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandLmPerformanceDataStatisticalFarEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalLmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-lm-performance-data/statistical-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandLmPerformanceDataStatisticalNearEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalLmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-lm-performance-data/statistical-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandLmPerformanceDataTotalCountersFarEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-lm-performance-data/total-counters-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthOnDemandLmPerformanceDataTotalCountersNearEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-on-demand-lm-performance-data/total-counters-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActive1DmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthProActive1DmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-1-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActive1DmPerformanceDataStatisticalNearEnd1DmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-1-dm-performance-data/statistical-near-end-1-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActive1DmSourcePerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthProActive1DmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-1-dm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActive1LmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthProActive1LmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-1-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActive1LmPerformanceDataStatisticalNearEnd1LmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalLmPerformanceParameters3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-1-lm-performance-data/statistical-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActive1LmPerformanceDataTotalCountersNearEnd1LmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-1-lm-performance-data/total-counters-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActive1LmSourcePerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthProActive1LmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-1-lm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveDmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthProActiveDmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveDmPerformanceDataStatisticalBiDirDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-dm-performance-data/statistical-bi-dir-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveDmPerformanceDataStatisticalFarEndDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-dm-performance-data/statistical-far-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveDmPerformanceDataStatisticalNearEndDmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalDmPerformanceParameters7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-dm-performance-data/statistical-near-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveLmPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.eth.EthProActiveLmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveLmPerformanceDataStatisticalFarEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalLmPerformanceParameters4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-lm-performance-data/statistical-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveLmPerformanceDataStatisticalNearEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.StatisticalLmPerformanceParameters5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-lm-performance-data/statistical-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveLmPerformanceDataTotalCountersFarEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-lm-performance-data/total-counters-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdEthProActiveLmPerformanceDataTotalCountersNearEndLmParameters(uuid, localId, historyDataLocalId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-eth:eth-pro-active-lm-performance-data/total-counters-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthLinkTraceResultData(uuid, localId, callback)returns tapi.eth.EthLinkTraceResultData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-link-trace-result-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthLinkTraceResultDataEthCfmLinkTraceResultDataWithseqNumber(uuid, localId, seqNumber, callback)returns tapi.eth.EthCfmLinkTraceResultData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-link-trace-result-data/eth-cfm-link-trace-result-data={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthLinkTraceResultDataEthCfmLinkTraceResultDataWithseqNumberChassisId(uuid, localId, seqNumber, callback)returns tapi.eth.LldpChassisIdSubtype{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-link-trace-result-data/eth-cfm-link-trace-result-data={pathv3}/chassis-id/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthLinkTraceResultDataEthCfmLinkTraceResultDataWithseqNumberEgressPortId(uuid, localId, seqNumber, callback)returns tapi.eth.LldpPortIdSubtype{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-link-trace-result-data/eth-cfm-link-trace-result-data={pathv3}/egress-port-id/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthLinkTraceResultDataEthCfmLinkTraceResultDataWithseqNumberIngressPortId(uuid, localId, seqNumber, callback)returns tapi.eth.LldpPortIdSubtype1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-link-trace-result-data/eth-cfm-link-trace-result-data={pathv3}/ingress-port-id/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthLinkTraceResultDataResultListWithsourceAddress(uuid, localId, sourceAddress, callback)returns tapi.eth.LinkTraceResult{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-link-trace-result-data/result-list={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthLoopbackResultData(uuid, localId, callback)returns tapi.eth.EthLoopbackResultData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-loopback-result-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1DmPerformanceData(uuid, localId, callback)returns tapi.eth.EthOnDemand1DmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1DmPerformanceDataSamplesNearEnd1DmParameters(uuid, localId, callback)returns tapi.eth.SamplesDmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-dm-performance-data/samples-near-end-1-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1DmPerformanceDataStatisticalNearEnd1DmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-dm-performance-data/statistical-near-end-1-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1DmSourcePerformanceData(uuid, localId, callback)returns tapi.eth.EthOnDemand1DmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-dm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1LmPerformanceData(uuid, localId, callback)returns tapi.eth.EthOnDemand1LmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1LmPerformanceDataStatisticalNearEnd1LmParameters(uuid, localId, callback)returns tapi.eth.StatisticalLmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-lm-performance-data/statistical-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1LmPerformanceDataTotalCountersNearEnd1LmParameters(uuid, localId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-lm-performance-data/total-counters-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemand1LmSourcePerformanceData(uuid, localId, callback)returns tapi.eth.EthOnDemand1LmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-1-lm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandDmPerformanceData(uuid, localId, callback)returns tapi.eth.EthOnDemandDmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandDmPerformanceDataSamplesFarEndDmParameters(uuid, localId, callback)returns tapi.eth.SamplesDmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-dm-performance-data/samples-far-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandDmPerformanceDataSamplesNearEndDmParameters(uuid, localId, callback)returns tapi.eth.SamplesDmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-dm-performance-data/samples-near-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandDmPerformanceDataStatisticalBiDirDmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-dm-performance-data/statistical-bi-dir-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandDmPerformanceDataStatisticalFarEndDmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-dm-performance-data/statistical-far-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandDmPerformanceDataStatisticalNearEndDmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-dm-performance-data/statistical-near-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandLmPerformanceData(uuid, localId, callback)returns tapi.eth.EthOnDemandLmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandLmPerformanceDataStatisticalFarEndLmParameters(uuid, localId, callback)returns tapi.eth.StatisticalLmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-lm-performance-data/statistical-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandLmPerformanceDataStatisticalNearEndLmParameters(uuid, localId, callback)returns tapi.eth.StatisticalLmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-lm-performance-data/statistical-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandLmPerformanceDataTotalCountersFarEndLmParameters(uuid, localId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-lm-performance-data/total-counters-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthOnDemandLmPerformanceDataTotalCountersNearEndLmParameters(uuid, localId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-on-demand-lm-performance-data/total-counters-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActive1DmPerformanceData(uuid, localId, callback)returns tapi.eth.EthProActive1DmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-1-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActive1DmPerformanceDataStatisticalNearEnd1DmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-1-dm-performance-data/statistical-near-end-1-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActive1DmSourcePerformanceData(uuid, localId, callback)returns tapi.eth.EthProActive1DmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-1-dm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActive1LmPerformanceData(uuid, localId, callback)returns tapi.eth.EthProActive1LmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-1-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActive1LmPerformanceDataStatisticalNearEnd1LmParameters(uuid, localId, callback)returns tapi.eth.StatisticalLmPerformanceParameters3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-1-lm-performance-data/statistical-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActive1LmPerformanceDataTotalCountersNearEnd1LmParameters(uuid, localId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-1-lm-performance-data/total-counters-near-end-1-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActive1LmSourcePerformanceData(uuid, localId, callback)returns tapi.eth.EthProActive1LmSourcePerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-1-lm-source-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveDmPerformanceData(uuid, localId, callback)returns tapi.eth.EthProActiveDmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-dm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveDmPerformanceDataStatisticalBiDirDmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-dm-performance-data/statistical-bi-dir-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveDmPerformanceDataStatisticalFarEndDmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters6{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-dm-performance-data/statistical-far-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveDmPerformanceDataStatisticalNearEndDmParameters(uuid, localId, callback)returns tapi.eth.StatisticalDmPerformanceParameters7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-dm-performance-data/statistical-near-end-dm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveLmPerformanceData(uuid, localId, callback)returns tapi.eth.EthProActiveLmPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-lm-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveLmPerformanceDataStatisticalFarEndLmParameters(uuid, localId, callback)returns tapi.eth.StatisticalLmPerformanceParameters4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-lm-performance-data/statistical-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveLmPerformanceDataStatisticalNearEndLmParameters(uuid, localId, callback)returns tapi.eth.StatisticalLmPerformanceParameters5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-lm-performance-data/statistical-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveLmPerformanceDataTotalCountersFarEndLmParameters(uuid, localId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters4{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-lm-performance-data/total-counters-far-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthProActiveLmPerformanceDataTotalCountersNearEndLmParameters(uuid, localId, callback)returns tapi.eth.TotalCountersLmPerformanceParameters5{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-pro-active-lm-performance-data/total-counters-near-end-lm-parameters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdEthTestResultData(uuid, localId, callback)returns tapi.eth.EthTestResultData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-eth:eth-test-result-data/?{query}Yes
getContextOamContextOamJobWithuuidEthLinkTraceJob(uuid, callback)returns tapi.eth.EthLinkTraceJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/?{query}Yes
postContextOamContextOamJobWithuuidEthLinkTraceJob(uuid, tapiEthEthLinkTraceJobBodyParam, callback)creates tapi.eth.EthLinkTraceJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/?{query}Yes
putContextOamContextOamJobWithuuidEthLinkTraceJob(uuid, tapiEthEthLinkTraceJobBodyParam, callback)creates or updates tapi.eth.EthLinkTraceJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/?{query}Yes
deleteContextOamContextOamJobWithuuidEthLinkTraceJob(uuid, callback)removes tapi.eth.EthLinkTraceJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/?{query}Yes
getContextOamContextOamJobWithuuidEthLinkTraceJobEthCfmLinkTracePac(uuid, callback)returns tapi.eth.EthCfmLinkTracePac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/eth-cfm-link-trace-pac/?{query}Yes
postContextOamContextOamJobWithuuidEthLinkTraceJobEthCfmLinkTracePac(uuid, tapiEthEthCfmLinkTracePacBodyParam, callback)creates tapi.eth.EthCfmLinkTracePac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/eth-cfm-link-trace-pac/?{query}Yes
putContextOamContextOamJobWithuuidEthLinkTraceJobEthCfmLinkTracePac(uuid, tapiEthEthCfmLinkTracePacBodyParam, callback)creates or updates tapi.eth.EthCfmLinkTracePac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/eth-cfm-link-trace-pac/?{query}Yes
deleteContextOamContextOamJobWithuuidEthLinkTraceJobEthCfmLinkTracePac(uuid, callback)removes tapi.eth.EthCfmLinkTracePac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-link-trace-job/eth-cfm-link-trace-pac/?{query}Yes
getContextOamContextOamJobWithuuidEthLoopbackJob(uuid, callback)returns tapi.eth.EthLoopbackJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/?{query}Yes
postContextOamContextOamJobWithuuidEthLoopbackJob(uuid, tapiEthEthLoopbackJobBodyParam, callback)creates tapi.eth.EthLoopbackJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/?{query}Yes
putContextOamContextOamJobWithuuidEthLoopbackJob(uuid, tapiEthEthLoopbackJobBodyParam, callback)creates or updates tapi.eth.EthLoopbackJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/?{query}Yes
deleteContextOamContextOamJobWithuuidEthLoopbackJob(uuid, callback)removes tapi.eth.EthLoopbackJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/?{query}Yes
getContextOamContextOamJobWithuuidEthLoopbackJobEthOamTestLoopbackCommonPac(uuid, callback)returns tapi.eth.EthOamTestLoopbackCommonPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/eth-oam-test-loopback-common-pac/?{query}Yes
postContextOamContextOamJobWithuuidEthLoopbackJobEthOamTestLoopbackCommonPac(uuid, tapiEthEthOamTestLoopbackCommonPacBodyParam, callback)creates tapi.eth.EthOamTestLoopbackCommonPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/eth-oam-test-loopback-common-pac/?{query}Yes
putContextOamContextOamJobWithuuidEthLoopbackJobEthOamTestLoopbackCommonPac(uuid, tapiEthEthOamTestLoopbackCommonPacBodyParam, callback)creates or updates tapi.eth.EthOamTestLoopbackCommonPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/eth-oam-test-loopback-common-pac/?{query}Yes
deleteContextOamContextOamJobWithuuidEthLoopbackJobEthOamTestLoopbackCommonPac(uuid, callback)removes tapi.eth.EthOamTestLoopbackCommonPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-loopback-job/eth-oam-test-loopback-common-pac/?{query}Yes
getContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJob(uuid, callback)returns tapi.eth.EthOnDemandDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/?{query}Yes
postContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJob(uuid, tapiEthEthOnDemandDualEndedMeasurementJobBodyParam, callback)creates tapi.eth.EthOnDemandDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/?{query}Yes
putContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJob(uuid, tapiEthEthOnDemandDualEndedMeasurementJobBodyParam, callback)creates or updates tapi.eth.EthOnDemandDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/?{query}Yes
deleteContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJob(uuid, callback)removes tapi.eth.EthOnDemandDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/?{query}Yes
getContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSink(uuid, callback)returns tapi.eth.EthOnDemandMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-sink/?{query}Yes
postContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSink(uuid, tapiEthEthOnDemandMeasurementJobControlSinkBodyParam, callback)creates tapi.eth.EthOnDemandMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-sink/?{query}Yes
putContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSink(uuid, tapiEthEthOnDemandMeasurementJobControlSinkBodyParam, callback)creates or updates tapi.eth.EthOnDemandMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-sink/?{query}Yes
deleteContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSink(uuid, callback)removes tapi.eth.EthOnDemandMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-sink/?{query}Yes
getContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, callback)returns tapi.eth.EthOnDemandMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
postContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, tapiEthEthOnDemandMeasurementJobControlSourceBodyParam, callback)creates tapi.eth.EthOnDemandMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
putContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, tapiEthEthOnDemandMeasurementJobControlSourceBodyParam, callback)creates or updates tapi.eth.EthOnDemandMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
deleteContextOamContextOamJobWithuuidEthOnDemandDualEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, callback)removes tapi.eth.EthOnDemandMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-dual-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
getContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJob(uuid, callback)returns tapi.eth.EthOnDemandSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/?{query}Yes
postContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJob(uuid, tapiEthEthOnDemandSingleEndedMeasurementJobBodyParam, callback)creates tapi.eth.EthOnDemandSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/?{query}Yes
putContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJob(uuid, tapiEthEthOnDemandSingleEndedMeasurementJobBodyParam, callback)creates or updates tapi.eth.EthOnDemandSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/?{query}Yes
deleteContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJob(uuid, callback)removes tapi.eth.EthOnDemandSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/?{query}Yes
getContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, callback)returns tapi.eth.EthOnDemandMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
postContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, tapiEthEthOnDemandMeasurementJobControlSourceBodyParam, callback)creates tapi.eth.EthOnDemandMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
putContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, tapiEthEthOnDemandMeasurementJobControlSourceBodyParam, callback)creates or updates tapi.eth.EthOnDemandMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
deleteContextOamContextOamJobWithuuidEthOnDemandSingleEndedMeasurementJobEthOnDemandMeasurementJobControlSource(uuid, callback)removes tapi.eth.EthOnDemandMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-on-demand-single-ended-measurement-job/eth-on-demand-measurement-job-control-source/?{query}Yes
getContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJob(uuid, callback)returns tapi.eth.EthProActiveDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/?{query}Yes
postContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJob(uuid, tapiEthEthProActiveDualEndedMeasurementJobBodyParam, callback)creates tapi.eth.EthProActiveDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/?{query}Yes
putContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJob(uuid, tapiEthEthProActiveDualEndedMeasurementJobBodyParam, callback)creates or updates tapi.eth.EthProActiveDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/?{query}Yes
deleteContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJob(uuid, callback)removes tapi.eth.EthProActiveDualEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/?{query}Yes
getContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSink(uuid, callback)returns tapi.eth.EthProActiveMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-sink/?{query}Yes
postContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSink(uuid, tapiEthEthProActiveMeasurementJobControlSinkBodyParam, callback)creates tapi.eth.EthProActiveMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-sink/?{query}Yes
putContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSink(uuid, tapiEthEthProActiveMeasurementJobControlSinkBodyParam, callback)creates or updates tapi.eth.EthProActiveMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-sink/?{query}Yes
deleteContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSink(uuid, callback)removes tapi.eth.EthProActiveMeasurementJobControlSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-sink/?{query}Yes
getContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, callback)returns tapi.eth.EthProActiveMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
postContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, tapiEthEthProActiveMeasurementJobControlSourceBodyParam, callback)creates tapi.eth.EthProActiveMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
putContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, tapiEthEthProActiveMeasurementJobControlSourceBodyParam, callback)creates or updates tapi.eth.EthProActiveMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
deleteContextOamContextOamJobWithuuidEthProActiveDualEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, callback)removes tapi.eth.EthProActiveMeasurementJobControlSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-dual-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
getContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJob(uuid, callback)returns tapi.eth.EthProActiveSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/?{query}Yes
postContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJob(uuid, tapiEthEthProActiveSingleEndedMeasurementJobBodyParam, callback)creates tapi.eth.EthProActiveSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/?{query}Yes
putContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJob(uuid, tapiEthEthProActiveSingleEndedMeasurementJobBodyParam, callback)creates or updates tapi.eth.EthProActiveSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/?{query}Yes
deleteContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJob(uuid, callback)removes tapi.eth.EthProActiveSingleEndedMeasurementJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/?{query}Yes
getContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, callback)returns tapi.eth.EthProActiveMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
postContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, tapiEthEthProActiveMeasurementJobControlSourceBodyParam, callback)creates tapi.eth.EthProActiveMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
putContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, tapiEthEthProActiveMeasurementJobControlSourceBodyParam, callback)creates or updates tapi.eth.EthProActiveMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
deleteContextOamContextOamJobWithuuidEthProActiveSingleEndedMeasurementJobEthProActiveMeasurementJobControlSource(uuid, callback)removes tapi.eth.EthProActiveMeasurementJobControlSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-pro-active-single-ended-measurement-job/eth-pro-active-measurement-job-control-source/?{query}Yes
getContextOamContextOamJobWithuuidEthTestJob(uuid, callback)returns tapi.eth.EthTestJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/?{query}Yes
postContextOamContextOamJobWithuuidEthTestJob(uuid, tapiEthEthTestJobBodyParam, callback)creates tapi.eth.EthTestJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/?{query}Yes
putContextOamContextOamJobWithuuidEthTestJob(uuid, tapiEthEthTestJobBodyParam, callback)creates or updates tapi.eth.EthTestJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/?{query}Yes
deleteContextOamContextOamJobWithuuidEthTestJob(uuid, callback)removes tapi.eth.EthTestJob{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/?{query}Yes
getContextOamContextOamJobWithuuidEthTestJobEthOamTestLoopbackCommonPac(uuid, callback)returns tapi.eth.EthOamTestLoopbackCommonPac1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-oam-test-loopback-common-pac/?{query}Yes
postContextOamContextOamJobWithuuidEthTestJobEthOamTestLoopbackCommonPac(uuid, tapiEthEthOamTestLoopbackCommonPacBodyParam, callback)creates tapi.eth.EthOamTestLoopbackCommonPac1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-oam-test-loopback-common-pac/?{query}Yes
putContextOamContextOamJobWithuuidEthTestJobEthOamTestLoopbackCommonPac(uuid, tapiEthEthOamTestLoopbackCommonPacBodyParam, callback)creates or updates tapi.eth.EthOamTestLoopbackCommonPac1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-oam-test-loopback-common-pac/?{query}Yes
deleteContextOamContextOamJobWithuuidEthTestJobEthOamTestLoopbackCommonPac(uuid, callback)removes tapi.eth.EthOamTestLoopbackCommonPac1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-oam-test-loopback-common-pac/?{query}Yes
getContextOamContextOamJobWithuuidEthTestJobEthTestJobSinkPoint(uuid, callback)returns tapi.eth.EthTestJobSinkPoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-test-job-sink-point/?{query}Yes
postContextOamContextOamJobWithuuidEthTestJobEthTestJobSinkPoint(uuid, tapiEthEthTestJobSinkPointBodyParam, callback)creates tapi.eth.EthTestJobSinkPoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-test-job-sink-point/?{query}Yes
putContextOamContextOamJobWithuuidEthTestJobEthTestJobSinkPoint(uuid, tapiEthEthTestJobSinkPointBodyParam, callback)creates or updates tapi.eth.EthTestJobSinkPoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-test-job-sink-point/?{query}Yes
deleteContextOamContextOamJobWithuuidEthTestJobEthTestJobSinkPoint(uuid, callback)removes tapi.eth.EthTestJobSinkPoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/tapi-eth:eth-test-job/eth-test-job-sink-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePoint(uuid, localId, callback)returns tapi.eth.EthOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePoint(uuid, localId, tapiEthEthOamMepServicePointBodyParam, callback)creates tapi.eth.EthOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePoint(uuid, localId, tapiEthEthOamMepServicePointBodyParam, callback)creates or updates tapi.eth.EthOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePoint(uuid, localId, callback)removes tapi.eth.EthOamMepServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepCommon(uuid, localId, callback)returns tapi.eth.EthMepCommon1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-common/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepCommon(uuid, localId, tapiEthEthMepCommonBodyParam, callback)creates tapi.eth.EthMepCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-common/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepCommon(uuid, localId, tapiEthEthMepCommonBodyParam, callback)creates or updates tapi.eth.EthMepCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepCommon(uuid, localId, callback)removes tapi.eth.EthMepCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-common/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSink(uuid, localId, callback)returns tapi.eth.EthMepSink1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-sink/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSink(uuid, localId, tapiEthEthMepSinkBodyParam, callback)creates tapi.eth.EthMepSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-sink/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSink(uuid, localId, tapiEthEthMepSinkBodyParam, callback)creates or updates tapi.eth.EthMepSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-sink/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSink(uuid, localId, callback)removes tapi.eth.EthMepSink{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-sink/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSinkBandwidthReport(uuid, localId, callback)returns tapi.eth.BandwidthReport1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-sink/bandwidth-report/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSource(uuid, localId, callback)returns tapi.eth.EthMepSource1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-source/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSource(uuid, localId, tapiEthEthMepSourceBodyParam, callback)creates tapi.eth.EthMepSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-source/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSource(uuid, localId, tapiEthEthMepSourceBodyParam, callback)creates or updates tapi.eth.EthMepSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-source/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMepServicePointEthMepSource(uuid, localId, callback)removes tapi.eth.EthMepSource{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mep-service-point/eth-mep-source/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePoint(uuid, localId, callback)returns tapi.eth.EthOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePoint(uuid, localId, tapiEthEthOamMipServicePointBodyParam, callback)creates tapi.eth.EthOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePoint(uuid, localId, tapiEthEthOamMipServicePointBodyParam, callback)creates or updates tapi.eth.EthOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePoint(uuid, localId, callback)removes tapi.eth.EthOamMipServicePoint{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/?{query}Yes
getContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePointEthMipCommon(uuid, localId, callback)returns tapi.eth.EthMipCommon1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/eth-mip-common/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePointEthMipCommon(uuid, localId, tapiEthEthMipCommonBodyParam, callback)creates tapi.eth.EthMipCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/eth-mip-common/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePointEthMipCommon(uuid, localId, tapiEthEthMipCommonBodyParam, callback)creates or updates tapi.eth.EthMipCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/eth-mip-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdEthOamMipServicePointEthMipCommon(uuid, localId, callback)removes tapi.eth.EthMipCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-eth:eth-oam-mip-service-point/eth-mip-common/?{query}Yes
getContextOamContextOamServiceWithuuidEthOamService(uuid, callback)returns tapi.eth.EthOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/?{query}Yes
postContextOamContextOamServiceWithuuidEthOamService(uuid, tapiEthEthOamServiceBodyParam, callback)creates tapi.eth.EthOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/?{query}Yes
putContextOamContextOamServiceWithuuidEthOamService(uuid, tapiEthEthOamServiceBodyParam, callback)creates or updates tapi.eth.EthOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/?{query}Yes
deleteContextOamContextOamServiceWithuuidEthOamService(uuid, callback)removes tapi.eth.EthOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/?{query}Yes
getContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociation(uuid, callback)returns tapi.eth.EthCfmMaintenanceAssociation1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/?{query}Yes
postContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociation(uuid, tapiEthEthCfmMaintenanceAssociationBodyParam, callback)creates tapi.eth.EthCfmMaintenanceAssociation{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/?{query}Yes
putContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociation(uuid, tapiEthEthCfmMaintenanceAssociationBodyParam, callback)creates or updates tapi.eth.EthCfmMaintenanceAssociation{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/?{query}Yes
deleteContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociation(uuid, callback)removes tapi.eth.EthCfmMaintenanceAssociation{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/?{query}Yes
getContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociationMaintenanceAssociationName(uuid, callback)returns tapi.eth.MaintenanceAssociationName1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/maintenance-association-name/?{query}Yes
postContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociationMaintenanceAssociationName(uuid, tapiEthMaintenanceAssociationNameBodyParam, callback)creates tapi.eth.MaintenanceAssociationName{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/maintenance-association-name/?{query}Yes
putContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociationMaintenanceAssociationName(uuid, tapiEthMaintenanceAssociationNameBodyParam, callback)creates or updates tapi.eth.MaintenanceAssociationName{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/maintenance-association-name/?{query}Yes
deleteContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceAssociationMaintenanceAssociationName(uuid, callback)removes tapi.eth.MaintenanceAssociationName{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-association/maintenance-association-name/?{query}Yes
getContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceDomain(uuid, callback)returns tapi.eth.EthCfmMaintenanceDomain1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-domain/?{query}Yes
postContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceDomain(uuid, tapiEthEthCfmMaintenanceDomainBodyParam, callback)creates tapi.eth.EthCfmMaintenanceDomain{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-domain/?{query}Yes
putContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceDomain(uuid, tapiEthEthCfmMaintenanceDomainBodyParam, callback)creates or updates tapi.eth.EthCfmMaintenanceDomain{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-domain/?{query}Yes
deleteContextOamContextOamServiceWithuuidEthOamServiceEthCfmMaintenanceDomain(uuid, callback)removes tapi.eth.EthCfmMaintenanceDomain{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-cfm-maintenance-domain/?{query}Yes
getContextOamContextOamServiceWithuuidEthOamServiceEthMegCommon(uuid, callback)returns tapi.eth.EthMegCommon1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-meg-common/?{query}Yes
postContextOamContextOamServiceWithuuidEthOamServiceEthMegCommon(uuid, tapiEthEthMegCommonBodyParam, callback)creates tapi.eth.EthMegCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-meg-common/?{query}Yes
putContextOamContextOamServiceWithuuidEthOamServiceEthMegCommon(uuid, tapiEthEthMegCommonBodyParam, callback)creates or updates tapi.eth.EthMegCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-meg-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidEthOamServiceEthMegCommon(uuid, callback)removes tapi.eth.EthMegCommon{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-eth:eth-oam-service/eth-meg-common/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.EthConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtp(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.EthCtpPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.EthCtpCommonPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPacFilterConfig(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.ControlFrameFilter{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/filter-config/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPacTrafficConditioningPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.TrafficConditioningPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/traffic-conditioning-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPacTrafficConditioningPacCondConfigListWithqueueId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, queueId, callback)returns tapi.eth.TrafficConditioningConfiguration{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/traffic-conditioning-pac/cond-config-list={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPacTrafficConditioningPacPrioConfigListWithqueueId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, queueId, callback)returns tapi.eth.PriorityConfiguration{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/traffic-conditioning-pac/prio-config-list={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPacTrafficShapingPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.TrafficShapingPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/traffic-shaping-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPacTrafficShapingPacPrioConfigListWithqueueId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, queueId, callback)returns tapi.eth.PriorityConfiguration1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/traffic-shaping-pac/prio-config-list={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthCtpEthCtpCommonPacTrafficShapingPacQueueConfigListWithqueueId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, queueId, callback)returns tapi.eth.QueueConfiguration{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-ctp/eth-ctp-common-pac/traffic-shaping-pac/queue-config-list={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthTerm(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.EthTerminationPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-term/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthTermEthTerminationCommonPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.EthTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-term/eth-termination-common-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEthTermEthTerminationCommonPacPriorityRegenerate(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.PriorityMapping{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/eth-term/eth-termination-common-pac/priority-regenerate/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEtyTerm(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.EtyTerminationPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/ety-term/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidEthConnectionEndPointSpecEtyTermEtyTerminationCommonPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.eth.EtyTerminationCommonPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-eth:eth-connection-end-point-spec/ety-term/ety-termination-common-pac/?{query}Yes
getContextProfileWithuuidFiberProfile(uuid, callback)returns tapi.photonic.media.FiberProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fiber-profile/?{query}Yes
postContextProfileWithuuidFiberProfile(uuid, tapiPhotonicMediaFiberProfileBodyParam, callback)creates tapi.photonic.media.FiberProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fiber-profile/?{query}Yes
putContextProfileWithuuidFiberProfile(uuid, tapiPhotonicMediaFiberProfileBodyParam, callback)creates or updates tapi.photonic.media.FiberProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fiber-profile/?{query}Yes
deleteContextProfileWithuuidFiberProfile(uuid, callback)removes tapi.photonic.media.FiberProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fiber-profile/?{query}Yes
getContextProfileWithuuidFixedGainAmplificationProfile(uuid, callback)returns tapi.photonic.media.FixedGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fixed-gain-amplification-profile/?{query}Yes
postContextProfileWithuuidFixedGainAmplificationProfile(uuid, tapiPhotonicMediaFixedGainAmplificationProfileBodyParam, callback)creates tapi.photonic.media.FixedGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fixed-gain-amplification-profile/?{query}Yes
putContextProfileWithuuidFixedGainAmplificationProfile(uuid, tapiPhotonicMediaFixedGainAmplificationProfileBodyParam, callback)creates or updates tapi.photonic.media.FixedGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fixed-gain-amplification-profile/?{query}Yes
deleteContextProfileWithuuidFixedGainAmplificationProfile(uuid, callback)removes tapi.photonic.media.FixedGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fixed-gain-amplification-profile/?{query}Yes
getContextProfileWithuuidFixedGainAmplificationProfileFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fixed-gain-amplification-profile/frequency-range/?{query}Yes
getContextProfileWithuuidFixedGainAmplificationProfileGainRange(uuid, callback)returns tapi.photonic.media.GainRange{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:fixed-gain-amplification-profile/gain-range/?{query}Yes
getContextProfileWithuuidRoadmAddPathProfile(uuid, callback)returns tapi.photonic.media.RoadmAddPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-add-path-profile/?{query}Yes
postContextProfileWithuuidRoadmAddPathProfile(uuid, tapiPhotonicMediaRoadmAddPathProfileBodyParam, callback)creates tapi.photonic.media.RoadmAddPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-add-path-profile/?{query}Yes
putContextProfileWithuuidRoadmAddPathProfile(uuid, tapiPhotonicMediaRoadmAddPathProfileBodyParam, callback)creates or updates tapi.photonic.media.RoadmAddPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-add-path-profile/?{query}Yes
deleteContextProfileWithuuidRoadmAddPathProfile(uuid, callback)removes tapi.photonic.media.RoadmAddPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-add-path-profile/?{query}Yes
getContextProfileWithuuidRoadmAddPathProfileFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-add-path-profile/frequency-range/?{query}Yes
getContextProfileWithuuidRoadmDropPathProfile(uuid, callback)returns tapi.photonic.media.RoadmDropPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-drop-path-profile/?{query}Yes
postContextProfileWithuuidRoadmDropPathProfile(uuid, tapiPhotonicMediaRoadmDropPathProfileBodyParam, callback)creates tapi.photonic.media.RoadmDropPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-drop-path-profile/?{query}Yes
putContextProfileWithuuidRoadmDropPathProfile(uuid, tapiPhotonicMediaRoadmDropPathProfileBodyParam, callback)creates or updates tapi.photonic.media.RoadmDropPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-drop-path-profile/?{query}Yes
deleteContextProfileWithuuidRoadmDropPathProfile(uuid, callback)removes tapi.photonic.media.RoadmDropPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-drop-path-profile/?{query}Yes
getContextProfileWithuuidRoadmDropPathProfileFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange2{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-drop-path-profile/frequency-range/?{query}Yes
getContextProfileWithuuidRoadmExpressPathProfile(uuid, callback)returns tapi.photonic.media.RoadmExpressPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-express-path-profile/?{query}Yes
postContextProfileWithuuidRoadmExpressPathProfile(uuid, tapiPhotonicMediaRoadmExpressPathProfileBodyParam, callback)creates tapi.photonic.media.RoadmExpressPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-express-path-profile/?{query}Yes
putContextProfileWithuuidRoadmExpressPathProfile(uuid, tapiPhotonicMediaRoadmExpressPathProfileBodyParam, callback)creates or updates tapi.photonic.media.RoadmExpressPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-express-path-profile/?{query}Yes
deleteContextProfileWithuuidRoadmExpressPathProfile(uuid, callback)removes tapi.photonic.media.RoadmExpressPathProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-express-path-profile/?{query}Yes
getContextProfileWithuuidRoadmExpressPathProfileFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange3{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:roadm-express-path-profile/frequency-range/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfile(uuid, callback)returns tapi.photonic.media.TransceiverExplicitProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/?{query}Yes
postContextProfileWithuuidTransceiverExplicitProfile(uuid, tapiPhotonicMediaTransceiverExplicitProfileBodyParam, callback)creates tapi.photonic.media.TransceiverExplicitProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/?{query}Yes
putContextProfileWithuuidTransceiverExplicitProfile(uuid, tapiPhotonicMediaTransceiverExplicitProfileBodyParam, callback)creates or updates tapi.photonic.media.TransceiverExplicitProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/?{query}Yes
deleteContextProfileWithuuidTransceiverExplicitProfile(uuid, callback)removes tapi.photonic.media.TransceiverExplicitProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfileCommonExplicit(uuid, callback)returns tapi.photonic.media.CommonExplicit{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/common-explicit/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfileCommonExplicitChromaticAndPolarizationDispersionPenalty(uuid, callback)returns tapi.photonic.media.CdPmdPenalty{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/common-explicit/chromatic-and-polarization-dispersion-penalty/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfileCommonExplicitMaxPolarizationDependentLossPenalty(uuid, callback)returns tapi.photonic.media.PdlPenalty{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/common-explicit/max-polarization-dependent-loss-penalty/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfileCommonOrgExplicit(uuid, callback)returns tapi.photonic.media.CommonOrganizExplicit{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/common-org-explicit/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfileCommonOrgExplicitFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange4{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/common-org-explicit/frequency-range/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfileSupportedOrganizationalModes(uuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/supported-organizational-modes/?{query}Yes
getContextProfileWithuuidTransceiverExplicitProfileSupportedStandardApplicationCodes(uuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-explicit-profile/supported-standard-application-codes/?{query}Yes
getContextProfileWithuuidTransceiverOrganizationalProfile(uuid, callback)returns tapi.photonic.media.TransceiverOrganizationalProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-organizational-profile/?{query}Yes
postContextProfileWithuuidTransceiverOrganizationalProfile(uuid, tapiPhotonicMediaTransceiverOrganizationalProfileBodyParam, callback)creates tapi.photonic.media.TransceiverOrganizationalProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-organizational-profile/?{query}Yes
putContextProfileWithuuidTransceiverOrganizationalProfile(uuid, tapiPhotonicMediaTransceiverOrganizationalProfileBodyParam, callback)creates or updates tapi.photonic.media.TransceiverOrganizationalProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-organizational-profile/?{query}Yes
deleteContextProfileWithuuidTransceiverOrganizationalProfile(uuid, callback)removes tapi.photonic.media.TransceiverOrganizationalProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-organizational-profile/?{query}Yes
getContextProfileWithuuidTransceiverOrganizationalProfileCommonOrgExplicit(uuid, callback)returns tapi.photonic.media.CommonOrganizExplicit1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-organizational-profile/common-org-explicit/?{query}Yes
getContextProfileWithuuidTransceiverOrganizationalProfileCommonOrgExplicitFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange5{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-organizational-profile/common-org-explicit/frequency-range/?{query}Yes
getContextProfileWithuuidTransceiverStandardProfile(uuid, callback)returns tapi.photonic.media.TransceiverStandardProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-standard-profile/?{query}Yes
postContextProfileWithuuidTransceiverStandardProfile(uuid, tapiPhotonicMediaTransceiverStandardProfileBodyParam, callback)creates tapi.photonic.media.TransceiverStandardProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-standard-profile/?{query}Yes
putContextProfileWithuuidTransceiverStandardProfile(uuid, tapiPhotonicMediaTransceiverStandardProfileBodyParam, callback)creates or updates tapi.photonic.media.TransceiverStandardProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-standard-profile/?{query}Yes
deleteContextProfileWithuuidTransceiverStandardProfile(uuid, callback)removes tapi.photonic.media.TransceiverStandardProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-standard-profile/?{query}Yes
getContextProfileWithuuidVariableGainAmplificationProfile(uuid, callback)returns tapi.photonic.media.VariableGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:variable-gain-amplification-profile/?{query}Yes
postContextProfileWithuuidVariableGainAmplificationProfile(uuid, tapiPhotonicMediaVariableGainAmplificationProfileBodyParam, callback)creates tapi.photonic.media.VariableGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:variable-gain-amplification-profile/?{query}Yes
putContextProfileWithuuidVariableGainAmplificationProfile(uuid, tapiPhotonicMediaVariableGainAmplificationProfileBodyParam, callback)creates or updates tapi.photonic.media.VariableGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:variable-gain-amplification-profile/?{query}Yes
deleteContextProfileWithuuidVariableGainAmplificationProfile(uuid, callback)removes tapi.photonic.media.VariableGainAmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:variable-gain-amplification-profile/?{query}Yes
getContextProfileWithuuidVariableGainAmplificationProfileFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange6{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:variable-gain-amplification-profile/frequency-range/?{query}Yes
getContextProfileWithuuidVariableGainAmplificationProfileGainRange(uuid, callback)returns tapi.photonic.media.GainRange1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:variable-gain-amplification-profile/gain-range/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpec(uuid, callback)returns tapi.photonic.media.MediaChannelServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/?{query}Yes
postContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpec(uuid, tapiPhotonicMediaMediaChannelServiceInterfacePointSpecBodyParam, callback)creates tapi.photonic.media.MediaChannelServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/?{query}Yes
putContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpec(uuid, tapiPhotonicMediaMediaChannelServiceInterfacePointSpecBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/?{query}Yes
deleteContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpec(uuid, callback)removes tapi.photonic.media.MediaChannelServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecMediaChannelPoolCapabilityPac(uuid, callback)returns tapi.photonic.media.MediaChannelPoolCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/media-channel-pool-capability-pac/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecMediaChannelPoolCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequency(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/media-channel-pool-capability-pac/available-spectrum={pathv2},{pathv3}/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecMediaChannelPoolCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/media-channel-pool-capability-pac/available-spectrum={pathv2},{pathv3}/frequency-constraint/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecMediaChannelPoolCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequency(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/media-channel-pool-capability-pac/occupied-spectrum={pathv2},{pathv3}/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecMediaChannelPoolCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/media-channel-pool-capability-pac/occupied-spectrum={pathv2},{pathv3}/frequency-constraint/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecMediaChannelPoolCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequency(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/media-channel-pool-capability-pac/supportable-spectrum={pathv2},{pathv3}/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecMediaChannelPoolCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/media-channel-pool-capability-pac/supportable-spectrum={pathv2},{pathv3}/frequency-constraint/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPac(uuid, callback)returns tapi.photonic.media.PowerManagementCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/?{query}Yes
postContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPac(uuid, tapiPhotonicMediaPowerManagementCapabilityPacBodyParam, callback)creates tapi.photonic.media.PowerManagementCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/?{query}Yes
putContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPac(uuid, tapiPhotonicMediaPowerManagementCapabilityPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/?{query}Yes
deleteContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPac(uuid, callback)removes tapi.photonic.media.PowerManagementCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPacSupportableMaximumOutputPower(uuid, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/supportable-maximum-output-power/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPacSupportableMinimumOutputPower(uuid, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/supportable-minimum-output-power/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPacTolerableMaximumInputPower(uuid, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/tolerable-maximum-input-power/?{query}Yes
getContextServiceInterfacePointWithuuidMediaChannelServiceInterfacePointSpecPowerManagementCapabilityPacTolerableMinimumInputPower(uuid, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:media-channel-service-interface-point-spec/power-management-capability-pac/tolerable-minimum-input-power/?{query}Yes
getContextServiceInterfacePointWithuuidOtsiServiceInterfacePointSpec(uuid, callback)returns tapi.photonic.media.OtsiServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:otsi-service-interface-point-spec/?{query}Yes
postContextServiceInterfacePointWithuuidOtsiServiceInterfacePointSpec(uuid, tapiPhotonicMediaOtsiServiceInterfacePointSpecBodyParam, callback)creates tapi.photonic.media.OtsiServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:otsi-service-interface-point-spec/?{query}Yes
putContextServiceInterfacePointWithuuidOtsiServiceInterfacePointSpec(uuid, tapiPhotonicMediaOtsiServiceInterfacePointSpecBodyParam, callback)creates or updates tapi.photonic.media.OtsiServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:otsi-service-interface-point-spec/?{query}Yes
deleteContextServiceInterfacePointWithuuidOtsiServiceInterfacePointSpec(uuid, callback)removes tapi.photonic.media.OtsiServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:otsi-service-interface-point-spec/?{query}Yes
getContextServiceInterfacePointWithuuidOtsiServiceInterfacePointSpecOtsiCapabilityPac(uuid, callback)returns tapi.photonic.media.OtsiCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:otsi-service-interface-point-spec/otsi-capability-pac/?{query}Yes
getContextServiceInterfacePointWithuuidOtsiServiceInterfacePointSpecOtsiCapabilityPacTotalPowerThresholdPac(uuid, callback)returns tapi.photonic.media.TotalPowerThresholdPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:otsi-service-interface-point-spec/otsi-capability-pac/total-power-threshold-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaMcgConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaMcgConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPac(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaMediaChannelBwConfigPacBodyParam, callback)creates tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaMediaChannelBwConfigPacBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/capacity/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/capacity/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/capacity/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/capacity/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPac(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaMediaChannelConfigPacBodyParam, callback)creates tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaMediaChannelConfigPacBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates or updates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.photonic.media.OtsiMcgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiMcgConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.photonic.media.OtsiMcgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiMcgConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.photonic.media.OtsiMcgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPac(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiMcBwConfigPacBodyParam, callback)creates tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaOtsiMcBwConfigPacBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/capacity/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/capacity/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/capacity/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCapacity(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/capacity/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBwConfigPacWithotsiMcBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bw-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPac(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiMcConfigPacBodyParam, callback)creates tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaOtsiMcConfigPacBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates or updates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcConfigPacWithotsiMcConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-config-pac={pathv4}/spectrum/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPac(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiMcFreqConfigPacBodyParam, callback)creates tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaOtsiMcFreqConfigPacBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequency(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequency(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaCentralFrequencyBodyParam, callback)creates tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequency(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaCentralFrequencyBodyParam, callback)creates or updates tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequency(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequencyFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequencyFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequencyFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdCentralFrequencyFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/central-frequency/frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFreqConfigPacWithotsiMcFreqConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFreqConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-freq-config-pac={pathv4}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.photonic.media.OtsiaCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiaCsepTtpPacBodyParam, callback)creates tapi.photonic.media.OtsiaCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiaCsepTtpPacBodyParam, callback)creates or updates tapi.photonic.media.OtsiaCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.photonic.media.OtsiaCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfig(uuid, localId, layerProtocolConstraintLocalId, tapiPhotonicMediaOtsiConfigBodyParam, callback)creates tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, tapiPhotonicMediaOtsiConfigBodyParam, callback)creates or updates tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, tapiPhotonicMediaOtsiPowerConfigBodyParam, callback)creates tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, tapiPhotonicMediaOtsiPowerConfigBodyParam, callback)creates or updates tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfigTransmitPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/transmit-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfigTransmitPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/transmit-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfigTransmitPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/transmit-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaCsepTtpPacOtsiConfigWithotsiConfigLocalIdOtsiPowerConfigTransmitPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-csep-ttp-pac/otsi-config={pathv4}/otsi-power-config/transmit-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, callback)returns tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaMcgConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaMcgConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpec(uuid, localId, callback)removes tapi.photonic.media.McgConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPac(uuid, localId, tapiPhotonicMediaMediaChannelBwConfigPacBodyParam, callback)creates tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalId(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalId(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaMediaChannelBwConfigPacBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalId(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/capacity/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, mediaChannelBwConfigPacLocalId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/capacity/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, mediaChannelBwConfigPacLocalId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/capacity/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdCapacity(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/capacity/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdName(uuid, localId, mediaChannelBwConfigPacLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdNameWithvalueName(uuid, localId, mediaChannelBwConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/name={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdNameWithvalueName(uuid, localId, mediaChannelBwConfigPacLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/name={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdNameWithvalueName(uuid, localId, mediaChannelBwConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/name={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelBwConfigPacWithmediaChannelBwConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelBwConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-bw-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPac(uuid, localId, tapiPhotonicMediaMediaChannelConfigPacBodyParam, callback)creates tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalId(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalId(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaMediaChannelConfigPacBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalId(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdName(uuid, localId, mediaChannelConfigPacLocalId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdNameWithvalueName(uuid, localId, mediaChannelConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/name={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdNameWithvalueName(uuid, localId, mediaChannelConfigPacLocalId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/name={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdNameWithvalueName(uuid, localId, mediaChannelConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/name={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPac(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates or updates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrum(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMcgConnectivityServiceEndPointSpecMediaChannelConfigPacWithmediaChannelConfigPacLocalIdSpectrumFrequencyConstraint(uuid, localId, mediaChannelConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/media-channel-config-pac={pathv3}/spectrum/frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpec(uuid, localId, callback)returns tapi.photonic.media.MediaChannelConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaMediaChannelConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.photonic.media.MediaChannelConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaMediaChannelConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpec(uuid, localId, callback)removes tapi.photonic.media.MediaChannelConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPac(uuid, localId, callback)returns tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPac(uuid, localId, tapiPhotonicMediaMediaChannelBwConfigPacBodyParam, callback)creates tapi.photonic.media.MediaChannelBwConfigPac1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPac(uuid, localId, tapiPhotonicMediaMediaChannelBwConfigPacBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPac(uuid, localId, callback)removes tapi.photonic.media.MediaChannelBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacCapacity(uuid, localId, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/capacity/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacCapacity(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/capacity/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacCapacity(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/capacity/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacCapacity(uuid, localId, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/capacity/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacEdgeFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacEdgeFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPac(uuid, localId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPac(uuid, localId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPac(uuid, localId, callback)returns tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPac(uuid, localId, tapiPhotonicMediaMediaChannelConfigPacBodyParam, callback)creates tapi.photonic.media.MediaChannelConfigPac1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPac(uuid, localId, tapiPhotonicMediaMediaChannelConfigPacBodyParam, callback)creates or updates tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPac(uuid, localId, callback)removes tapi.photonic.media.MediaChannelConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacEdgeFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacEdgeFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPac(uuid, localId, callback)returns tapi.photonic.media.PowerManagementConfigPac1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPac(uuid, localId, callback)removes tapi.photonic.media.PowerManagementConfigPac1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrum(uuid, localId, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrum(uuid, localId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrum(uuid, localId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates or updates tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrum(uuid, localId, callback)removes tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrumFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrumFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrumFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdMediaChannelConnectivityServiceEndPointSpecMediaChannelConfigPacSpectrumFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:media-channel-connectivity-service-end-point-spec/media-channel-config-pac/spectrum/frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpec(uuid, localId, callback)returns tapi.photonic.media.OtsiConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaOtsiConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.photonic.media.OtsiConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaOtsiConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.photonic.media.OtsiConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpec(uuid, localId, callback)removes tapi.photonic.media.OtsiConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfig(uuid, localId, callback)returns tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfig(uuid, localId, tapiPhotonicMediaOtsiConfigBodyParam, callback)creates tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfig(uuid, localId, tapiPhotonicMediaOtsiConfigBodyParam, callback)creates or updates tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfig(uuid, localId, callback)removes tapi.photonic.media.OtsiConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfig(uuid, localId, callback)returns tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfig(uuid, localId, tapiPhotonicMediaOtsiPowerConfigBodyParam, callback)creates tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfig(uuid, localId, tapiPhotonicMediaOtsiPowerConfigBodyParam, callback)creates or updates tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfig(uuid, localId, callback)removes tapi.photonic.media.OtsiPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfigTransmitPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/transmit-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfigTransmitPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/transmit-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfigTransmitPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/transmit-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiConnectivityServiceEndPointSpecOtsiConfigOtsiPowerConfigTransmitPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-connectivity-service-end-point-spec/otsi-config/otsi-power-config/transmit-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpec(uuid, localId, callback)returns tapi.photonic.media.OtsiMcConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaOtsiMcConnectivityServiceEndPointSpecBodyParam, callback)creates tapi.photonic.media.OtsiMcConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpec(uuid, localId, tapiPhotonicMediaOtsiMcConnectivityServiceEndPointSpecBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpec(uuid, localId, callback)removes tapi.photonic.media.OtsiMcConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPac(uuid, localId, callback)returns tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPac(uuid, localId, tapiPhotonicMediaOtsiMcBwConfigPacBodyParam, callback)creates tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPac(uuid, localId, tapiPhotonicMediaOtsiMcBwConfigPacBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPac(uuid, localId, callback)removes tapi.photonic.media.OtsiMcBwConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCapacity(uuid, localId, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/capacity/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCapacity(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/capacity/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCapacity(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/capacity/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCapacity(uuid, localId, callback)removes tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/capacity/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCenterFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCenterFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCenterFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacCenterFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacEdgeFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacEdgeFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPac(uuid, localId, callback)returns tapi.photonic.media.PowerManagementConfigPac2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPac(uuid, localId, callback)removes tapi.photonic.media.PowerManagementConfigPac2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties11{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties11{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties11{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties11{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties12{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties12{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties12{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcBwConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties12{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-bw-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPac(uuid, localId, callback)returns tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPac(uuid, localId, tapiPhotonicMediaOtsiMcConfigPacBodyParam, callback)creates tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPac(uuid, localId, tapiPhotonicMediaOtsiMcConfigPacBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPac(uuid, localId, callback)removes tapi.photonic.media.OtsiMcConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacCenterFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacCenterFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacCenterFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacCenterFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacEdgeFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacEdgeFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint6{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPac(uuid, localId, callback)returns tapi.photonic.media.PowerManagementConfigPac3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPac(uuid, localId, callback)removes tapi.photonic.media.PowerManagementConfigPac3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties13{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties13{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties13{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties13{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties14{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties14{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties14{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties14{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties15{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties15{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties15{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties15{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties16{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties16{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties16{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties16{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrum(uuid, localId, callback)returns tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrum(uuid, localId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrum(uuid, localId, tapiPhotonicMediaSpectrumBandBodyParam, callback)creates or updates tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrum(uuid, localId, callback)removes tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrumFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrumFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrumFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcConfigPacSpectrumFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint7{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-config-pac/spectrum/frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPac(uuid, localId, callback)returns tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPac(uuid, localId, tapiPhotonicMediaOtsiMcFreqConfigPacBodyParam, callback)creates tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPac(uuid, localId, tapiPhotonicMediaOtsiMcFreqConfigPacBodyParam, callback)creates or updates tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPac(uuid, localId, callback)removes tapi.photonic.media.OtsiMcFreqConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCenterFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCenterFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCenterFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCenterFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint8{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequency(uuid, localId, callback)returns tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequency(uuid, localId, tapiPhotonicMediaCentralFrequencyBodyParam, callback)creates tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequency(uuid, localId, tapiPhotonicMediaCentralFrequencyBodyParam, callback)creates or updates tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequency(uuid, localId, callback)removes tapi.photonic.media.CentralFrequency{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequencyFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequencyFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequencyFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacCentralFrequencyFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint9{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/central-frequency/frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacEdgeFrequencyConstraint(uuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates tapi.photonic.media.FrequencyConstraint10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacEdgeFrequencyConstraint(uuid, localId, tapiPhotonicMediaFrequencyConstraintBodyParam, callback)creates or updates tapi.photonic.media.FrequencyConstraint10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacEdgeFrequencyConstraint(uuid, localId, callback)removes tapi.photonic.media.FrequencyConstraint10{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue5{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPac(uuid, localId, callback)returns tapi.photonic.media.PowerManagementConfigPac4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates tapi.photonic.media.PowerManagementConfigPac4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPac(uuid, localId, tapiPhotonicMediaPowerManagementConfigPacBodyParam, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPac(uuid, localId, callback)removes tapi.photonic.media.PowerManagementConfigPac4{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties17{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties17{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties17{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMaximumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties17{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-maximum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties18{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties18{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties18{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacExpectedMinimumInputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties18{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/expected-minimum-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties19{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties19{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties19{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMaximumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties19{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-maximum-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties20{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates tapi.photonic.media.PowerProperties20{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, tapiPhotonicMediaPowerPropertiesBodyParam, callback)creates or updates tapi.photonic.media.PowerProperties20{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdOtsiMcConnectivityServiceEndPointSpecOtsiMcFreqConfigPacPowerManagementConfigPacIntendedMinimumOutputPower(uuid, localId, callback)removes tapi.photonic.media.PowerProperties20{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-photonic-media:otsi-mc-connectivity-service-end-point-spec/otsi-mc-freq-config-pac/power-management-config-pac/intended-minimum-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.MediaChannelConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.McCepPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPacMediaChannelPowerPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.MediaChannelPowerPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/media-channel-power-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPacMediaChannelPowerPacContradirectionalMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/media-channel-power-pac/contradirectional-measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPacMediaChannelPowerPacMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/media-channel-power-pac/measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPacMediaChannelSpectrumPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.MediaChannelSpectrumPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/media-channel-spectrum-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPacMediaChannelSpectrumPacNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/media-channel-spectrum-pac/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPacMediaChannelSpectrumPacOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/media-channel-spectrum-pac/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecMcCepPacMediaChannelSpectrumPacOccupiedSpectrumFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/mc-cep-pac/media-channel-spectrum-pac/occupied-spectrum/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OmsCepPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacAmplifierParamsWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.Amplification{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/amplifier-params={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacAmplifierParamsWithlocalIdAmplificationWithtopologyUuidAmplificationNodeUuidNodeEdgePointUuidAmplificationConnectionEndPointUuidAmplificationLocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, topologyUuid, amplificationNodeUuid, nodeEdgePointUuid, amplificationConnectionEndPointUuid, amplificationLocalId, callback)returns tapi.photonic.media.AmplificationRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/amplifier-params={pathv5}/amplification={pathv6},{pathv7},{pathv8},{pathv9},{pathv10}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacAmplifierParamsWithlocalIdFrequencyRange(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/amplifier-params={pathv5}/frequency-range/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacAmplifierParamsWithlocalIdGeolocation(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.Geolocation{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/amplifier-params={pathv5}/geolocation/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacAmplifierParamsWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/amplifier-params={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacAmplifierParamsWithlocalIdProfile(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/amplifier-params={pathv5}/profile/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacMediaChannelPowerPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.MediaChannelPowerPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/media-channel-power-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacMediaChannelPowerPacContradirectionalMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/media-channel-power-pac/contradirectional-measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacMediaChannelPowerPacMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/media-channel-power-pac/measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacMediaChannelSpectrumPacWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.MediaChannelSpectrumPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/media-channel-spectrum-pac={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacMediaChannelSpectrumPacWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/media-channel-spectrum-pac={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacMediaChannelSpectrumPacWithlocalIdOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/media-channel-spectrum-pac={pathv5}/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOmsCepPacMediaChannelSpectrumPacWithlocalIdOccupiedSpectrumFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/oms-cep-pac/media-channel-spectrum-pac={pathv5}/occupied-spectrum/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsCepPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPacMediaChannelPowerPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.MediaChannelPowerPac2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/media-channel-power-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPacMediaChannelPowerPacContradirectionalMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/media-channel-power-pac/contradirectional-measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPacMediaChannelPowerPacMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties5{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/media-channel-power-pac/measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPacMediaChannelSpectrumPacWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.MediaChannelSpectrumPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/media-channel-spectrum-pac={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPacMediaChannelSpectrumPacWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/media-channel-spectrum-pac={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPacMediaChannelSpectrumPacWithlocalIdOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/media-channel-spectrum-pac={pathv5}/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsCepPacMediaChannelSpectrumPacWithlocalIdOccupiedSpectrumFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/ots-cep-pac/media-channel-spectrum-pac={pathv5}/occupied-spectrum/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsiMcPropertiesPacWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.OtsiMcPropertiesPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/otsi-mc-properties-pac={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsiMcPropertiesPacWithlocalIdMeasuredPowerEgress(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/otsi-mc-properties-pac={pathv5}/measured-power-egress/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsiMcPropertiesPacWithlocalIdMeasuredPowerIngress(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/otsi-mc-properties-pac={pathv5}/measured-power-ingress/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsiMcPropertiesPacWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/otsi-mc-properties-pac={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsiMcPropertiesPacWithlocalIdOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.SpectrumBand2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/otsi-mc-properties-pac={pathv5}/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecOtsiMcPropertiesPacWithlocalIdOccupiedSpectrumFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/otsi-mc-properties-pac={pathv5}/occupied-spectrum/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecPhysicalCepPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PhysicalCepPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/physical-cep-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecPhysicalCepPacMediaChannelPowerPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.MediaChannelPowerPac3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/physical-cep-pac/media-channel-power-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecPhysicalCepPacMediaChannelPowerPacContradirectionalMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties6{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/physical-cep-pac/media-channel-power-pac/contradirectional-measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMediaChannelConnectionEndPointSpecPhysicalCepPacMediaChannelPowerPacMeasuredPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties7{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:media-channel-connection-end-point-spec/physical-cep-pac/media-channel-power-pac/measured-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsiConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiConnectionEndPointSpecOtsiTerminationPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsiTerminationPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-connection-end-point-spec/otsi-termination-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiConnectionEndPointSpecOtsiTerminationPacLaserProperties(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.LaserProperties{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-connection-end-point-spec/otsi-termination-pac/laser-properties/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiConnectionEndPointSpecOtsiTerminationPacReceivedPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties8{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-connection-end-point-spec/otsi-termination-pac/received-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiConnectionEndPointSpecOtsiTerminationPacSelectedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-connection-end-point-spec/otsi-termination-pac/selected-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiConnectionEndPointSpecOtsiTerminationPacSelectedSpectrumFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-connection-end-point-spec/otsi-termination-pac/selected-spectrum/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiConnectionEndPointSpecOtsiTerminationPacTransmitedPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties9{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-connection-end-point-spec/otsi-termination-pac/transmited-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsiMcConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiMcPropertiesPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsiMcPropertiesPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-mc-properties-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiMcPropertiesPacMeasuredPowerEgress(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties10{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-mc-properties-pac/measured-power-egress/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiMcPropertiesPacMeasuredPowerIngress(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties11{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-mc-properties-pac/measured-power-ingress/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiMcPropertiesPacNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-mc-properties-pac/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiMcPropertiesPacOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.SpectrumBand2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-mc-properties-pac/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiMcPropertiesPacOccupiedSpectrumFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-mc-properties-pac/occupied-spectrum/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.MediaChannelNodeEdgePointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecMediaChannelPoolCapabilityPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.MediaChannelPoolCapabilityPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/media-channel-pool-capability-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecMediaChannelPoolCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequency(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/media-channel-pool-capability-pac/available-spectrum={pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecMediaChannelPoolCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/media-channel-pool-capability-pac/available-spectrum={pathv4},{pathv5}/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecMediaChannelPoolCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequency(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/media-channel-pool-capability-pac/occupied-spectrum={pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecMediaChannelPoolCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/media-channel-pool-capability-pac/occupied-spectrum={pathv4},{pathv5}/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecMediaChannelPoolCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequency(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/media-channel-pool-capability-pac/supportable-spectrum={pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecMediaChannelPoolCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/media-channel-pool-capability-pac/supportable-spectrum={pathv4},{pathv5}/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecOmsGeneralOpticalParams(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.OmsGeneralOpticalParams{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/oms-general-optical-params/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecOmsGeneralOpticalParamsFrequencyRange(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/oms-general-optical-params/frequency-range/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecOmsGeneralOpticalParamsPowerParams(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PowerParams{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/oms-general-optical-params/power-params/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecOmsGeneralOpticalParamsPowerParamsChannelPower(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.ChannelPower{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/oms-general-optical-params/power-params/channel-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidMediaChannelNodeEdgePointSpecOmsGeneralOpticalParamsPowerParamsPowerSpectralDensity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PowerSpectralDensity{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:media-channel-node-edge-point-spec/oms-general-optical-params/power-params/power-spectral-density/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsNodeEdgePointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.OtsNodeEdgePointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:ots-node-edge-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsNodeEdgePointSpecOtsImpairments(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.OtsImpairments{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:ots-node-edge-point-spec/ots-impairments/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsNodeEdgePointSpecOtsImpairmentsImpairmentRoute(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.ImpairmentRouteEntry{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:ots-node-edge-point-spec/ots-impairments/impairment-route/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsNodeEdgePointSpecOtsImpairmentsImpairmentRouteOtsConcentratedLoss(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.OtsConcentratedLoss{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:ots-node-edge-point-spec/ots-impairments/impairment-route/ots-concentrated-loss/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsNodeEdgePointSpecOtsImpairmentsImpairmentRouteOtsFiberSpanImpairments(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.OtsFiberSpanImpairments{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:ots-node-edge-point-spec/ots-impairments/impairment-route/ots-fiber-span-impairments/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsiNodeEdgePointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.OtsiNodeEdgePointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:otsi-node-edge-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsiNodeEdgePointSpecOtsiCapabilityPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.OtsiCapabilityPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:otsi-node-edge-point-spec/otsi-capability-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidOtsiNodeEdgePointSpecOtsiCapabilityPacTotalPowerThresholdPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.TotalPowerThresholdPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:otsi-node-edge-point-spec/otsi-capability-pac/total-power-threshold-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraint(uuid, callback)returns tapi.virtual.network.VirtualNetworkConstraint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintCostCharacteristicWithcostName(uuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/cost-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintDiversityExclusionWithvirtualNwServiceUuid(uuid, virtualNwServiceUuid, callback)returns tapi.virtual.network.VirtualNwServiceRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/diversity-exclusion={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintLatencyCharacteristicWithtrafficPropertyName(uuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/latency-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintRequestedCapacity(uuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/requested-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintRequestedCapacityTotalSize(uuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/requested-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintSinkServiceEndPoint(uuid, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/sink-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkConstraintSrcServiceEndPoint(uuid, callback)returns tapi.common.ServiceInterfacePointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-constraint/src-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceEndPoint(uuid, callback)returns tapi.virtual.network.VirtualNetworkServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceEndPointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service-end-point/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceEndPointServiceInterfacePoint(uuid, callback)returns tapi.common.ServiceInterfacePointRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service-end-point/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkService(uuid, callback)returns tapi.virtual.network.VirtualNetworkService{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceEndPointWithlocalId(uuid, localId, callback)returns tapi.virtual.network.VirtualNetworkServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/end-point={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/end-point={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/end-point={pathv2}/service-interface-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceSchedule(uuid, callback)returns tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/schedule/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceState(uuid, callback)returns tapi.common.AdminStatePac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/state/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceTopology(uuid, callback)returns tapi.topology.TopologyRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/topology/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalId(uuid, localId, callback)returns tapi.virtual.network.VirtualNetworkConstraint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdCostCharacteristicWithcostName(uuid, localId, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdDiversityExclusionWithvirtualNwServiceUuid(uuid, localId, virtualNwServiceUuid, callback)returns tapi.virtual.network.VirtualNwServiceRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/diversity-exclusion={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdRequestedCapacity(uuid, localId, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/requested-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdRequestedCapacityTotalSize(uuid, localId, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/requested-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdSinkServiceEndPoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/sink-service-end-point/?{query}Yes
getContextNotificationContextEventNotificationWithuuidVirtualNetworkServiceVnwConstraintWithlocalIdSrcServiceEndPoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-virtual-network:virtual-network-service/vnw-constraint={pathv2}/src-service-end-point/?{query}Yes
getContextVirtualNetworkContext(callback)returns tapi.virtual.network.VirtualNetworkContext{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/?{query}Yes
postContextVirtualNetworkContext(tapiVirtualNetworkVirtualNetworkContextBodyParam, callback)creates tapi.virtual.network.VirtualNetworkContext{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/?{query}Yes
putContextVirtualNetworkContext(tapiVirtualNetworkVirtualNetworkContextBodyParam, callback)creates or updates tapi.virtual.network.VirtualNetworkContext{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/?{query}Yes
deleteContextVirtualNetworkContext(callback)removes tapi.virtual.network.VirtualNetworkContext{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/?{query}Yes
postContextVirtualNetworkContextVirtualNwService(tapiVirtualNetworkVirtualNetworkServiceBodyParam, callback)creates tapi.virtual.network.VirtualNetworkService{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuid(uuid, callback)returns tapi.virtual.network.VirtualNetworkService1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuid(uuid, tapiVirtualNetworkVirtualNetworkServiceBodyParam, callback)creates or updates tapi.virtual.network.VirtualNetworkService{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuid(uuid, callback)removes tapi.virtual.network.VirtualNetworkService{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidEndPoint(uuid, tapiVirtualNetworkVirtualNetworkServiceEndPointBodyParam, callback)creates tapi.virtual.network.VirtualNetworkServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalId(uuid, localId, callback)returns tapi.virtual.network.VirtualNetworkServiceEndPoint1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalId(uuid, localId, tapiVirtualNetworkVirtualNetworkServiceEndPointBodyParam, callback)creates or updates tapi.virtual.network.VirtualNetworkServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalId(uuid, localId, callback)removes tapi.virtual.network.VirtualNetworkServiceEndPoint{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/name/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/name={pathv3}/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidEndPointWithlocalIdServiceInterfacePoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef3{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/end-point={pathv2}/service-interface-point/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidName(uuid, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/name/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/name={pathv2}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidNameWithvalueName(uuid, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/name={pathv2}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/name={pathv2}/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidSchedule(uuid, callback)returns tapi.common.TimeRange1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/schedule/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidSchedule(uuid, tapiCommonTimeRangeBodyParam, callback)creates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/schedule/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidSchedule(uuid, tapiCommonTimeRangeBodyParam, callback)creates or updates tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/schedule/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidSchedule(uuid, callback)removes tapi.common.TimeRange{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/schedule/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidState(uuid, callback)returns tapi.common.AdminStatePac1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/state/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidState(uuid, tapiCommonAdminStatePacBodyParam, callback)creates tapi.common.AdminStatePac{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/state/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidState(uuid, tapiCommonAdminStatePacBodyParam, callback)creates or updates tapi.common.AdminStatePac{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/state/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidState(uuid, callback)removes tapi.common.AdminStatePac{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/state/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidTopology(uuid, callback)returns tapi.topology.TopologyRef1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/topology/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraint(uuid, tapiVirtualNetworkVirtualNetworkConstraintBodyParam, callback)creates tapi.virtual.network.VirtualNetworkConstraint{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalId(uuid, localId, callback)returns tapi.virtual.network.VirtualNetworkConstraint1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalId(uuid, localId, tapiVirtualNetworkVirtualNetworkConstraintBodyParam, callback)creates or updates tapi.virtual.network.VirtualNetworkConstraint{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalId(uuid, localId, callback)removes tapi.virtual.network.VirtualNetworkConstraint{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdCostCharacteristic(uuid, localId, tapiTopologyCostCharacteristicBodyParam, callback)creates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/cost-characteristic/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdCostCharacteristicWithcostName(uuid, localId, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/cost-characteristic={pathv3}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdCostCharacteristicWithcostName(uuid, localId, costName, tapiTopologyCostCharacteristicBodyParam, callback)creates or updates tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/cost-characteristic={pathv3}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdCostCharacteristicWithcostName(uuid, localId, costName, callback)removes tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdDiversityExclusionWithvirtualNwServiceUuid(uuid, localId, virtualNwServiceUuid, callback)returns tapi.virtual.network.VirtualNwServiceRef1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/diversity-exclusion={pathv3}/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdLatencyCharacteristic(uuid, localId, tapiTopologyLatencyCharacteristicBodyParam, callback)creates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/latency-characteristic/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/latency-characteristic={pathv3}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, tapiTopologyLatencyCharacteristicBodyParam, callback)creates or updates tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/latency-characteristic={pathv3}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdLatencyCharacteristicWithtrafficPropertyName(uuid, localId, trafficPropertyName, callback)removes tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/latency-characteristic={pathv3}/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdName(uuid, localId, tapiCommonNameAndValueBodyParam, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/name/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/name={pathv3}/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, tapiCommonNameAndValueBodyParam, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/name={pathv3}/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/name={pathv3}/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacity(uuid, localId, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacity(uuid, localId, tapiCommonCapacityBodyParam, callback)creates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacity(uuid, localId, tapiCommonCapacityBodyParam, callback)creates or updates tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacity(uuid, localId, callback)removes tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacityTotalSize(uuid, localId, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/total-size/?{query}Yes
postContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacityTotalSize(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/total-size/?{query}Yes
putContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacityTotalSize(uuid, localId, tapiCommonCapacityValueBodyParam, callback)creates or updates tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/total-size/?{query}Yes
deleteContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdRequestedCapacityTotalSize(uuid, localId, callback)removes tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/requested-capacity/total-size/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdSinkServiceEndPoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef4{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/sink-service-end-point/?{query}Yes
getContextVirtualNetworkContextVirtualNwServiceWithuuidVnwConstraintWithlocalIdSrcServiceEndPoint(uuid, localId, callback)returns tapi.common.ServiceInterfacePointRef5{base_path}/{version}/data/tapi-common:context/tapi-virtual-network:virtual-network-context/virtual-nw-service={pathv1}/vnw-constraint={pathv2}/src-service-end-point/?{query}Yes
postCreateVirtualNetworkService(tapiVirtualNetworkCreatevirtualnetworkserviceInputBodyParam, callback)operates on tapi.virtual.network.CreateVirtualNetworkService{base_path}/{version}/operations/tapi-virtual-network:create-virtual-network-service/?{query}Yes
postDeleteVirtualNetworkService(tapiVirtualNetworkDeletevirtualnetworkserviceInputBodyParam, callback)operates on tapi.virtual.network.DeleteVirtualNetworkService{base_path}/{version}/operations/tapi-virtual-network:delete-virtual-network-service/?{query}Yes
postGetVirtualNetworkServiceDetails(tapiVirtualNetworkGetvirtualnetworkservicedetailsInputBodyParam, callback)operates on tapi.virtual.network.GetVirtualNetworkServiceDetails{base_path}/{version}/operations/tapi-virtual-network:get-virtual-network-service-details/?{query}Yes
postGetVirtualNetworkServiceList(callback)OperationsTapiVirtualNetworkGetVirtualNetworkServiceList_POST{base_path}/{version}/operations/tapi-virtual-network:get-virtual-network-service-list/?{query}Yes
getContextProfileWithuuidTransmissionCapabilityProfileSupportedPayloadStructure(uuid, callback)returns tapi.common.PayloadStructure{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/supported-payload-structure?{query}Yes
getContextProfileWithuuidTransmissionCapabilityProfileSupportedPayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/transmission-capability-profile/supported-payload-structure/capacity?{query}Yes
getContextConnectivityContextConnectionWithuuidSwitchControlWithswitchControlUuidControlParametersWaitToRevertTime(uuid, switchControlUuid, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connection={pathv1}/switch-control={pathv2}/control-parameters/wait-to-revert-time/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionService(uuid, callback)returns tapi.connectivity.ConnectivityProtectionService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionService(uuid, body, callback)creates tapi.connectivity.ConnectivityProtectionService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionService(uuid, body, callback)creates or updates tapi.connectivity.ConnectivityProtectionService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionService(uuid, callback)removes tapi.connectivity.ConnectivityProtectionService{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperation(uuid, body, callback)creates tapi.connectivity.SwitchOperation{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalId(uuid, localId, callback)returns tapi.connectivity.SwitchOperation{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalId(uuid, localId, body, callback)creates or updates tapi.connectivity.SwitchOperation{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalId(uuid, localId, callback)removes tapi.connectivity.SwitchOperation{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdName(uuid, localId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/name={pathv3}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdNameWithvalueName(uuid, localId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/name={pathv3}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/name={pathv3}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitchControl(uuid, localId, callback)returns tapi.connectivity.SwitchControlRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch-control/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitchControl(uuid, localId, body, callback)creates tapi.connectivity.SwitchControlRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch-control/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitchControl(uuid, localId, body, callback)creates or updates tapi.connectivity.SwitchControlRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch-control/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitchControl(uuid, localId, callback)removes tapi.connectivity.SwitchControlRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch-control/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitch(uuid, localId, callback)returns tapi.connectivity.SwitchRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitch(uuid, localId, body, callback)creates tapi.connectivity.SwitchRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitch(uuid, localId, body, callback)creates or updates tapi.connectivity.SwitchRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidConnectivityProtectionServiceSwitchOperationWithlocalIdSwitch(uuid, localId, callback)removes tapi.connectivity.SwitchRef{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/connectivity-protection-service/switch-operation={pathv2}/switch/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintWaitToRevertTime(uuid, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/wait-to-revert-time/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintWaitToRevertTime(uuid, body, callback)creates tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/wait-to-revert-time/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintWaitToRevertTime(uuid, body, callback)creates or updates tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/wait-to-revert-time/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidResilienceConstraintWaitToRevertTime(uuid, callback)removes tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/resilience-constraint/wait-to-revert-time/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectionSwitchControlWithswitchControlUuidControlParametersWaitToRevertTime(uuid, switchControlUuid, callback)returns tapi.common.TimePeriod1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connection/switch-control={pathv2}/control-parameters/wait-to-revert-time/?{query}Yes
getContextNotificationContextEventNotificationWithuuidConnectivityServiceResilienceConstraintWaitToRevertTime(uuid, callback)returns tapi.common.TimePeriod1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:connectivity-service/resilience-constraint/wait-to-revert-time/?{query}Yes
getContextNotificationContextEventNotificationWithuuidSwitchControlControlParametersWaitToRevertTime(uuid, callback)returns tapi.common.TimePeriod2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-connectivity:switch-control/control-parameters/wait-to-revert-time/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAdditionalInfoWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/additional-info={pathv2}?{query}Yes
getContextNotificationContextEventNotificationWithuuidProfile(uuid, callback)returns tapi.common.Profile{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/profile?{query}Yes
getContextNotificationContextEventNotificationWithuuidProfileNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/profile/name={pathv2}?{query}Yes
getContextNotificationContextNotifSubscriptionWithuuidEventNotificationWitheventNotificationUuidAdditionalInfoWithvalueName(uuid, eventNotificationUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/event-notification={pathv2}/additional-info={pathv3}/?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidNotificationChannel(uuid, body, callback)creates tapi.notification.NotificationChannel{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidNotificationChannel(uuid, body, callback)creates or updates tapi.notification.NotificationChannel{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidNotificationChannel(uuid, callback)removes tapi.notification.NotificationChannel{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel?{query}Yes
postContextNotificationContextNotifSubscriptionWithuuidNotificationChannelName(uuid, body, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel/name?{query}Yes
putContextNotificationContextNotifSubscriptionWithuuidNotificationChannelNameWithvalueName(uuid, valueName, body, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel/name={pathv2}/?{query}Yes
deleteContextNotificationContextNotifSubscriptionWithuuidNotificationChannelNameWithvalueName(uuid, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/notif-subscription={pathv1}/notification-channel/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalIdProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalIdSinkProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/sink-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidInterRuleGroupRuleWithlocalIdSourceProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:inter-rule-group/rule={pathv2}/source-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointNodeRuleGroupWithtopologyUuidNodeUuidNodeRuleGroupUuid(uuid, topologyUuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/node-rule-group={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointSupportedPayloadStructure(uuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/supported-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeEdgePointSupportedPayloadStructureCapacity(uuid, callback)returns tapi.common.CapacityValue6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-edge-point/supported-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalIdProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalIdSinkProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/sink-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRuleGroupRuleWithlocalIdSourceProfileWithprofileUuid(uuid, localId, profileUuid, callback)returns tapi.common.ProfileRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node-rule-group/rule={pathv2}/source-profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuid(uuid, interRuleGroupUuid, callback)returns tapi.topology.InterRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidAssociatedNodeRuleGroupWithtopologyUuidNodeUuidNodeRuleGroupUuid(uuid, interRuleGroupUuid, topologyUuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/associated-node-rule-group={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidAvailableCapacity(uuid, interRuleGroupUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidAvailableCapacityTotalSize(uuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidCostCharacteristicWithcostName(uuid, interRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/cost-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, interRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/latency-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidNameWithvalueName(uuid, interRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, interRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/risk-characteristic={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalId(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, interRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdProfileWithprofileUuid(uuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, interRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSinkProfileWithprofileUuid(uuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/sink-profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSourceProfileWithprofileUuid(uuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/rule={pathv3}/source-profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacity(uuid, interRuleGroupUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/inter-rule-group={pathv2}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdProfileWithprofileUuid(uuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSinkProfileWithprofileUuid(uuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/sink-profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSourceProfileWithprofileUuid(uuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/node-rule-group={pathv2}/rule={pathv3}/source-profile={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidNodeRuleGroupWithtopologyUuidNodeUuidNodeRuleGroupUuid(uuid, ownedNodeEdgePointUuid, topologyUuid, nodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/node-rule-group={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedPayloadStructure(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/supported-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedPayloadStructureCapacity(uuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/owned-node-edge-point={pathv2}/supported-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRiskParameterPac(uuid, callback)returns tapi.topology.RiskParameterPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/risk-parameter-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidNodeRiskParameterPacRiskCharacteristicWithriskCharacteristicName(uuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:node/risk-parameter-pac/risk-characteristic={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRuleProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef4{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRuleSinkProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef5{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/sink-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidRuleSourceProfileWithprofileUuid(uuid, profileUuid, callback)returns tapi.common.ProfileRef6{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:rule/source-profile={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuid(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.topology.InterRuleGroup{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidAssociatedNodeRuleGroupWithtopologyUuidAssociatedNodeRuleGroupNodeUuidNodeRuleGroupUuid(uuid, nodeUuid, interRuleGroupUuid, topologyUuid, associatedNodeRuleGroupNodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/associated-node-rule-group={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacity(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/available-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/available-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeUuid, interRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/cost-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, interRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/latency-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidNameWithvalueName(uuid, nodeUuid, interRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, interRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/risk-characteristic={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalId(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.Rule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/cep-port-role/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/connection-spec-reference/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeUuid, interRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/name={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdProfileWithprofileUuid(uuid, nodeUuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/profile={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/signal-property/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSinkProfileWithprofileUuid(uuid, nodeUuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/sink-profile={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSourceProfileWithprofileUuid(uuid, nodeUuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/source-profile={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacity(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/total-potential-capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/inter-rule-group={pathv3}/total-potential-capacity/total-size/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdProfileWithprofileUuid(uuid, nodeUuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/profile={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSinkProfileWithprofileUuid(uuid, nodeUuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/sink-profile={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSourceProfileWithprofileUuid(uuid, nodeUuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/source-profile={pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidNodeRuleGroupWithtopologyUuidNodeRuleGroupNodeUuidNodeRuleGroupUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, topologyUuid, nodeRuleGroupNodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/node-rule-group={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedPayloadStructure(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/supported-payload-structure/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedPayloadStructureCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/owned-node-edge-point={pathv3}/supported-payload-structure/capacity/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidProfileWithprofileUuid(uuid, nodeUuid, profileUuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/profile={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidRiskParameterPac(uuid, nodeUuid, callback)returns tapi.topology.RiskParameterPac{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/risk-parameter-pac/?{query}Yes
getContextNotificationContextEventNotificationWithuuidTopologyNodeWithnodeUuidRiskParameterPacRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-topology:topology/node={pathv2}/risk-parameter-pac/risk-characteristic={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuid(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.topology.InterRuleGroup1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidAssociatedNodeRuleGroupWithtopologyUuidAssociatedNodeRuleGroupNodeUuidNodeRuleGroupUuid(uuid, nodeUuid, interRuleGroupUuid, topologyUuid, associatedNodeRuleGroupNodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/associated-node-rule-group={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacity(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/available-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidAvailableCapacityTotalSize(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/available-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidCostCharacteristicWithcostName(uuid, nodeUuid, interRuleGroupUuid, costName, callback)returns tapi.topology.CostCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/cost-characteristic={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidLatencyCharacteristicWithtrafficPropertyName(uuid, nodeUuid, interRuleGroupUuid, trafficPropertyName, callback)returns tapi.topology.LatencyCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/latency-characteristic={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidNameWithvalueName(uuid, nodeUuid, interRuleGroupUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/name={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, interRuleGroupUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/risk-characteristic={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalId(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.Rule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdCepPortRole(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.PortRoleRule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/cep-port-role/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdConnectionSpecReference(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.ConnectionSpecReference1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/connection-spec-reference/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdNameWithvalueName(uuid, nodeUuid, interRuleGroupUuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdProfileWithprofileUuid(uuid, nodeUuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSignalProperty(uuid, nodeUuid, interRuleGroupUuid, localId, callback)returns tapi.topology.SignalPropertyRule1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/signal-property/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSinkProfileWithprofileUuid(uuid, nodeUuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/sink-profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidRuleWithlocalIdSourceProfileWithprofileUuid(uuid, nodeUuid, interRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef5{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/rule={pathv4}/source-profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacity(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.Capacity3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/total-potential-capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidInterRuleGroupWithinterRuleGroupUuidTotalPotentialCapacityTotalSize(uuid, nodeUuid, interRuleGroupUuid, callback)returns tapi.common.CapacityValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/inter-rule-group={pathv3}/total-potential-capacity/total-size/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdProfileWithprofileUuid(uuid, nodeUuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSinkProfileWithprofileUuid(uuid, nodeUuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/sink-profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidNodeRuleGroupWithnodeRuleGroupUuidRuleWithlocalIdSourceProfileWithprofileUuid(uuid, nodeUuid, nodeRuleGroupUuid, localId, profileUuid, callback)returns tapi.common.ProfileRef5{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/node-rule-group={pathv3}/rule={pathv4}/source-profile={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidNodeRuleGroupWithtopologyUuidNodeRuleGroupNodeUuidNodeRuleGroupUuid(uuid, nodeUuid, ownedNodeEdgePointUuid, topologyUuid, nodeRuleGroupNodeUuid, nodeRuleGroupUuid, callback)returns tapi.topology.NodeRuleGroupRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/node-rule-group={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedPayloadStructure(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.PayloadStructure3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/supported-payload-structure/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidSupportedPayloadStructureCapacity(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.common.CapacityValue6{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/supported-payload-structure/capacity/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidProfileWithprofileUuid(uuid, nodeUuid, profileUuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/profile={pathv3}?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidRiskParameterPac(uuid, nodeUuid, callback)returns tapi.topology.RiskParameterPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/risk-parameter-pac?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidRiskParameterPacRiskCharacteristicWithriskCharacteristicName(uuid, nodeUuid, riskCharacteristicName, callback)returns tapi.topology.RiskCharacteristic1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/risk-parameter-pac/risk-characteristic={pathv3}/?{query}Yes
getContextStreamAdminContextStreamMonitorWithuuidDynamicStreamData(uuid, callback)returns tapi.streaming.DynamicStreamData{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-admin-context/stream-monitor={pathv1}/dynamic-stream-data?{query}Yes
getContextStreamContextSupportedStreamTypeWithuuidInformationRecordStrategy(uuid, callback)returns tapi.streaming.InformationRecordStrategy{base_path}/{version}/data/tapi-common:context/tapi-streaming:stream-context/supported-stream-type={pathv1}/information-record-strategy?{query}Yes
getContextProfileWithuuidOamProfile(uuid, callback)returns tapi.oam.OamProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-oam:oam-profile?{query}Yes
getContextProfileWithuuidOamProfilePmDataWithlocalId(uuid, localId, callback)returns tapi.oam.PmData{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}?{query}Yes
getContextProfileWithuuidOamProfilePmDataWithlocalIdGranularityPeriod(uuid, localId, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/granularity-period?{query}Yes
getContextProfileWithuuidOamProfilePmDataWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/name={pathv3}?{query}Yes
getContextProfileWithuuidOamProfilePmDataWithlocalIdPmParameterWithpmParameterName(uuid, localId, pmParameterName, callback)returns tapi.oam.PmParameter{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/pm-parameter={pathv3}?{query}Yes
getContextProfileWithuuidOamProfilePmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThreshold(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.oam.ThresholdConfig{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/?{query}Yes
getContextProfileWithuuidOamProfilePmDataWithlocalIdPmParameterWithpmParameterNameThresholdConfigWiththresholdLocationThresholdTypeClearThresholdPmParameterValue(uuid, localId, pmParameterName, thresholdLocation, thresholdType, clearThreshold, callback)returns tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-oam:oam-profile/pm-data={pathv2}/pm-parameter={pathv3}/threshold-config={pathv4},{pathv5},{pathv6}/pm-parameter-value/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-cn-csep-ttp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-cn-csep-ttp-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates or updates tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-cn-csep-ttp-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOduConnectivityServiceEndPointSpecOduCnCsepTtpPac(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.digital.otn.OduCnCsepTtpPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-digital-otn:odu-connectivity-service-end-point-spec/odu-cn-csep-ttp-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, body, callback)creates tapi.digital.otn.OtnOamCommon2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, body, callback)creates or updates tapi.digital.otn.OtnOamCommon2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, body, callback)creates tapi.digital.otn.DegThr2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, body, callback)creates or updates tapi.digital.otn.DegThr2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, body, callback)creates tapi.digital.otn.OtsiaMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, body, callback)creates or updates tapi.digital.otn.OtsiaMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdConnectivityOamServiceOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, callback)removes tapi.digital.otn.OtsiaMep{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/tapi-oam:connectivity-oam-service/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
getContextOamContextMegWithuuidOtnMegSpec(uuid, callback)returns tapi.digital.otn.OtnMegSpec{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-digital-otn:otn-meg-spec?{query}Yes
getContextOamContextMegWithuuidOtnMegSpecOduTcmMeg(uuid, callback)returns tapi.digital.otn.OduTcmMeg{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/meg={pathv1}/tapi-digital-otn:otn-meg-spec/odu-tcm-meg?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOduDelayPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OduDelayPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:odu-delay-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOtnErrorPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OtnErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:otn-error-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOtnErrorPerformanceDataFarEndOtnCounters(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OtnCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:otn-error-performance-data/far-end-otn-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOtnErrorPerformanceDataNearEndOtnCounters(uuid, localId, historyDataLocalId, callback)returns tapi.digital.otn.OtnCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:otn-error-performance-data/near-end-otn-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOtnErrorPerformanceDataOtnCnErrorPerformanceDataWithotnCnOhIndex(uuid, localId, historyDataLocalId, otnCnOhIndex, callback)returns tapi.digital.otn.OtnCnErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:otn-error-performance-data/otn-cn-error-performance-data={pathv4}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOtnErrorPerformanceDataOtnCnErrorPerformanceDataWithotnCnOhIndexFarEndOtnCounters(uuid, localId, historyDataLocalId, otnCnOhIndex, callback)returns tapi.digital.otn.OtnCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:otn-error-performance-data/otn-cn-error-performance-data={pathv4}/far-end-otn-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdOtnErrorPerformanceDataOtnCnErrorPerformanceDataWithotnCnOhIndexNearEndOtnCounters(uuid, localId, historyDataLocalId, otnCnOhIndex, callback)returns tapi.digital.otn.OtnCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-digital-otn:otn-error-performance-data/otn-cn-error-performance-data={pathv4}/near-end-otn-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOtnErrorPerformanceData(uuid, localId, callback)returns tapi.digital.otn.OtnErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:otn-error-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOtnErrorPerformanceDataFarEndOtnCounters(uuid, localId, callback)returns tapi.digital.otn.OtnCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:otn-error-performance-data/far-end-otn-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOtnErrorPerformanceDataNearEndOtnCounters(uuid, localId, callback)returns tapi.digital.otn.OtnCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:otn-error-performance-data/near-end-otn-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOtnErrorPerformanceDataOtnCnErrorPerformanceDataWithotnCnOhIndex(uuid, localId, otnCnOhIndex, callback)returns tapi.digital.otn.OtnCnErrorPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:otn-error-performance-data/otn-cn-error-performance-data={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOtnErrorPerformanceDataOtnCnErrorPerformanceDataWithotnCnOhIndexFarEndOtnCounters(uuid, localId, otnCnOhIndex, callback)returns tapi.digital.otn.OtnCounters{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:otn-error-performance-data/otn-cn-error-performance-data={pathv3}/far-end-otn-counters/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdOtnErrorPerformanceDataOtnCnErrorPerformanceDataWithotnCnOhIndexNearEndOtnCounters(uuid, localId, otnCnOhIndex, callback)returns tapi.digital.otn.OtnCounters1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-digital-otn:otn-error-performance-data/otn-cn-error-performance-data={pathv3}/near-end-otn-counters/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, body, callback)creates tapi.digital.otn.OtnOamCommon7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, body, callback)creates or updates tapi.digital.otn.OtnOamCommon7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommon(uuid, localId, callback)removes tapi.digital.otn.OtnOamCommon7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, body, callback)creates tapi.digital.otn.DegThr7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, body, callback)creates or updates tapi.digital.otn.DegThr7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtnOamCommonDegThr(uuid, localId, callback)removes tapi.digital.otn.DegThr7{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otn-oam-common/deg-thr/?{query}Yes
postContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, body, callback)creates tapi.digital.otn.OtsiaMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
putContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, body, callback)creates or updates tapi.digital.otn.OtsiaMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
deleteContextOamContextOamServiceWithuuidOamServicePointWithlocalIdOtnOamMepServicePointOtuMepOtsiaMep(uuid, localId, callback)removes tapi.digital.otn.OtsiaMep1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/oam-service-point={pathv2}/tapi-digital-otn:otn-oam-mep-service-point/otu-mep/otsia-mep/?{query}Yes
getContextOamContextOamServiceWithuuidOtnOamService(uuid, callback)returns tapi.digital.otn.OtnOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service?{query}Yes
postContextOamContextOamServiceWithuuidOtnOamService(uuid, body, callback)creates tapi.digital.otn.OtnOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service?{query}Yes
putContextOamContextOamServiceWithuuidOtnOamService(uuid, body, callback)creates or updates tapi.digital.otn.OtnOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service?{query}Yes
deleteContextOamContextOamServiceWithuuidOtnOamService(uuid, callback)removes tapi.digital.otn.OtnOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service?{query}Yes
getContextOamContextOamServiceWithuuidOtnOamServiceOduTcmOamService(uuid, callback)returns tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service/odu-tcm-oam-service?{query}Yes
postContextOamContextOamServiceWithuuidOtnOamServiceOduTcmOamService(uuid, body, callback)creates tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service/odu-tcm-oam-service?{query}Yes
putContextOamContextOamServiceWithuuidOtnOamServiceOduTcmOamService(uuid, body, callback)creates or updates tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service/odu-tcm-oam-service?{query}Yes
deleteContextOamContextOamServiceWithuuidOtnOamServiceOduTcmOamService(uuid, callback)removes tapi.digital.otn.OduTcmOamService{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-service={pathv1}/tapi-digital-otn:otn-oam-service/odu-tcm-oam-service?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMip(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduMip{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMipOduMipStatus(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OduMipStatus{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip/odu-mip-status/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMipOtnOamCommon(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.OtnOamCommon{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip/otn-oam-common/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOduConnectionEndPointSpecOduCtpOduMipOtnOamCommonDegThr(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.digital.otn.DegThr{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-digital-otn:odu-connection-end-point-spec/odu-ctp/odu-mip/otn-oam-common/deg-thr/?{query}Yes
getContextFaultManagementContext(callback)returns tapi.fm.context.FaultManagementContext{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context?{query}Yes
postContextFaultManagementContext(body, callback)creates tapi.fm.context.FaultManagementContext{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context?{query}Yes
putContextFaultManagementContext(body, callback)creates or updates tapi.fm.context.FaultManagementContext{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context?{query}Yes
deleteContextFaultManagementContext(callback)removes tapi.fm.context.FaultManagementContext{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context?{query}Yes
getContextFaultManagementContextActiveConditionWithuuid(uuid, callback)returns tapi.fm.faultmanagementcontext.ActiveCondition{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidAdditionalInfoWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/additional-info={pathv2}?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidDetectedCondition(uuid, callback)returns tapi.fm.DetectedCondition{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/detected-condition?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidDetectedConditionDetectorInfo(uuid, callback)returns tapi.fm.DetectorInfo{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/detected-condition/detector-info?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidDetectedConditionPmMetricInfo(uuid, callback)returns tapi.fm.PmMetricInfo{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/detected-condition/pm-metric-info?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidDetectedConditionPmMetricInfoGranularityPeriod(uuid, callback)returns tapi.common.TimePeriod{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/detected-condition/pm-metric-info/granularity-period/?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidDetectedConditionPmMetricInfoThresholdConfiguredValue(uuid, callback)returns tapi.common.PmParameterValue{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/detected-condition/pm-metric-info/threshold-configured-value/?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidDetectedConditionPmMetricInfoThresholdObservedValue(uuid, callback)returns tapi.common.PmParameterValue1{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/detected-condition/pm-metric-info/threshold-observed-value/?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidDetectedConditionSimpleDetector(uuid, callback)returns tapi.fm.SimpleDetector{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/detected-condition/simple-detector?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/name={pathv2}?{query}Yes
getContextFaultManagementContextActiveConditionWithuuidTargetObjectNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-fm:fault-management-context/active-condition={pathv1}/target-object-name={pathv2}?{query}Yes
getContextServiceInterfacePointWithuuidAccessPortSupportsSip(uuid, callback)returns tapi.equipment.AccessPortSupportsSip{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-equipment:access-port-supports-sip?{query}Yes
getContextServiceInterfacePointWithuuidAccessPortSupportsSipAccessPort(uuid, callback)returns tapi.equipment.AccessPortRef{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-equipment:access-port-supports-sip/access-port?{query}Yes
getContextPhysicalContextDeviceWithuuidEquipmentWithequipmentUuidGeolocation(uuid, equipmentUuid, callback)returns tapi.equipment.Geolocation{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/device={pathv1}/equipment={pathv2}/geolocation?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdStrandJointWithstrandJointLocalId(uuid, localId, strandJointLocalId, callback)returns tapi.equipment.StrandJoint{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/strand-joint={pathv3}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdStrandJointWithstrandJointLocalIdNameWithvalueName(uuid, localId, strandJointLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/strand-joint={pathv3}/name={pathv4}/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdStrandJointWithstrandJointLocalIdToAbstractStrand(uuid, localId, strandJointLocalId, callback)returns tapi.equipment.AbstractStrandRef{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/strand-joint={pathv3}/to-abstract-strand/?{query}Yes
getContextPhysicalContextPhysicalSpanWithuuidAbstractStrandWithlocalIdToStrandJointWithphysicalSpanUuidAbstractStrandLocalIdStrandJointLocalId(uuid, localId, physicalSpanUuid, abstractStrandLocalId, strandJointLocalId, callback)returns tapi.equipment.StrandJointRef{base_path}/{version}/data/tapi-common:context/tapi-equipment:physical-context/physical-span={pathv1}/abstract-strand={pathv2}/to-strand-joint={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandStrandJointWithlocalId(uuid, localId, callback)returns tapi.equipment.StrandJoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/strand-joint={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandStrandJointWithlocalIdNameWithvalueName(uuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/strand-joint={pathv2}/name={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandStrandJointWithlocalIdToAbstractStrand(uuid, localId, callback)returns tapi.equipment.AbstractStrandRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/strand-joint={pathv2}/to-abstract-strand/?{query}Yes
getContextNotificationContextEventNotificationWithuuidAbstractStrandToStrandJointWithphysicalSpanUuidAbstractStrandLocalIdStrandJointLocalId(uuid, physicalSpanUuid, abstractStrandLocalId, strandJointLocalId, callback)returns tapi.equipment.StrandJointRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:abstract-strand/to-strand-joint={pathv2},{pathv3},{pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidDeviceEquipmentWithequipmentUuidGeolocation(uuid, equipmentUuid, callback)returns tapi.equipment.Geolocation1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:device/equipment={pathv2}/geolocation/?{query}Yes
getContextNotificationContextEventNotificationWithuuidEquipmentGeolocation(uuid, callback)returns tapi.equipment.Geolocation{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:equipment/geolocation/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRouteElement(uuid, callback)returns tapi.equipment.PhysicalRouteElement{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route-element/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRouteElementAccessPortInRoute(uuid, callback)returns tapi.equipment.AccessPortRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route-element/access-port-in-route/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRouteElementConnectorPinInRouteWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route-element/connector-pin-in-route={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRouteElementConnectorPinInRouteWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route-element/connector-pin-in-route={pathv2},{pathv3},{pathv4},{pathv5}/pin-and-role={pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRoute(uuid, callback)returns tapi.equipment.PhysicalRoute{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRouteNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue8{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRoutePhysicalRouteElement(uuid, callback)returns tapi.equipment.PhysicalRouteElement1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route/physical-route-element/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRoutePhysicalRouteElementAccessPortInRoute(uuid, callback)returns tapi.equipment.AccessPortRef2{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route/physical-route-element/access-port-in-route/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRoutePhysicalRouteElementConnectorPinInRouteWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentification(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, callback)returns tapi.equipment.ConnectorPinAddress3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route/physical-route-element/connector-pin-in-route={pathv2},{pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalRoutePhysicalRouteElementConnectorPinInRouteWithdeviceUuidEquipmentUuidConnectorIdentificationPinIdentificationPinAndRoleWithlocationInConnector(uuid, deviceUuid, equipmentUuid, connectorIdentification, pinIdentification, locationInConnector, callback)returns tapi.equipment.PinAndRole3{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-route/physical-route-element/connector-pin-in-route={pathv2},{pathv3},{pathv4},{pathv5}/pin-and-role={pathv6}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdStrandJointWithstrandJointLocalId(uuid, localId, strandJointLocalId, callback)returns tapi.equipment.StrandJoint1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/strand-joint={pathv3}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdStrandJointWithstrandJointLocalIdNameWithvalueName(uuid, localId, strandJointLocalId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/strand-joint={pathv3}/name={pathv4}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdStrandJointWithstrandJointLocalIdToAbstractStrand(uuid, localId, strandJointLocalId, callback)returns tapi.equipment.AbstractStrandRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/strand-joint={pathv3}/to-abstract-strand/?{query}Yes
getContextNotificationContextEventNotificationWithuuidPhysicalSpanAbstractStrandWithlocalIdToStrandJointWithphysicalSpanUuidAbstractStrandLocalIdStrandJointLocalId(uuid, localId, physicalSpanUuid, abstractStrandLocalId, strandJointLocalId, callback)returns tapi.equipment.StrandJointRef1{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:physical-span/abstract-strand={pathv2}/to-strand-joint={pathv3},{pathv4},{pathv5}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidStrandJoint(uuid, callback)returns tapi.equipment.StrandJoint{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:strand-joint?{query}Yes
getContextNotificationContextEventNotificationWithuuidStrandJointNameWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue10{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:strand-joint/name={pathv2}/?{query}Yes
getContextNotificationContextEventNotificationWithuuidStrandJointToAbstractStrand(uuid, callback)returns tapi.equipment.AbstractStrandRef{base_path}/{version}/data/tapi-common:context/tapi-notification:notification-context/event-notification={pathv1}/tapi-equipment:strand-joint/to-abstract-strand/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAccessPortSupportsNep(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.equipment.AccessPortSupportsNep{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-equipment:access-port-supports-nep/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidAccessPortSupportsNepAccessPort(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.equipment.AccessPortRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-equipment:access-port-supports-nep/access-port/?{query}Yes
getContextProfileWithuuidAmplificationProfile(uuid, callback)returns tapi.photonic.media.AmplificationProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:amplification-profile?{query}Yes
getContextProfileWithuuidAmplificationProfileExtendedGainRange(uuid, callback)returns tapi.photonic.media.GainRange{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:amplification-profile/extended-gain-range?{query}Yes
getContextProfileWithuuidAmplificationProfileFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:amplification-profile/frequency-range?{query}Yes
getContextProfileWithuuidAmplificationProfileGainRange(uuid, callback)returns tapi.photonic.media.GainRange1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:amplification-profile/gain-range?{query}Yes
getContextProfileWithuuidAmplificationProfileNoiseFigureRange(uuid, callback)returns tapi.photonic.media.NoiseFigureRange{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:amplification-profile/noise-figure-range?{query}Yes
getContextProfileWithuuidConnectivityImpairmentProfile(uuid, callback)returns tapi.photonic.media.ConnectivityImpairmentProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:connectivity-impairment-profile?{query}Yes
getContextProfileWithuuidConnectivityImpairmentProfileFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:connectivity-impairment-profile/frequency-range?{query}Yes
getContextProfileWithuuidTransceiverProfile(uuid, callback)returns tapi.photonic.media.TransceiverProfile{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfile(uuid, callback)returns tapi.photonic.media.TransceiverExplicit{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileCommonExplicit(uuid, callback)returns tapi.photonic.media.CommonExplicit{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/common-explicit?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileCommonExplicitChromaticAndPolarizationDispersionPenaltyWithindex(uuid, index, callback)returns tapi.photonic.media.CdPmdPenalty{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/common-explicit/chromatic-and-polarization-dispersion-penalty={pathv2}/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileCommonExplicitMaxPolarizationDependentLossPenaltyWithindex(uuid, index, callback)returns tapi.photonic.media.PdlPenalty{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/common-explicit/max-polarization-dependent-loss-penalty={pathv2}/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileCommonExplicitOtherPropertiesWithvalueName(uuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/common-explicit/other-properties={pathv2}/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileCommonOrganizationalExplicit(uuid, callback)returns tapi.photonic.media.CommonOrganizationalExplicit{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/common-organizational-explicit/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileCommonOrganizationalExplicitFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange2{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/common-organizational-explicit/frequency-range/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileSupportedOrganizationalMode(uuid, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/supported-organizational-mode/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverExplicitProfileSupportedStandardApplicationCode(uuid, callback)returns tapi.common.ProfileRef1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-explicit-profile/supported-standard-application-code/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverOrganizationalProfile(uuid, callback)returns tapi.photonic.media.TransceiverOrganizational{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-organizational-profile?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverOrganizationalProfileCommonOrganizationalExplicit(uuid, callback)returns tapi.photonic.media.CommonOrganizationalExplicit1{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-organizational-profile/common-organizational-explicit/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverOrganizationalProfileCommonOrganizationalExplicitFrequencyRange(uuid, callback)returns tapi.photonic.media.FrequencyRange3{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-organizational-profile/common-organizational-explicit/frequency-range/?{query}Yes
getContextProfileWithuuidTransceiverProfileTransceiverStandardProfile(uuid, callback)returns tapi.photonic.media.TransceiverStandard{base_path}/{version}/data/tapi-common:context/profile={pathv1}/tapi-photonic-media:transceiver-profile/transceiver-standard-profile?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpec(uuid, callback)returns tapi.photonic.media.PhotonicMediaServiceInterfacePointSpec{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecPowerManagementCapabilityPac(uuid, callback)returns tapi.photonic.media.PowerManagementCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/power-management-capability-pac/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecPowerManagementCapabilityPacSpectrum(uuid, callback)returns tapi.photonic.media.FrequencyRange4{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/power-management-capability-pac/spectrum/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecPowerManagementCapabilityPacSupportableMaxOutputPower(uuid, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/power-management-capability-pac/supportable-max-output-power/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecPowerManagementCapabilityPacSupportableMinOutputPower(uuid, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/power-management-capability-pac/supportable-min-output-power/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecPowerManagementCapabilityPacTolerableMaxInputPower(uuid, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/power-management-capability-pac/tolerable-max-input-power/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecPowerManagementCapabilityPacTolerableMinInputPower(uuid, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/power-management-capability-pac/tolerable-min-input-power/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecSpectrumCapabilityPac(uuid, callback)returns tapi.photonic.media.SpectrumCapabilityPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/spectrum-capability-pac/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecSpectrumCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequency(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/spectrum-capability-pac/available-spectrum={pathv2},{pathv3}/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecSpectrumCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/spectrum-capability-pac/available-spectrum={pathv2},{pathv3}/frequency-constraint/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecSpectrumCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequency(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/spectrum-capability-pac/occupied-spectrum={pathv2},{pathv3}/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecSpectrumCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/spectrum-capability-pac/occupied-spectrum={pathv2},{pathv3}/frequency-constraint/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecSpectrumCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequency(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/spectrum-capability-pac/supportable-spectrum={pathv2},{pathv3}/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecSpectrumCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/spectrum-capability-pac/supportable-spectrum={pathv2},{pathv3}/frequency-constraint/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecTotalPowerThresholdPac(uuid, callback)returns tapi.photonic.media.TotalPowerThresholdPac{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/total-power-threshold-pac/?{query}Yes
getContextServiceInterfacePointWithuuidPhotonicMediaServiceInterfacePointSpecTotalPowerThresholdPacSpectrum(uuid, callback)returns tapi.photonic.media.FrequencyRange5{base_path}/{version}/data/tapi-common:context/service-interface-point={pathv1}/tapi-photonic-media:photonic-media-service-interface-point-spec/total-power-threshold-pac/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.McBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.McBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.McBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.McBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcBandwidthConfigPacWithmcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.McFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.McFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.McFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.McFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcFlexiGridConfigPacWithmcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.McSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.McSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.McSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.McSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdMcgConnectivityServiceEndPointSpecMcSpectrumConfigPacWithmcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, mcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:mcg-connectivity-service-end-point-spec/mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.OtsiMcBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.OtsiMcBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.OtsiMcBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.OtsiMcBandwidthConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcBandwidthConfigPacWithotsiMcBandwidthConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcBandwidthConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-bandwidth-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.OtsiMcFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.OtsiMcFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.OtsiMcFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.OtsiMcFlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdFlexiGridConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.FlexiGridConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/flexi-grid-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFlexiGridConfigPacWithotsiMcFlexiGridConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFlexiGridConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-flexi-grid-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.OtsiMcFrequencyConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.OtsiMcFrequencyConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.OtsiMcFrequencyConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.OtsiMcFrequencyConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcFrequencyConfigPacWithotsiMcFrequencyConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcFrequencyConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-frequency-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPac(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.OtsiMcSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.OtsiMcSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.OtsiMcSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.OtsiMcSpectrumConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdCenterFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/center-frequency-constraint/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdEdgeFrequencyConstraint(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/edge-frequency-constraint/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiMcgConnectivityServiceEndPointSpecOtsiMcSpectrumConfigPacWithotsiMcSpectrumConfigPacLocalIdSpectrum(uuid, localId, layerProtocolConstraintLocalId, otsiMcSpectrumConfigPacLocalId, callback)removes tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsi-mcg-connectivity-service-end-point-spec/otsi-mc-spectrum-config-pac={pathv4}/spectrum/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)returns tapi.photonic.media.OtsiaConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.OtsiaConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates or updates tapi.photonic.media.OtsiaConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpec(uuid, localId, layerProtocolConstraintLocalId, callback)removes tapi.photonic.media.OtsiaConnectivityServiceEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfig(uuid, localId, layerProtocolConstraintLocalId, body, callback)creates tapi.photonic.media.OtsiConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.OtsiConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.OtsiConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalId(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.OtsiConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.CommonExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.CommonExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.CommonExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.CommonExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitChromaticAndPolarizationDispersionPenalty(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.CdPmdPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/chromatic-and-polarization-dispersion-penalty/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitChromaticAndPolarizationDispersionPenaltyWithindex(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, index, callback)returns tapi.photonic.media.CdPmdPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/chromatic-and-polarization-dispersion-penalty={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitChromaticAndPolarizationDispersionPenaltyWithindex(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, index, body, callback)creates or updates tapi.photonic.media.CdPmdPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/chromatic-and-polarization-dispersion-penalty={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitChromaticAndPolarizationDispersionPenaltyWithindex(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, index, callback)removes tapi.photonic.media.CdPmdPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/chromatic-and-polarization-dispersion-penalty={pathv5}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitMaxPolarizationDependentLossPenalty(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.PdlPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/max-polarization-dependent-loss-penalty/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitMaxPolarizationDependentLossPenaltyWithindex(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, index, callback)returns tapi.photonic.media.PdlPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/max-polarization-dependent-loss-penalty={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitMaxPolarizationDependentLossPenaltyWithindex(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, index, body, callback)creates or updates tapi.photonic.media.PdlPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/max-polarization-dependent-loss-penalty={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitMaxPolarizationDependentLossPenaltyWithindex(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, index, callback)removes tapi.photonic.media.PdlPenalty{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/max-polarization-dependent-loss-penalty={pathv5}/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitOtherProperties(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/other-properties/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitOtherPropertiesWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/other-properties={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitOtherPropertiesWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/other-properties={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonExplicitOtherPropertiesWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, callback)removes tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-explicit/other-properties={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.CommonOrganizationalExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.CommonOrganizationalExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.CommonOrganizationalExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicit(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.CommonOrganizationalExplicit{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicitFrequencyRange(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/frequency-range/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicitFrequencyRange(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/frequency-range/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicitFrequencyRange(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/frequency-range/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdCommonOrganizationalExplicitFrequencyRange(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/common-organizational-explicit/frequency-range/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/name/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/name={pathv5}/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, body, callback)creates or updates tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/name={pathv5}/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdNameWithvalueName(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, valueName, callback)removes tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/name={pathv5}/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdOtsiThresholdPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.OtsiThresholdPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/otsi-threshold-power-config/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdOtsiThresholdPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.OtsiThresholdPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/otsi-threshold-power-config/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdOtsiThresholdPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.OtsiThresholdPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/otsi-threshold-power-config/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdOtsiThresholdPowerConfig(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.OtsiThresholdPowerConfig{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/otsi-threshold-power-config/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPac(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.PowerManagementConfigPac{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMaxOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/max-output-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinInputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-input-power/?{query}Yes
getContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
postContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
putContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, body, callback)creates or updates tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
deleteContextConnectivityContextConnectivityServiceWithuuidEndPointWithlocalIdLayerProtocolConstraintWithlayerProtocolConstraintLocalIdOtsiaConnectivityServiceEndPointSpecOtsiConfigWithotsiConfigLocalIdPowerManagementConfigPacMinOutputPower(uuid, localId, layerProtocolConstraintLocalId, otsiConfigLocalId, callback)removes tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-connectivity:connectivity-context/connectivity-service={pathv1}/end-point={pathv2}/layer-protocol-constraint={pathv3}/tapi-photonic-media:otsia-connectivity-service-end-point-spec/otsi-config={pathv4}/power-management-config-pac/min-output-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceData(uuid, localId, historyDataLocalId, callback)returns tapi.photonic.media.PhotonicPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataAmplificationPerformanceDataWithamplificationPerformanceDataLocalId(uuid, localId, historyDataLocalId, amplificationPerformanceDataLocalId, callback)returns tapi.photonic.media.AmplificationPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/amplification-performance-data={pathv4}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataAmplificationPerformanceDataWithamplificationPerformanceDataLocalIdNameWithvalueName(uuid, localId, historyDataLocalId, amplificationPerformanceDataLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/amplification-performance-data={pathv4}/name={pathv5}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataOpticalInputPower(uuid, localId, historyDataLocalId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/optical-input-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataOpticalOutputPower(uuid, localId, historyDataLocalId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/optical-output-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataOscMonitoringPac(uuid, localId, historyDataLocalId, callback)returns tapi.photonic.media.OscMonitoringPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/osc-monitoring-pac/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataOscMonitoringPacOpticalInputPower(uuid, localId, historyDataLocalId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/osc-monitoring-pac/optical-input-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataOscMonitoringPacOpticalOutputPower(uuid, localId, historyDataLocalId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/osc-monitoring-pac/optical-output-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdHistoryDataWithhistoryDataLocalIdPhotonicPerformanceDataOtsiMonitoringPac(uuid, localId, historyDataLocalId, callback)returns tapi.photonic.media.OtsiMonitoringPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/history-data={pathv3}/tapi-photonic-media:photonic-performance-data/otsi-monitoring-pac/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceData(uuid, localId, callback)returns tapi.photonic.media.PhotonicPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataAmplificationPerformanceDataWithamplificationPerformanceDataLocalId(uuid, localId, amplificationPerformanceDataLocalId, callback)returns tapi.photonic.media.AmplificationPerformanceData{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/amplification-performance-data={pathv3}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataAmplificationPerformanceDataWithamplificationPerformanceDataLocalIdNameWithvalueName(uuid, localId, amplificationPerformanceDataLocalId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/amplification-performance-data={pathv3}/name={pathv4}/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataOpticalInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/optical-input-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataOpticalOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/optical-output-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataOscMonitoringPac(uuid, localId, callback)returns tapi.photonic.media.OscMonitoringPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/osc-monitoring-pac/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataOscMonitoringPacOpticalInputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/osc-monitoring-pac/optical-input-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataOscMonitoringPacOpticalOutputPower(uuid, localId, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/osc-monitoring-pac/optical-output-power/?{query}Yes
getContextOamContextOamJobWithuuidCurrentDataWithlocalIdPhotonicPerformanceDataOtsiMonitoringPac(uuid, localId, callback)returns tapi.photonic.media.OtsiMonitoringPac{base_path}/{version}/data/tapi-common:context/tapi-oam:oam-context/oam-job={pathv1}/current-data={pathv2}/tapi-photonic-media:photonic-performance-data/otsi-monitoring-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.McConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecFlexiGridPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FlexiGridPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/flexi-grid-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecFlexiGridPacNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/flexi-grid-pac/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecPowerMeasurementPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerMeasurementPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/power-measurement-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecPowerMeasurementPacMeasuredInputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/power-measurement-pac/measured-input-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecPowerMeasurementPacMeasuredOutputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/power-measurement-pac/measured-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecSpectrumPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.SpectrumPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/spectrum-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecSpectrumPacNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/spectrum-pac/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidMcConnectionEndPointSpecSpectrumPacOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:mc-connection-end-point-spec/spectrum-pac/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OmsConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecAmplificationWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.Amplification{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/amplification={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecAmplificationWithlocalIdAmplificationWithtopologyUuidAmplificationNodeUuidNodeEdgePointUuidAmplificationConnectionEndPointUuidAmplificationLocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, topologyUuid, amplificationNodeUuid, nodeEdgePointUuid, amplificationConnectionEndPointUuid, amplificationLocalId, callback)returns tapi.photonic.media.AmplificationRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/amplification={pathv5}/amplification={pathv6},{pathv7},{pathv8},{pathv9},{pathv10}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecAmplificationWithlocalIdFrequencyRange(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/amplification={pathv5}/frequency-range/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecAmplificationWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/amplification={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecAmplificationWithlocalIdProfile(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.common.ProfileRef{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/amplification={pathv5}/profile/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecFlexiGridPacWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FlexiGridPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/flexi-grid-pac={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecFlexiGridPacWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/flexi-grid-pac={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecOmsGeneralOpticalParams(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OmsGeneralOpticalParams{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/oms-general-optical-params/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecOmsGeneralOpticalParamsFrequencyRange(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FrequencyRange1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/oms-general-optical-params/frequency-range/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecOmsGeneralOpticalParamsPowerParams(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerParams{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/oms-general-optical-params/power-params/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecOmsGeneralOpticalParamsPowerParamsChannelPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.ChannelPower{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/oms-general-optical-params/power-params/channel-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecOmsGeneralOpticalParamsPowerParamsPowerSpectralDensity(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerSpectralDensity{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/oms-general-optical-params/power-params/power-spectral-density/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecPowerMeasurementPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerMeasurementPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/power-measurement-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecPowerMeasurementPacMeasuredInputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/power-measurement-pac/measured-input-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecPowerMeasurementPacMeasuredOutputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/power-measurement-pac/measured-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecSpectrumPacWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.SpectrumPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/spectrum-pac={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecSpectrumPacWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/spectrum-pac={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOmsConnectionEndPointSpecSpectrumPacWithlocalIdOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FrequencyRange1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:oms-connection-end-point-spec/spectrum-pac={pathv5}/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsMediaConnectionEndPointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecFlexiGridPacWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FlexiGridPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/flexi-grid-pac={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecFlexiGridPacWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/flexi-grid-pac={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOscParams(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OscParams{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/osc-params/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOscParamsPowerMeasurementPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerMeasurementPac2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/osc-params/power-measurement-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOscParamsPowerMeasurementPacMeasuredInputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/osc-params/power-measurement-pac/measured-input-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOscParamsPowerMeasurementPacMeasuredOutputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties5{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/osc-params/power-measurement-pac/measured-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOtsImpairments(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsImpairments{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/ots-impairments/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOtsImpairmentsImpairmentRouteEntry(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.ImpairmentRouteEntry{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/ots-impairments/impairment-route-entry/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOtsImpairmentsImpairmentRouteEntryOtsConcentratedLoss(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsConcentratedLoss{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/ots-impairments/impairment-route-entry/ots-concentrated-loss/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecOtsImpairmentsImpairmentRouteEntryOtsFiberSpanImpairments(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsFiberSpanImpairments{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/ots-impairments/impairment-route-entry/ots-fiber-span-impairments/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecPowerMeasurementPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerMeasurementPac3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/power-measurement-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecPowerMeasurementPacMeasuredInputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties6{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/power-measurement-pac/measured-input-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecPowerMeasurementPacMeasuredOutputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties7{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/power-measurement-pac/measured-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecSpectrumPacWithlocalId(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.SpectrumPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/spectrum-pac={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecSpectrumPacWithlocalIdNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, valueName, callback)returns tapi.common.NameAndValue4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/spectrum-pac={pathv5}/name={pathv6}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsMediaConnectionEndPointSpecSpectrumPacWithlocalIdOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, localId, callback)returns tapi.photonic.media.FrequencyRange2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:ots-media-connection-end-point-spec/spectrum-pac={pathv5}/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecFlexiGridPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FlexiGridPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/flexi-grid-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecFlexiGridPacNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, valueName, callback)returns tapi.common.NameAndValue2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/flexi-grid-pac/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiTerminationPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsiTerminationPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-termination-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiTerminationPacLaserProperties(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.LaserProperties{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-termination-pac/laser-properties/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiTerminationPacOtsiMonitoringPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.OtsiMonitoringPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-termination-pac/otsi-monitoring-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecOtsiTerminationPacSelectedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FrequencyRange2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/otsi-termination-pac/selected-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecPowerMeasurementPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerMeasurementPac4{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/power-measurement-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecPowerMeasurementPacMeasuredInputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties8{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/power-measurement-pac/measured-input-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecPowerMeasurementPacMeasuredOutputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.PowerProperties9{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/power-measurement-pac/measured-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecSpectrumPac(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.SpectrumPac1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/spectrum-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecSpectrumPacNameWithvalueName(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, valueName, callback)returns tapi.common.NameAndValue3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/spectrum-pac/name={pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidCepListConnectionEndPointWithconnectionEndPointUuidOtsiMcConnectionEndPointSpecSpectrumPacOccupiedSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, connectionEndPointUuid, callback)returns tapi.photonic.media.FrequencyRange3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-connectivity:cep-list/connection-end-point={pathv4}/tapi-photonic-media:otsi-mc-connection-end-point-spec/spectrum-pac/occupied-spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpec(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PhotonicMediaNodeEdgePointSpec{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecPowerManagementCapabilityPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PowerManagementCapabilityPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/power-management-capability-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecPowerManagementCapabilityPacSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.FrequencyRange{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/power-management-capability-pac/spectrum/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecPowerManagementCapabilityPacSupportableMaxOutputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PowerProperties{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/power-management-capability-pac/supportable-max-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecPowerManagementCapabilityPacSupportableMinOutputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PowerProperties1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/power-management-capability-pac/supportable-min-output-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecPowerManagementCapabilityPacTolerableMaxInputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PowerProperties2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/power-management-capability-pac/tolerable-max-input-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecPowerManagementCapabilityPacTolerableMinInputPower(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.PowerProperties3{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/power-management-capability-pac/tolerable-min-input-power/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecSpectrumCapabilityPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.SpectrumCapabilityPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/spectrum-capability-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecSpectrumCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequency(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/spectrum-capability-pac/available-spectrum={pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecSpectrumCapabilityPacAvailableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/spectrum-capability-pac/available-spectrum={pathv4},{pathv5}/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecSpectrumCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequency(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/spectrum-capability-pac/occupied-spectrum={pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecSpectrumCapabilityPacOccupiedSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/spectrum-capability-pac/occupied-spectrum={pathv4},{pathv5}/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecSpectrumCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequency(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.SpectrumBand2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/spectrum-capability-pac/supportable-spectrum={pathv4},{pathv5}/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecSpectrumCapabilityPacSupportableSpectrumWithupperFrequencyLowerFrequencyFrequencyConstraint(uuid, nodeUuid, ownedNodeEdgePointUuid, upperFrequency, lowerFrequency, callback)returns tapi.photonic.media.FrequencyConstraint2{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/spectrum-capability-pac/supportable-spectrum={pathv4},{pathv5}/frequency-constraint/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecTotalPowerThresholdPac(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.TotalPowerThresholdPac{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/total-power-threshold-pac/?{query}Yes
getContextTopologyContextTopologyWithuuidNodeWithnodeUuidOwnedNodeEdgePointWithownedNodeEdgePointUuidPhotonicMediaNodeEdgePointSpecTotalPowerThresholdPacSpectrum(uuid, nodeUuid, ownedNodeEdgePointUuid, callback)returns tapi.photonic.media.FrequencyRange1{base_path}/{version}/data/tapi-common:context/tapi-topology:topology-context/topology={pathv1}/node={pathv2}/owned-node-edge-point={pathv3}/tapi-photonic-media:photonic-media-node-edge-point-spec/total-power-threshold-pac/spectrum/?{query}Yes

Authentication

This document will go through the steps for authenticating the Tapi adapter with Basic Authentication. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication HERE.

Basic Authentication

The Tapi adapter requires Basic Authentication. If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.

STEPS

  1. Ensure you have access to a Tapi server and that it is running
  2. Follow the steps in the README.md to import the adapter into IAP if you have not already done so
  3. Use the properties below for the properties.authentication field
    "authentication": {
    "auth_method": "basic user_password",
    "username": "<username>",
    "password": "<password>",
    "token": "",
    "token_timeout": 1800000,
    "token_cache": "local",
    "invalid_token_error": 401,
    "auth_field": "header.headers.Authorization",
    "auth_field_format": "Basic {b64}{username}:{password}{/b64}",
    "auth_logging": false,
    "client_id": "",
    "client_secret": "",
    "grant_type": ""
    }
  4. Restart the adapter. If your properties were set correctly, the adapter should go online.

Troubleshooting

  • Make sure you copied over the correct username and password.
  • Turn on debug level logs for the adapter in IAP Admin Essentials.
  • Turn on auth_logging for the adapter in IAP Admin Essentials (adapter properties).
  • Investigate the logs - in particular:
    • The FULL REQUEST log to make sure the proper headers are being sent with the request.
    • The FULL BODY log to make sure the payload is accurate.
    • The CALL RETURN log to see what the other system is telling us.
  • Remember when you are done to turn auth_logging off as you do not want to log credentials.

Additional Information

Enhancements

Adding a Second Instance of an Adapter

You can add a second instance of this adapter without adding new code on the file system. To do this go into the IAP Admin Essentials and add a new service config for this adapter. The two instances of the adapter should have unique ids. In addition, they should point to different instances (unique host and port) of the other system.

Adding Adapter Calls

There are multiple ways to add calls to an existing adapter.

The easiest way would be to use the Adapter Builder update process. This process takes in a Swagger or OpenAPI document, allows you to select the calls you want to add and then generates a zip file that can be used to update the adapter. Once you have the zip file simply put it in the adapter directory and execute npm run adapter:update.

mv updatePackage.zip adapter-tapi
cd adapter-tapi
npm run adapter:update

If you do not have a Swagger or OpenAPI document, you can use a Postman Collection and convert that to an OpenAPI document using APIMatic and then follow the first process.

If you want to manually update the adapter that can also be done the key thing is to make sure you update all of the right files. Within the entities directory you will find 1 or more entities. You can create a new entity or add to an existing entity. Each entity has an action.json file, any new call will need to be put in the action.json file. It will also need to be added to the enum for the ph_request_type in the appropriate schema files. Once this configuration is complete you will need to add the call to the adapter.js file and, in order to make it available as a workflow task in IAP, it should also be added to the pronghorn.json file. You can optionally add it to the unit and integration test files. There is more information on how to work on each of these files in the Adapter Technical Resources on our Documentation Site.

Files to update
* entities/<entity>/action.json: add an action
* entities/<entity>/schema.json (or the schema defined on the action): add action to the enum for ph_request_type
* adapter.js: add the new method and make sure it calls the proper entity and action
* pronghorn.json: add the new method
* test/unit/adapterTestUnit.js (optional but best practice): add unit test(s) - function is there, any required parameters error when not passed in
* test/integration/adapterTestIntegration.js (optional but best practice): add integration test

Adding Adapter Properties

While changing adapter properties is done in the service instance configuration section of IAP, adding properties has to be done in the adapter. To add a property you should edit the propertiesSchema.json with the proper information for the property. In addition, you should modify the sampleProperties to have the new property in it.

Files to update
* propertiesSchema.json: add the new property and how it is defined
* sampleProperties: add the new property with a default value
* test/unit/adapterTestUnit.js (optional but best practice): add the property to the global properties
* test/integration/adapterTestIntegration.js (optional but best practice): add the property to the global properties

Changing Adapter Authentication

Often an adapter is built before knowing the authentication and authentication processes can also change over time. The adapter supports many different kinds of authentication but it does require configuration. Some forms of authentication can be defined entirely with the adapter properties but others require configuration.

Files to update
* entities/.system/action.json: change the getToken action as needed
* entities/.system/schemaTokenReq.json: add input parameters (external name is name in other system)
* entities/.system/schemaTokenResp.json: add response parameters (external name is name in other system)
* propertiesSchema.json: add any new property and how it is defined
* sampleProperties: add any new property with a default value
* test/unit/adapterTestUnit.js (optional but best practice): add the property to the global properties
* test/integration/adapterTestIntegration.js (optional but best practice): add the property to the global properties

Enhancing Adapter Integration Tests

The adapter integration tests are written to be able to test in either stub (standalone) mode or integrated to the other system. However, if integrating to the other system, you may need to provide better data than what the adapter provides by default as that data is likely to fail for create and update. To provide better data, edit the adapter integration test file. Make sure you do not remove the marker and keep custom code below the marker so you do not impact future migrations. Once the edits are complete, run the integration test as it instructs you to above. When you run integrated to the other system, you can also save mockdata for future use by changing the isSaveMockData flag to true.

Files to update
* test/integration/adapterTestIntegration.js: add better data for the create and update calls so that they will not fail.

As mentioned previously, for most of these changes as well as other possible changes, there is more information on how to work on an adapter in the Adapter Technical Resources on our Documentation Site.

Contributing

First off, thanks for taking the time to contribute!

The following is a set of rules for contributing.

Code of Conduct

This project and everyone participating in it is governed by the Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to support@itential.com.

How to Contribute

Follow the contributing guide (here)[https://gitlab.com/itentialopensource/adapters/contributing-guide]

Helpful Links

Adapter Technical Resources

Node Scripts

There are several node scripts that now accompany the adapter. These scripts are provided to make several activities easier. Many of these scripts can have issues with different versions of IAP as they have dependencies on IAP and Mongo. If you have issues with the scripts please report them to the Itential Adapter Team. Each of these scripts are described below.

RunDescription
npm run adapter:installProvides an easier way to install the adapter.
npm run adapter:checkMigrateChecks whether your adapter can and should be migrated to the latest foundation.
npm run adapter:findPathCan be used to see if the adapter supports a particular API call.
npm run adapter:migrateProvides an easier way to update your adapter after you download the migration zip from Itential DevSite.
npm run adapter:updateProvides an easier way to update your adapter after you download the update zip from Itential DevSite.
npm run adapter:revertAllows you to revert after a migration or update if it resulted in issues.
npm run troubleshootProvides a way to troubleshoot the adapter - runs connectivity, healthcheck and basic get.
npm run connectivityProvides a connectivity check to the Servicenow system.
npm run healthcheckChecks whether the configured healthcheck call works to Servicenow.
npm run basicgetChecks whether the basic get calls works to Servicenow.

Troubleshoot

Run npm run troubleshoot to start the interactive troubleshooting process. The command allows you to verify and update connection, authentication as well as healthcheck configuration. After that it will test these properties by sending HTTP request to the endpoint. If the tests pass, it will persist these changes into IAP.

You also have the option to run individual commands to perform specific test:

  • npm run healthcheck will perform a healthcheck request of with current setting.
  • npm run basicget will perform some non-parameter GET request with current setting.
  • npm run connectivity will perform networking diagnostics of the adatper endpoint.

Connectivity Issues

  1. You can run the adapter troubleshooting script which will check connectivity, run the healthcheck and run basic get calls.
npm run troubleshoot
  1. Verify the adapter properties are set up correctly.
Go into the Itential Platform GUI and verify/update the properties
  1. Verify there is connectivity between the Itential Platform Server and Tapi Server.
ping the ip address of Tapi server
try telnet to the ip address port of Tapi
execute a curl command to the other system
  1. Verify the credentials provided for Tapi.
login to Tapi using the provided credentials
  1. Verify the API of the call utilized for Tapi Healthcheck.
Go into the Itential Platform GUI and verify/update the properties

Functional Issues

Adapter logs are located in /var/log/pronghorn. In older releases of the Itential Platform, there is a pronghorn.log file which contains logs for all of the Itential Platform. In newer versions, adapters can be configured to log into their own files.