diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-24 13:41:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-24 13:41:00 +0000 |
commit | 45aff8e68c44ffe66af8670425636fa49dfa2597 (patch) | |
tree | 55476110f92b91700bcd42d5b8643b2027b06fae /docs | |
parent | 4b046298cfa4f6c967add9e134eb136ad77ff704 (diff) | |
parent | f0af50cc7ea67a0eea1ed4587ba0f75befe2ea36 (diff) |
Merge "Doc Complex type code"
Diffstat (limited to 'docs')
-rw-r--r-- | docs/datadictionary/create_netbox_ip_address.rst | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/datadictionary/create_netbox_ip_address.rst b/docs/datadictionary/create_netbox_ip_address.rst new file mode 100644 index 000000000..5d9a9be87 --- /dev/null +++ b/docs/datadictionary/create_netbox_ip_address.rst @@ -0,0 +1,36 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. http://creativecommons.org/licenses/by/4.0 +.. Copyright (C) 2019 IBM. + +create_netbox_ip_address code +============================= + +{ + "tags" : "oam-local-ipv4-address", + "name" : "create_netbox_ip", + "property" : { + "description" : "netbox ip", + "type" : "dt-netbox-ip" + }, + "updated-by" : "adetalhouet", + "sources" : { + "primary-config-data" : { + "type" : "source-rest", + "properties" : { + "type" : "JSON", + "verb" : "POST", + "endpoint-selector" : "ipam-1", + "url-path" : "/api/ipam/prefixes/$prefixId/available-ips/", + "path" : "", + "input-key-mapping" : { + "prefixId" : "prefix-id" + }, + "output-key-mapping" : { + "address" : "address", + "id" : "id" + }, + "key-dependencies" : [ "prefix-id" ] + } + } + } + }
\ No newline at end of file |