/* * * Copyright 2016-2017 RIFT.IO Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * */ /** * @file rw-launchpad.yang * @author Joshua Downer * @date 2015/09/14 * @brief Launchpad Yang */ module rw-launchpad { namespace "http://riftio.com/ns/riftware-1.0/rw-launchpad"; prefix "rw-launchpad"; import ietf-yang-types { prefix "yang"; } import ietf-inet-types { prefix "inet"; } import rw-cli-ext { prefix "rwcli"; } import rw-yang-types { prefix "rwt"; } import rwcal { prefix "rwcal"; } import rw-project-vnfd { prefix "rw-project-vnfd"; } import vld { prefix "vld"; } import rw-project-nsd { prefix "rw-project-nsd"; } import rw-cloud { prefix "rw-cloud"; } import rw-nsr { prefix "rw-nsr"; } import rw-conman { prefix "rw-conman"; } import rw-config-agent { prefix "rw-config-agent"; } import rw-monitor { prefix "rw-monitor"; } import rw-image-mgmt { prefix "rw-image-mgmt"; } import rw-pkg-mgmt { prefix "rw-pkg-mgmt"; } import mano-types { prefix "manotypes"; } import rw-project { prefix "rw-project"; } import rw-project-mano { prefix "rw-project-mano"; } import rw-ro-account { prefix "rw-ro-account"; } revision 2017-02-08 { description "Update model to support projects."; } revision 2015-09-14 { description "Initial revision."; } augment "/rw-project:project" { container launchpad-config { leaf public-ip { description "An IP address that can, at least, be reached by the host that the launchpad is running on. This is not a mandatory but is required for alarms to function correctly."; type string; } } } }