Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
*
* Copyright 2018 CTTC
* Copyright 2018 Telefonica Investigacion y Desarrollo S.A.U.
*
* 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.
*
*
*/
module instantiation-parameters {
//header information
yang-version 1;
namespace "urn:etsi:osm:yang:instantiation-parameters";
prefix "instantiation-parameters";
import nsd {
prefix "nsd";
}
import vnfd {
prefix "vnfd";
}
import ietf-inet-types {
prefix "inet";
}
import ietf-yang-types {
prefix "ietf-yang";
}
//revision history
revision 2018-09-14 {
description "Initial version";
}
grouping ns_params {
leaf vimAccountId {
mandatory true;
type string;
}
leaf ssh_keys {
type string;
}
list vnf {
key "member-vnf-index";
uses vnf_params;
}
list vld {
key "name";
uses vld_params;
}
}
grouping vnf_params {
leaf member-vnf-index{
mandatory true;
type string;
}
leaf vimAccountId {
type string;
}
list vdu {
key "id";
uses vdu_params;
}
list internal-vld {
key "name";
uses internal_vld_params;
}
}
grouping vld_common_params {
leaf name {
type string;
}
leaf vim-network-name {
type string;
}
container ip-profile {
uses ip-profile-update-schema;
}
}
grouping vld_params {
uses vld_common_params;
list vnfd-connection-point-ref {
key "member-vnf-index-ref vnfd-connection-point-ref";
leaf member-vnf-index-ref {
type leafref {
//path "../../../vnf/member-vnf-index";
path "/nsd:nsd-catalog/nsd:nsd/nsd:constituent-vnfd/nsd:member-vnf-index";
}
}
leaf vnfd-connection-point-ref {
type leafref {
path "/vnfd:vnfd-catalog/vnfd:vnfd/vnfd:connection-point/vnfd:name";
}
}
leaf ip-address{
type inet:ip-address;
}
}
}
grouping vdu_params {
leaf id {
mandatory true;
type string;
}
list volume {
key "name";
leaf name {
mandatory true;
type string;
}
leaf vim-volume-id {
mandatory true;
type string;
}
}
list interface {
key "name";
leaf name {
mandatory true;
type string;
}
leaf ip-address {
type inet:ip-address;
}
leaf mac-address {
type ietf-yang:mac-address;
}
leaf floating-ip-required {
type boolean;
}
}
}
grouping internal_vld_params {
leaf name {
mandatory true;
type string;
}
leaf vim-network-name {
type string;
}
container ip-profile {
uses ip-profile-update-schema;
}
list internal-connection-point {
key "id-ref";
leaf id-ref {
mandatory true;
type string;
}
leaf ip-address{
type inet:ip-address;
}
}
}
grouping ip-profile-update-schema { //each leaf/list is either null or something
leaf ip-version {
type inet:ip-version;
}
leaf subnet-address {
type inet:ip-prefix;
}
leaf gateway-address {
type inet:ip-address;
}
list dns-server {
key "address";
leaf address {
mandatory true;
type inet:ip-address;
}
}
container dhcp-params {
leaf enabled {
type boolean;
}
leaf count {
type uint8; // >=1
}
leaf start-address {
type inet:ip-address;
}
}
}
}