etsi-nfv-vnf.yang 117 KB
Newer Older
1
submodule etsi-nfv-vnf {
2
  yang-version 1.1;
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
3
  belongs-to etsi-nfv-descriptors {
4
5
6
    prefix nfv;
  }

7
8
  include etsi-nfv-common;

9
10
11
12
13
14
15
16
17
18
  import ietf-inet-types {
    prefix inet;
  }
  import ietf-yang-types {
    prefix yang;
  }

  description
    "Models for VNFD according to GS NFV-IFA 011.";

19
  revision 2020-06-10 {
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
20
    description
21
      "Version 3.3.1.
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
22

23
24
       Data structures to support VNFD according to
       ETSI GS NFV-IFA 011 Release 3.";
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
25
26
  }

27
28
29
30
31
32
33
  revision 2020-06-01 {
    description
      "Version 2.8.1.

       VNFD according to ETSI GS NFV-IFA 011 271.";
  }

Mahesh Jethanandani's avatar
Bug#251    
Mahesh Jethanandani committed
34
35
36
37
  revision 2019-10-01 {
    description
      "Version 2.7.1.

Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
38
       Data structures to support VNFD according to:
Mahesh Jethanandani's avatar
Bug#251    
Mahesh Jethanandani committed
39
40
       ETSI GS NFV-IFA 011 Ed271v264";
  }
41

42
  revision 2019-03-18 {
43
44
45
    description
      "Initial revision.

Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
46
47
       Data structure to support VNFD according to:
       ETSI GS NFV-IFA 011 Ed261v254";
48
49

    reference
50
      "ETSI GS NFV-IFA 011 Ed261v254";
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
  }

  grouping virtual-network-interface-requirements {
    list virtual-network-interface-requirement {
      key "name";
      description
        "Specifies requirements on a virtual network interface
         realising the CPs instantiated from this CPD.";
      reference
        "GS NFV-IFA011: Section 7.1.6.4, VduCpd information
         element";

      leaf name {
        type string;
        description
          "Provides a human readable name for the requirement.";
        reference
          "GS NFV-IFA011: Section 7.1.6.6,
           VirtualNetworkInterfaceRequirements information element";
      }
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
71

72
73
74
75
76
77
78
79
      leaf description {
        type string;
        description
          "Provides a human readable description of the requirement.";
        reference
          "GS NFV-IFA011: Section 7.1.6.6,
           VirtualNetworkInterfaceRequirements information element";
      }
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
80

81
      leaf support-mandatory {
82
        status "deprecated";
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
83
        default "false";
84
85
86
87
88
89
90
91
92
        type boolean;
        description
          "Indicates whether fulfilling the constraint is
           mandatory (true) for successful operation or desirable
           (false).";
        reference
          "GS NFV-IFA011: Section 7.1.6.6,
           VirtualNetworkInterfaceRequirements information element";
      }
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
93

94
95
      list network-interface-requirements {
        key "key";
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
96
        min-elements "1";
97
        max-elements "1";
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
98

99
100
101
102
103
104
105
106
107
108
109
110
111
112
        leaf key {
          type string;
        }
        leaf value {
          type string;
        }
        description
          "The network interface requirements. An element from an
           array of key-value pairs that articulate the network
           interface deployment requirements.";
        reference
          "GS NFV-IFA011: Section 7.1.6.6,
           VirtualNetworkInterfaceRequirements information element";
      }
Mahesh Jethanandani's avatar
Issue#3    
Mahesh Jethanandani committed
113
114
115
116
117
118
119
120
121
122
123
124
125
126

      leaf nic-io-requirements {
	type leafref {
          path "/nfv:nfv/nfv:vnfd/nfv:virtual-compute-desc/" +
	       "nfv:logical-node/nfv:id";
	}
	description
	  "This references (couples) the CPD with any logical node
           I/O requirements (for network devices) that may have been
           created. Linking these attributes is necessary so that I/O
           requirements that need to be articulated at the logical
           node level can be associated with the network interface
           requirements associated with the CPD.";
        reference
127
128
129
130
131
132
          "GS NFV-IFA011: Section 7.1.6.6,
           VirtualNetworkInterfaceRequirements information element";
      }
    }
  }

Mahesh Jethanandani's avatar
Issue#2    
Mahesh Jethanandani committed
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
  grouping block-storage-data {
    leaf size-of-storage {
      type uint64;
      units "GB";
      default 0;
      description
        "Size of virtualized storage resource in GB.";
      reference
        "GS NFV IFA011: Section 7.1.9.4.3, BlockStorageData
             Information element.";
    }

    list vdu-storage-requirements {
      key "key";

      leaf key {
        type string;
      }

      leaf value {
        type string;
      }
      description
        "An array of key-value pairs that articulate
             the storage deployment requirements.";
      reference
        "GS NFV IFA011: Section 7.1.9.4.3, BlockStorageData
             Information element.";
    }

    leaf rdma-enabled {
      type boolean;
      description
        "Indicate if the storage support RDMA.";
      reference
        "GS NFV IFA011: Section 7.1.9.4.3, BlockStorageData
             Information element.";
    }

    leaf sw-image-desc {
      type leafref {
        path "../../../sw-image-desc/id";
      }
      must "../size-of-storage >=" +
        "../../../sw-image-desc[id=current()]/min-disk" {
      }
      description
        "Software image to be loaded on the VirtualStorage
             resource created based on this VirtualStorageDesc.
             Shall be absent when used for virtual disks.";
      reference
        "GS NFV IFA011: Section 7.1.9.4.3, BlockStorageData
             Information element.";
186
187
188
    }
  }

Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
189
190
191
192
193
194
195
196
  grouping vnf-local-affinity-or-anti-affinity-rule {
    list local-affinity-or-anti-affinity-rule {
      key "type scope";

      leaf type {
        type affinity-type;
        description
          "Specifies whether the rule is an affinity rule or an
197
198
199
200
           anti-affinity rule
           Values
             • affinity
             • anti-affinity.";
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
201
202
203
204
205
206
207
208
        reference
          "GS NFV IFA011: Section 7.1.8.11,
           LocalAffinityOrAntiAffinityRule information element.";
      }

      leaf scope {
        type affinity-scope;
        description
209
210
211
212
213
214
215
          "Specifies the scope of the rule.
           Values:
             • NFVI-PoP
             • Zone
             • ZoneGroup
             • NFVI-node
             • network-link-and-node.";
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
        reference
          "GS NFV IFA011: Section 7.1.8.11,
           LocalAffinityOrAntiAffinityRule information element.";
      }

      uses nfvi-maintenance-info {
        description
          "When present, provides information on the impact tolerance
           and rules to be observed when a group of instances based
           on the same VDU is impacted during NFVI operation and
           maintenance (e.g. NFVI resource upgrades).";
        reference
          "GS NFV IFA011: Section 7.1.8.11,
           LocalAffinityOrAntiAffinityRule information element.";
      }
    }
  }

234
  grouping vnfd {
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
    leaf id {
      type string;
      description
        "Identifier of this VNFD information element. This attribute
         shall be globally unique. The format will be defined in the
         data model specification phase.";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf provider {
      type string;
      mandatory true;
      description
        "Provider of the VNF and of the VNFD";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf product-name {
      type string;
      mandatory true;
      description
        "Name to identify the VNF Product. Invariant for the VNF
         Product lifetime.";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf software-version {
      type string;
      mandatory true;
      description
        "Software version of the VNF. This is changed when there is
         any change to the software that is included in the VNF
         Package";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf version {
      type string;
      mandatory true;
      description
        "Identifies the version of the VNFD";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf product-info-name {
      type string;
      description
        "Human readable name of the VNFD. Can change
         during the VNF Product lifetime.";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf product-info-description {
      type string;
      description
        "Human readable description of the VNFD. Can change during
         the VNF Product lifetime.";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf-list vnfm-info {
      type string;
      min-elements 1;
      description
        "Identifies VNFM(s) compatible with the VNF described in
         this version of the VNFD.";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    leaf localization-language {
      type string;
314
      description
315
        "Information about the language of the VNF.";
316
317
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
    }

    leaf default-localization-language {
      when "../localization-language";
      type string;
      description
        "Default localization language that is instantiated if no
         information about selected localization language is
         available. Shall be present if 'localization-language'
         is present and shall be absent otherwise.";
      reference
        "GS NFV-IFA011: Section 7.1.2, VNFD information element";
    }

    list vdu {
      key "id";
      min-elements 1;
      description
        "The Virtualisation Deployment Unit (VDU) is a construct supporting
         the description of the deployment and operational behaviour of a
         VNF component, or the entire VNF if it was not componentized in
         components.";
      reference
        "GS NFV IFA011: Section 7.1.2, VNFD information element";

343
344
345
      leaf id {
        type string;
        description
346
          "Unique identifier of this VDU in VNFD.";
347
        reference
348
          "GS NFV IFA011: Section 7.1.6.2, Vdu information element";
349
      }
350
351

      leaf name {
352
353
354
        type string;
        mandatory true;
        description
355
          "Human readable name of the VDU.";
356
        reference
357
          "GS NFV IFA011: Section 7.1.6.2, Vdu information element";
358
      }
359
360

      leaf description {
361
362
        type string;
        description
363
          "Human readable description of the VDU.";
364
        reference
365
          "GS NFV IFA011: Section 7.1.6.2, Vdu information element";
366
      }
367
368
369
370

      list int-cpd {
        key "id";
        min-elements 1;
371
        description
372
373
374
375
          "A internal-connection-point element is a type of
           connection point and describes network connectivity
           between a VDU instance and an internal Virtual Link or
           an external connection point.";
376
        reference
377
378
379
380
          "GS NFV IFA011: Section 7.1.6.2, Vdu information element";

        leaf int-virtual-link-desc {
          type leafref {
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
381
            path "/nfv:nfv/nfv:vnfd/nfv:int-virtual-link-desc/nfv:id";
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
          }
          description
            "Reference of the internal VLD which this internal CPD
             connects to.";
          reference
            "GS NFV IFA011: Section 7.1.6.4, VduCpd information
             element";
        }

        leaf bitrate-requirement {
          type uint64;
          units "Mbps";
          description
            "Bitrate requirement on this CP.";
          reference
            "GS NFV IFA011: Section 7.1.6.4, VduCpd information
             element.";
        }
        uses virtual-network-interface-requirements;

        leaf nicio-requirements {
          type leafref {
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
404
            path "/nfv:nfv/nfv:vnfd/nfv:virtual-compute-desc/nfv:id";
405
406
407
408
409
410
411
412
413
414
415
416
417
          }
          description
            "This references (couples) the CPD with any logical node I/O
             requirements (for network devices) that may have been
             created. Linking these attributes is necessary so that so
             that I/O requirements that need to be articulated at the
             logical node level can be associated with the network
             interface requirements associated with the CPD.";
          reference
            "GS NFV-IFA011: Section 7.1.6.6,
             VirtualNetworkInterfaceRequirements information element";
        }

jethanandani's avatar
jethanandani committed
418
        leaf order {
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
          type uint32;
          description
            "The order of the NIC to be assigned on the compute
             instance (e.g. 2 for eth2).

             Note: when binding more than one port to a single
             compute (aka multi vNICs) and ordering is desired, it
             is mandatory that all ports will be set with an order
             value. The order values shall represent a positive,
             arithmetic progression that starts with 0 (i.e. 0, 1,
             2,..., n).

             If the property is not present, it shall be left to the
             VIM to assign a value when creating the instance.";
          reference
            "GS NFV IFA011: Section 7.1.6.4, VduCpd information
             element.";
        }
jethanandani's avatar
jethanandani committed
437
438

        leaf vnic-type {
439
440
441
442
443
          type identityref {
            base vnic-type;
          }
          description
            "Describes the type of the virtual network interface
jethanandani's avatar
jethanandani committed
444
445
             realizing the CPs instantiated from this CPD. This is
             used to determine which mechanism driver(s) to be used
446
447
             to bind the port.
             Values:
jethanandani's avatar
jethanandani committed
448
449
450
451
452
453
454
455
456
457
458
             • NORMAL
             • VIRTIO
             • DIRECT
             • BAREMETAL
             • VIRTIO-FORWARDER
             • DIRECT-PHYSICAL
             • SMART-NIC";
          reference
            "GS NFV IFA011: Section 7.1.6.4, VduCpd information
             element.";
        }
459
460
461
462
463
464
465
466
467
468
469
470
        uses cpd;

        leaf security-group-rule-id {
          type leafref {
            path "../../../security-group-rule/id";
          }
          description
            "Reference of the security group rules bound to this
             CPD.";
          reference
            "GS NFV IFA011: Section 7.1.6.3 Cpd information element";
        }
471
      }
472
473
474
475
476
477
478
479
480
481

      leaf virtual-compute-desc {
        type leafref {
          path "../../virtual-compute-desc/id";
        }
        must "../../virtual-compute-desc[id=current()]/" +
             "virtual-memory/size >=" +
             "../../sw-image-desc[id=current()/" +
             "../sw-image-desc]/min-ram" {
        }
482
        description
483
484
          "Describes CPU, Memory and acceleration requirements of
           the Virtualisation Container realizing this VDU.";
485
        reference
486
487
488
          "GS NFV IFA011: Section 7.1.6.2, VDU information
           element, and Section 7.1.9.2.2, VirtualComputeDesc
           information element.";
489
      }
490
491
492
493
494

      leaf-list virtual-storage-desc {
        type leafref {
          path "../../virtual-storage-desc/id";
        }
495
        description
496
497
498
          "Describes storage requirements for a VirtualStorage
           instance attached to the virtualisation container
           created from virtualComputeDesc defined for this VDU.";
499
        reference
500
501
502
          "GS NFV IFA011: Section 7.1.6.2, VDU information
           element, and Section 7.1.9.4, Information elements
           related to Virtual Storage.";
503
      }
504
505
506
507
508
509
510
511
512
513
514
515
516
517

      list boot-order {
        ordered-by user;
        key "key";

        leaf key {
          type uint32;
        }

        leaf value {
          type leafref {
            path "../../virtual-storage-desc";
          }
        }
518
        description
519
520
521
522
523
524
525
526
          "The key indicates the boot index (lowest index defines
           highest boot priority). The Value references a descriptor
           from which a valid boot device is created e.g.
           VirtualStorageDesc from which a VirtualStorage instance
           is created.

           Editor's note: The boot-order node requires further
           study.";
527
        reference
528
529
          "GS NFV IFA011: Section 7.1.6.2, Vdu information
           element.";
530
      }
531
532
533
534
535

      leaf sw-image-desc {
        type leafref {
          path "../../sw-image-desc/id";
        }
536
        description
537
538
          "Describes the software image which is directly loaded on
           the virtualisation container realising this Vdu.";
539
        reference
540
541
          "GS NFV IFA011: Section 7.1.6.2, Vdu information
           element.";
542
      }
543
544

      leaf-list nfvi-constraint {
545
546
        type string;
        description
547
548
549
550
          "Describes constraints on the NFVI for the VNFC
           instance(s) created from this Vdu. For example, aspects
           of a secure hosting environment for the VNFC instance
           that involve additional entities or processes.";
551
        reference
552
553
          "GS NFV IFA011: Section 7.1.6.2, VDU Information
           element.";
554
      }
555

556
      list monitoring-parameter {
557
558
559
560
        key "id";
        leaf id {
          type string;
          description
561
            "Unique identifier of the monitoring parameter.";
562
          reference
563
564
            "GS NFV IFA011: Section 7.1.11.3, MonitoringParameter
             information element.";
565
        }
566
567
568
569
570
571
        uses monitoring-parameter;
      }

      list configurable-properties {
        key "key";
        leaf key {
572
573
          type string;
        }
574
        leaf value {
575
576
          type string;
        }
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
        description
          "It provides VNFC configurable properties that can be
           modified using the ModifyVnfInfo operation.";
        reference
          "GS NFV IFA011: Section 7.1.6.7,
           VnfcConfigurableProperties Information element.";
      }

      leaf boot-data {
        type string;
        description
          "Contains a string or a URL to a file contained in the
           VNF package used to customize a virtualised compute
           resource at boot time. The bootData may contain variable
           parts that are replaced by deployment specific values
           before being sent to the VIM.";
        reference
          "GS NFV IFA011: Section 7.1.6.7,
           VnfcConfigurableProperties Information element.";
      }
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612

      list trunk-port {
        key "parent-port-cpd";
        description
          "Specifies the logical topology between an intCpd in
           trunk mode, used to describe a trunk port, and other
           intCpds used to describe subports of the same trunk.

           Cardinality 0 is used when there is no intCpd with
           trunkmode = True, or when no individual intCpds to
           describe the subports are included in the Vdu.";
        reference
          "GS NFV IFA011: Section 7.1.6.2, Vdu information element";

        leaf parent-port-cpd {
          type leafref {
613
            path "../../int-cpd/id";
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
          }
          description
            "Reference of the internal VDU CPD which is used to
             instantiate the parent port in a logical trunk model.";
          reference
            "GS NFV IFA011: Section 7.1.6.11, Information elements
             related to TrunkPort Topology.";
        }
        leaf segmentation-type {
          default "vlan";
          type enumeration {
            enum "vlan";
            enum "inherit";
          }
          description
            "Specifies the encapsulation type for the traffics
             coming in and out of the trunk subport.
             Values:
             •  VLAN: the subport uses VLAN as encapsulation type.
             •  INHERIT: the subport gets its segmentation type
                from the network it’s connected to.

             Cardinality 0 means default value VLAN is used.";
          reference
            "GS NFV IFA011: Section 7.1.6.11, Information elements
             related to TrunkPort Topology.";
        }

        list sub-port-list {
          key "sub-port-cpd";
          description
            "Provides information used for the subport.";
          reference
            "GS NFV IFA011: Section 7.1.6.11, Information elements
             related to subport of a trunk parent port.";

          leaf sub-port-cpd{
            type leafref {
652
              path "../../../int-cpd/id";
653
654
655
656
657
658
659
660
661
            }
          description
            "Reference of the internal VDU CPD which is used
             to instantiate the subport in a logical trunk model.";
          reference
            "GS NFV IFA011: Section 7.1.6.12, Information elements
             related to subport of a trunk parent port.";
          }
          leaf segmentation-id {
662
            type uint32;
663
664
665
666
667
668
669
670
671
672
673
674
675
            description
              "Specifies the segmentation ID for the subport, which is
               used to differentiate the traffics on different networks
               coming in and out of the trunk port. If a value is provided
               here it may be overridden by a value provided at run time
               when the infrastructure doesn’t support mapping of
               segmentation IDs.";
            reference
              "GS NFV IFA011: Section 7.1.6.12, Information elements
               related to subport of a trunk parent port.";
          }
        }
      }
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
    }

    list virtual-compute-desc {
      key "id";
      description
        "Defines descriptors of virtual compute resources to be
         used by the VNF.";
      leaf id {
        type string;
        description
          "Unique identifier of this VirtualComputeDesc in the
           VNFD.";
        reference
          "GS NFV IFA011: Section 7.1.9.2, Information elements
           related to Virtual CPU.";
      }

      list logical-node {
        key "id";

        leaf id {
          type string;
698
          description
699
            "Identifies this set of logical node requirements.";
700
          reference
701
702
703
            "GS NFV IFA011: Section 7.1.9.6, LogicalNodeRequirements
             Information elements.";
        }
704

705
706
        list requirement-detail {
          key "key";
707
          min-elements 1;
Mahesh Jethanandani's avatar
Mahesh Jethanandani committed
708

709
710
          leaf key {
            type string;
711
          }
712
713
714

          leaf value {
            type string;
715
          }
716
          description
717
718
719
720
721
722
723
724
725
726
            "The logical node-level compute, memory and I/O
             requirements. An array of key-value pairs that
             articulate the deployment requirements.

             This could include the number of CPU cores on this
             logical node, a memory configuration specific to a
             logical node (e.g. such as available in the Linux
             kernel via the libnuma library) or a requirement
             related to the association of an I/O device with the
             logical node.";
727
          reference
728
            "GS NFV IFA011: Section 7.1.9.6, LogicalNodeRequirements
729
730
             information element.";
        }
731
732
733
734
735
736
        description
          "The logical node requirements.";
        reference
          "GS NFV IFA011: Section 7.1.9.2, VirtualComputeDesc
           information element.";
      }
737

738
739
740
741
742
      list request-additional-capability {
        key "name";

        leaf name {
          type string;
743
          description
744
745
746
            "Identifies a requested additional capability for the
             VDU. ETSI GS NFV-IFA 002 [i.1] describes acceleration
             capabilities.";
747
          reference
748
749
            "GS NFV IFA011: Section 7.1.9.5,
             RequestedAdditionalCapabilityData Information element.";
750
        }
751

752
753
754
755
756
        leaf support-mandatory {
          type boolean;
          description
            "Indicates whether the requested additional capability
             is mandatory for successful operation.";
757
          reference
758
759
            "GS NFV IFA011: Section 7.1.9.5,
             RequestedAdditionalCapabilityData Information
760
             element.";
761
        }
762
763
764

        leaf min-version {
          type string;
765
          description
766
767
            "Identifies the minimum version of the requested
             additional capability.";
768
          reference
769
770
            "GS NFV IFA011: Section 7.1.9.5,
             RequestedAdditionalCapabilityData Information element.";
771
        }
772
773

        leaf preferred-version {
774
775
          type string;
          description
776
777
            "Identifies the preferred version of the requested
             additional capability.";
778
          reference
779
780
            "GS NFV IFA011: Section 7.1.9.5,
             RequestedAdditionalCapabilityData Information element.";
781
        }
782
783

        list target-performance-parameters {
784
          key "key";
785

786
787
788
          leaf key {
            type string;
          }
789

790
791
792
          leaf value {
            type string;
          }
793
          description
794
795
            "Identifies specific attributes, dependent on the
             requested additional capability type.";
796
          reference
797
798
            "GS NFV IFA011: Section 7.1.9.5,
             RequestedAdditionalCapabilityData Information element.";
799
800
        }
      }
801

802
803
      leaf compute-requirements {
        type string;
804
        description
805
806
807
808
809
          "Specifies compute requirements.";
        reference
          "GS NFV IFA011: Section 7.1.9.2.2, VirtualComputeDesc
           Information element.";
      }
810

811
812
813
814
815
      container virtual-memory {
        leaf size {
          type decimal64 {
            fraction-digits 1;
            range "0..max";
816
          }
817
818
819
820
821
822
823
824
          units "GB";
          default 1;
          description
            "Amount of virtual memory in GB.";
          reference
            "GS NFV IFA011: Section 7.1.9.3, Information elements
             related to Virtual Memory.";
        }
825

826
827
        leaf over-subscription-policy {
          type string;
828
          description
829
830
831
832
            "The memory core oversubscription policy in terms of
             virtual memory to physical memory on the platform.
             The cardinality can be 0 during the allocation
             request, if no particular value is requested.";
833
          reference
834
835
            "GS NFV IFA011: Section 7.1.9.3, Information elements
             related to Virtual Memory.";
836
837
        }

838
839
        list vdu-mem-requirements {
          key "key";
840

841
          leaf key {
842
843
844
            type string;
          }

845
          leaf value {
846
847
            type string;
          }
848
849
850
851
852
853
          description
            "Array of key-value pair requirements on the memory for
             the VDU.";
          reference
            "GS NFV IFA011: Section 7.1.9.3.2, VirtualMemoryData
             information element.";
854
855
        }

856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
        leaf numa-enabled {
          type boolean;
          description
            "It specifies the memory allocation to be cognisant of
             the relevant process/core allocation. The cardinality
             can be 0 during the allocation request, if no
             particular value is requested.";
          reference
            "GS NFV IFA011: Section 7.1.9.3, Information elements
             related to Virtual Memory.";
        }
        description
          "The virtual memory of the virtualised compute.";
        reference
          "GS NFV IFA011: Section 7.1.9.2.2, VirtualComputeDesc
           Information element.";
      }

      container virtual-cpu {
        description
          "The virtual CPU(s)of the virtualised compute.";
        reference
          "GS NFV IFA011: Section 7.1.9.2.2, VirtualComputeDesc
           Information element.";

        leaf cpu-architecture {
882
883
          type string;
          description
884
885
886
            "CPU architecture type. Examples are x86, ARM. The
             cardinality can be 0 during the allocation request,
             if no particular CPU architecture type is requested.";
887
          reference
888
889
            "GS NFV IFA011: Section 7.1.9.2.3, VirtualCpuData
             information elements.";
890
891
        }

892
893
894
        leaf num-virtual-cpu {
          type uint16 {
            range "1..max";
895
          }
896
897
898
899
900
901
902
          default 1;
          description
            "Number of virtual CPUs.";
          reference
            "GS NFV IFA011: Section 7.1.9.2.3, VirtualCpuData
             information elements.";
        }
903

904
905
906
        leaf clock {
          type uint32;
          units "MHz";
907
          description
908
909
910
            "Minimum virtual CPU clock rate (e.g. in MHz). The
             cardinality can be 0 during the allocation request,
             if no particular value is requested.";
911
          reference
912
913
            "GS NFV IFA011: Section 7.1.9.2.3, VirtualCpuData
             information elements.";
914
        }
915
916
917

        leaf oversubscription-policy {
          type string;
918
          description
919
920
921
922
            "The CPU core oversubscription policy e.g. the relation
             of virtual CPU cores to physical CPU cores/threads.
             The cardinality can be 0 during the allocation request,
             if no particular value is requested.";
923
          reference
924
925
926
927
928
929
            "GS NFV IFA011: Section 7.1.9.2.3, VirtualCpuData
             information elements.";
        }

        list vdu-cpu-requirements {
          key "key";
930

931
          leaf key {
932
933
            type string;
          }
934
935

          leaf value {
936
            type string;
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
          }
          description
            "Array of key-value pair requirements on the compute
             (CPU) for the VDU.";
          reference
            "GS NFV IFA011: Section 7.1.9.3.2, VirtualCpuData
             information element.";
        }

        container pinning {
          presence "Set to specify CPU pinning.";

          leaf policy {
            default "dynamic";
            type enumeration {
              enum "static";
              enum "dynamic";
            }
955
            description
956
957
958
959
              "Indicates the policy for CPU pinning.
               Values:
                 • static
                 • dynamic
960
961
962
963
964
965
966
               In case of 'static' the virtual CPU cores are
               requested to be allocated to logical CPU cores
               according to the rules defined in
               virtualCpuPinningRules. In case of 'dynamic' the
               allocation of virtual CPU cores to logical CPU cores
               is decided by the VIM. (e.g. SMT (Simultaneous
               MultiThreading) requirements).";
967
            reference
968
969
              "GS NFV IFA011: Section 7.1.9.2.4,
               VirtualCpuPinningData information element.";
970
          }
971
972
973

          list rule {
            when "../policy = 'static'";
974
            key "key";
975

976
977
978
979
980
981
982
            leaf key {
              type string;
            }
            leaf value {
              type string;
            }
            description
983
              "List of rules that should be considered during the
984
985
               allocation of the virtual CPUs to logical CPUs in case
               of 'static' virtualCpuPinningPolicy.";
986
            reference
987
988
              "GS NFV IFA011: Section 7.1.9.2.4,
               VirtualCpuPinningData information element.";
989
          }
990
991
992
993
994
995
996
997
          description
            "The virtual CPU pinning configuration for the
             virtualised compute resource.";
          reference
            "GS NFV IFA011: Section 7.1.9.2.3,
             VirtualCpuData information element.";
        }
      }
Mahesh Jethanandani's avatar
Issue#2    
Mahesh Jethanandani committed
998
999
1000

      list virtual-disk {
	key "id";
For faster browsing, not all history is shown. View entire blame