blob: 5fcedf0c1bef08c1983d18ca3999d3dc991ce8aa [file] [log] [blame]
Andy Bavier63408b72018-01-23 16:12:07 -08001{#
2Copyright 2017-present Open Networking Foundation
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15#}
16
17
18tosca_definitions_version: tosca_simple_yaml_1_0
19
20imports:
Andy Bavier63408b72018-01-23 16:12:07 -080021 - custom_types/internetemulatorservice.yaml
22 - custom_types/internetemulatorserviceinstance.yaml
23
24description: configure an internetemulatorserviceinstance
25
26topology_template:
27 node_templates:
28
29 internetemulator:
30 type: tosca.nodes.InternetEmulatorService
31 properties:
32 name: internetemulator
33 must-exist: true
34
35 internetemulator_serviceinstance:
36 type: tosca.nodes.InternetEmulatorServiceInstance
37 properties:
38 name: VLC video server
39 requirements:
40 - owner:
41 node: internetemulator
42 relationship: tosca.relationships.BelongsToOne