SOL005NSLifecycleManagement_def.yaml 125 KB
Newer Older
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
  UpdateVnffgData:
     description: >
       This type specifies the parameters used for the update of an existing VNFFG instance. 
       It shall comply with the provisions defined in Table 6.5.3.37-1.
     type: object
     required:
       - vnffgInfoId
     properties:
       vnffgInfoId:
         description: >
           Identifier of an existing VNFFG to be updated for the NS Instance.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNs"
       nfp:
         description: >
           Indicate the desired new NFP(s) for a given VNFFG
           after the operations of addition/removal of NS
           components (e.g. VNFs, VLs, etc.) have been
           completed, or indicate the updated or newly created
           NFP classification and selection rule which applied to an existing NFP.
         type: array
         items:           
           $ref: "#/definitions/NfpData"
       nfpInfoId:
         description: >
           Identifier(s) of the NFP to be deleted from a given VNFFG.
         type: array
         items:           
           $ref: "SOL005_def.yaml#/definitions/IdentifierInNs"

  NfpData:
     description: >
       This type contains information used to create or modify NFP instance parameters 
       for the update of an existing VNFFG instance. 
       It shall comply with the provisions defined in Table 6.5.3.38-1.
     type: object      
     properties:
       nfpInfoId:
         description: >
           Identifier of the NFP to be modified. It shall be present
           for modified NFPs and shall be absent for the new NFP.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNs"
       nfpName:
         description: >
           Human readable name for the NFP. It shall be present
           for the new NFP, and it may be present otherwise.
         type: string
       description:
         description: >
           Human readable description for the NFP. It shall be
           present for the new NFP, and it may be present otherwise.
         type: string
       nsCpHandle:
         description: >
           Identifier(s) of the CPs and SAPs which the NFP passes by. 
           Cardinality can be 0 if only updated or newly created
           NFP classification and selection rule which applied to an
           existing NFP is provided.
         type: array
         items:           
           $ref: "#/definitions/NsCpHandle"
       nfpRule:
         description: >
           NFP classification and selection rule. See note 1.
         $ref: "#/definitions/NfpRule"

  NfpRule:
     description: >
       The NfpRule data type is an expression of the conditions that shall be met 
       in order for the NFP to be applicable to the packet. The condition acts as a flow classifier and 
       it is met only if all the values expressed in the condition are matched
       by those in the packet. It shall comply with the provisions defined in Table 6.5.3.40-1.
     type: object    
     properties:
       etherDestinationAddress:
         description: >
           Indicates a destination Mac address.
         $ref: "SOL005_def.yaml#/definitions/MacAddress"
       etherSourceAddress:
         description: >
           Indicates a source Mac address.
         $ref: "SOL005_def.yaml#/definitions/MacAddress"
       etherType:
         description: >
           Human readable description for the VNFFG.
         type: string
         enum: 
           - IPV4
           - IPV6
       vlanTag:
         description: >
           Indicates a VLAN identifier in an IEEE 802.1Q-2014 
           tag [6] Multiple tags can be included for QinQ stacking. See note.
         type: array
         items:           
           $ref: "SOL005_def.yaml#/definitions/String"
       protocol:
         description: >
           Indicates the L4 protocol, For IPv4 [7] this
           corresponds to the field called "Protocol" to identify
           the next level protocol. For IPv6 [28] this
           corresponds to the field is called the "Next Header" field.
           Permitted values: Any keyword defined in the IANA
           protocol registry [1], e.g.:
           TCP
           UDP
           ICMP
         type: string
         enum: 
           - TCP
           - UDP
           - ICMP           
       dscp:
         description: >
           For IPv4 [7] a string of "0" and "1" digits that
           corresponds to the 6-bit Differentiated Services
           Code Point (DSCP) field of the IP header.
           For IPv6 [28] a string of "0" and "1" digits that
           corresponds to the 6 differentiated services bits of
           the traffic class header field
         type: string
       sourcePortRange:
         description: >
           Indicates a range of source ports
         $ref: "SOL005_def.yaml#/definitions/PortRange"
       destinationPortRange:
         description: >
           Indicates a range of destination ports.
         $ref: "SOL005_def.yaml#/definitions/PortRange"
       sourceIpAddressPrefix:
         description: >
           Indicates the source IP address range in CIDR format.
         $ref: "SOL005_def.yaml#/definitions/IpAddressPrefix"         
       destinationIpAddressPrefix:
         description: >
           Indicates the destination IP address range in CIDR format.
         $ref: "SOL005_def.yaml#/definitions/IpAddressPrefix"
       extendedCriteria:
         description: >
           Indicates values of specific bits in a frame.
         type: array
         items:           
           $ref: "SOL005_def.yaml#/definitions/Mask"
           
  ChangeNsFlavourData:
     description: >
       This type specifies an existing NS instance for which the DF needs to be changed. 
       This specifies the new DF, the instantiationLevel of the new DF that may be used and 
       the additional parameters as input for the flavour change. 
       It shall comply with the provisions defined in Table 6.5.3.39-1.
     type: object
     required:
       - newNsFlavourId    
     properties:
       newNsFlavourId:
         description: >
           Identifier of an existing VNFFG to be updated for the NS Instance.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
       instantiationLevelId:
         description: >
           Identifier of the instantiation level of the deployment flavour to be instantiated. 
           If not present, the default instantiation level as declared in the NSD is instantiated.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"

  AddPnfData:
     description: >
       This type specifies an PNF to be added to the NS instance and the PNF Profile 
       to use for this PNF. It shall comply with the provisions defined in Table 6.5.3.14-1.
     type: object
     required:
       - pnfId
       - pnfName
       - pnfdId  
       - pnfProfileId       
     properties:
       pnfId:
         description: >
           Identifier of the PNF. This identifier is allocated by the OSS/BSS.
         $ref: "SOL005_def.yaml#/definitions/Identifier"
       pnfName:
         description: >
           Name of the PNF
         type: string
       pnfdId:
         description: >
           Identifier of the PNFD on which the PNF is based.
         $ref: "SOL005_def.yaml#/definitions/Identifier" 
       pnfProfileId:
         description: >
           Identifier of related PnfProfile in the NSD on which the PNF is based.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd" 
       cpData:
         description: >
           Address assigned for the PNF external CP(s).
         type: array
         items:           
           $ref: "#/definitions/PnfExtCpData"
         
  PnfExtCpData:
     description: >
       This type represents the configuration data on the external CP of the PNF. 
       It shall comply with the provisions defined in
       Table 6.5.3.16-1.
     type: object
     required:
       - cpProtocolData
     properties:
       cpInstanceI16:
         description: >
           Identifier of the CP. Shall be present for existing CP. 
         $ref: "SOL005_def.yaml#/definitions/IdentifierInPnf"
       cpdId:
         description: >
           Identifier of the Connection Point Descriptor (CPD) for this CP. Shall be present for new CP.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
       cpProtocolData:
         description: >
           Address assigned for this CP.
         type: array
         items:           
           $ref: "SOL005_def.yaml#/definitions/CpProtocolData"
           
  ModifyPnfData:
     description: >
       This type specifies an PNF to be modified in the NS instance. 
       It shall comply with the provisions defined in
       Table 6.5.3.15-1.
     type: object
     required:
       - pnfId
     properties:
       pnfId:
         description: >
           Identifier of the PNF. This identifier is allocated by the OSS/BSS. 
         $ref: "SOL005_def.yaml#/definitions/Identifier"
       pnfName:
         description: >
           Name of the PNF.
         type: string
       cpData:
         description: >
           Address assigned for the PNF external CP(s).
         type: array
         items:           
           $ref: "#/definitions/PnfExtCpData"
           
  AffectedVirtualLink:
     description: >
       This type provides information about added, deleted, modified and
       temporary VLs.
     type: object
     required:
       - id
       - virtualLinkDescId
       - changeType
       - networkResource
     properties:
       id: 
         description: >
           Identifier of the virtual link instance, identifying the applicable
           "vnfVirtualLinkResourceInfo" entry in the "VnfInstance" data type.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInVnf"
       virtualLinkDescId:
         description: >
           Identifier of the related VLD in the VNFD.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInVnfd"
       changeType:
         description: >
           Signals the type of change. Permitted values:
           * ADDED
           * REMOVED
           * MODIFIED
           * TEMPORARY
           * LINK_PORT_ADDED
           * LINK_PORT_REMOVED
           For a temporary resource, an AffectedVirtualLink structure exists as
           long as the temporary resource exists.
         type: string
         enum:
           - ADDED
           - REMOVED
           - MODIFIED
           - TEMPORARY
           - LINK_PORT_ADDED
           - LINK_PORT_REMOVED
       networkResource:
         description: >
           Reference to the VirtualNetwork resource. Detailed information is
           (for new and modified resources) or has been (for removed
           resources) available from the VIM.
         $ref: "SOL005_def.yaml#/definitions/ResourceHandle"
       metadata:
         description: >
           Metadata about this resource.
           The content of this attribute shall be a copy of the content of the
           "metadata" attribute of the VnfVirtualLinkResourceInfo structure.
         $ref: "SOL005_def.yaml#/definitions/KeyValuePairs"

  AffectedVirtualStorage:
     description: >
       This type provides information about added, deleted, modified and
       temporary virtual storage resources.
     type: object
     required:
       - id
       - virtualStorageDescId
       - changeType
       - storageResource
     properties:
       id:
         description: >
           Identifier of the storage instance, identifying the applicable
           "virtualStorageResourceInfo" entry in the "VnfInstance" data type.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInVnf"
       virtualStorageDescId:
         description: >
           Identifier of the related VirtualStorage descriptor in the VNFD.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInVnfd"
       changeType:
         description: >
           Signals the type of change. Permitted values:
           * ADDED
           * REMOVED
           * MODIFIED
           * TEMPORARY
           For a temporary resource, an AffectedVirtualStorage structure exists
           as long as the temporary resource exists.
         type: string
         enum:
           - ADDED
           - REMOVED
           - MODIFIED
           - TEMPORARY
       storageResource:
         description: >
           Reference to the VirtualStorage resource. Detailed information is 
           (for new and modified resources) or has been (for removed
           resources) available from the VIM.
         $ref: "SOL005_def.yaml#/definitions/ResourceHandle"
       metadata:
         description: >
           Metadata about this resource.
           The content of this attribute shall be a copy of the content of the
           "metadata" attribute of the VirtualStorageResourceInfo structure.
         $ref: "SOL005_def.yaml#/definitions/KeyValuePairs"
         
  AffectedVnf:
    description: >
      This type provides information about added, deleted and modified VNFs. 
      It shall comply with the provisions in Table 6.5.3.2-1.
    type: object
    required:
      - vnfInstanceId
      - vnfdId
      - vnfProfileId    
    properties:
      vnfInstanceId:
        description: >
          Identifier of the VNF instance. 
        $ref: "SOL005_def.yaml#/definitions/Identifier"
      vnfdId:
        description: >
          Identifier of the VNFD of the VNF Instance.
        $ref: "SOL005_def.yaml#/definitions/Identifier"
      vnfProfileId:
        description: >
          Identifier of the VNF profile of the NSD.
        $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
      vnfName:
        description: >
          Name of the VNF Instance.
        type: string
      changeType:
        description: >
          Signals the type of change
          Permitted values:
          - ADD
          - REMOVE
          - INSTANTIATE
          - TERMINATE
          - SCALE
          - CHANGE_FLAVOUR
          - HEAL
          - OPERATE
          - MODIFY_INFORMATION
          - CHANGE_EXTERNAL_VNF_CONNECTIVITY
        type: string
        enum:
          - ADD
          - REMOVE 
          - INSTANTIATE
          - TERMINATE
          - SCALE
          - CHANGE_FLAVOUR
          - HEAL
          - OPERATE           
          - MODIFY_INFORMATION
          - CHANGE_EXTERNAL_VNF_CONNECTIVITY
      changeResult:
        description: >
          Signals the result of change identified by the
          "changeType" attribute.
          Permitted values:
          - COMPLETED
          - ROLLED_BACK
          - FAILED
        type: string
        enum:
          - COMPLETED
          - ROLLED_BACK 
          - FAILED
      changedInfo:
        description: >
          Information about the changed VNF instance
          information, including VNF configurable properties, if applicable.
        type: object
        required:
          - self
        properties:
          description: >
            When the "changedInfo" attribute is present, 
            either the "changedVnfInfo" attribute or the
            "changedExtConnectivity" attribute or both shall be present
      changedVnfInfo:
        description: >
          Information about the changed VNF instance
          information, including configurable properties, 
          if applicable.
        $ref: "#/definitions/ModifyVnfInfoData"
      changedExtConnectivity:
        description: >
          Information about changed external connectivity,
          if applicable.
        $ref: "#/definitions/ExtVirtualLinkInfo"

  AffectedPnf:
    description: >
      This type provides information about added, deleted and modified PNFs. 
      It shall comply with the provisions in Table 6.5.3.3-1.
    type: object
    required:
      - pnfId
      - pnfdId
      - pnfProfileId
      - cpInstanceId       
    properties:
      pnfId:
        description: >
          Identifier of the affected PNF. This identifier is
          allocated by the OSS/BSS.
        $ref: "SOL005_def.yaml#/definitions/Identifier"
      pnfdId:
        description: >
          Identifier of the PNFD on which the PNF is based.
        $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
      pnfProfileId:
        description: >
          Identifier of the VNF profile of the NSD.
        $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
      pnfName:
        description: >
          Name of the PNF.
        type: string
      cpInstanceId:
        description: >
          Identifier of the CP in the scope of the PNF.
        type: array
        items:           
          $ref: "SOL005_def.yaml#/definitions/IdentifierInPnf"        
      changeType:
        description: >
          Signals the type of change.
          Permitted values:
          - ADD
          - REMOVE
          - MODIFY
        type: string
        enum:
          - ADD
          - REMOVE 
          - MODIFY        
      changeResult:
        description: >
          Signals the result of change identified by the
          "changeType" attribute.
          Permitted values:
          - COMPLETED
          - ROLLED_BACK
          - FAILED
        type: string
        enum:
          - COMPLETED
          - ROLLED_BACK 
          - FAILED    
  
  AffectedVl:
    description: >
      This type provides information about added, deleted and modified VLs. 
      It shall comply with the provisions in Table 6.5.3.4-1.
    type: object
    required:
      - nsVirtualLinkInstanceId
      - nsVirtualLinkDescId
      - vlProfileId     
    properties:
      nsVirtualLinkInstanceId:
        description: >
          Identifier of the VL Instance.
        $ref: "SOL005_def.yaml#/definitions/IdentifierInNs"
      nsVirtualLinkDescId:
        description: >
          Identifier of the VLD in the NSD for this VL.
        $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
      vlProfileId:
        description: >
          Identifier of the VLD in the NSD for this VL.
        $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
      changeType:
        description: >
          Signals the type of change.
          Permitted values:
          - ADD
          - DELETE
          - MODIFY
          - ADD_LINK_PORT
          - REMOVE_LINK_PORT
        type: string
        enum:
          - ADD
          - DELETE 
          - MODIFY 
          - ADD_LINK_PORT
          - REMOVE_LINK_PORT           
      changeResult:
        description: >
          Signals the result of change identified by the
          "changeType" attribute.
          Permitted values:
          - COMPLETED
          - ROLLED_BACK
          - FAILED
        type: string
        enum:
          - COMPLETED
          - ROLLED_BACK 
          - FAILED
          
  AffectedVnffg:
     description: >
       This type provides information about added, deleted and modified VNFFG instances. 
       It shall comply with the
       provisions in Table 6.5.3.5-1.
     type: object
     required:
       - vnffgInstanceId
       - vnffgdId   
     properties:
       vnffgInstanceId:
         description: >
            Identifier of the VNFFG instance.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNs"
       vnffgdId:
         description: >
           Identifier of the VNFFGD of the VNFFG instance.
         $ref: "SOL005_def.yaml#/definitions/IdentifierInNsd"
       changeType:
         description: >
           Signals the type of change.
           Permitted values:
           - ADD
           - DELETE
           - MODIFY
         type: string
         enum:
           - ADD
           - DELETE 
           - MODIFY         
       changeResult:
         description: >
           Signals the result of change identified by the
           "changeType" attribute.
           Permitted values:
           - COMPLETED
           - ROLLED_BACK
           - FAILED
         type: string
         enum:
           - COMPLETED
           - ROLLED_BACK 
           - FAILED
           
  AffectedNs:
     description: >
       This type provides information about added, deleted and modified nested NSs. 
       It shall comply with the provisions in Table 6.5.3.6-1.
     type: object
     required:
       - nsInstanceId
       - nsdId   
     properties:
       nsInstanceId:
         description: >
            Identifier of the nested NS instance.
         $ref: "SOL005_def.yaml#/definitions/Identifier"
       nsdId:
         description: >
           Identifier of the NSD of the nested NS instance.
         $ref: "SOL005_def.yaml#/definitions/Identifier"
       changeType:
         description: >
           Signals the type of lifecycle change.
           Permitted values:
           - ADD
           - REMOVE
           - INSTANTIATE
           - SCALE
           - UPDATE
           - HEAL
           - TERMINATE
         type: string
         enum:
           - ADD
           - REMOVE 
           - INSTANTIATE         
           - SCALE
           - UPDATE
           - HEAL
           - TERMINATE           
       changeResult:
         description: >
           Signals the result of change identified by the
           "changeType" attribute.
           Permitted values:
           - COMPLETED
           - ROLLED_BACK
           - FAILED
           - PARTIALLY_COMPLETED           
         type: string
         enum:
           - COMPLETED
           - ROLLED_BACK 
           - FAILED 
           - PARTIALLY_COMPLETED

  AffectedSap:
     description: >
       This type provides information about added, deleted and modified SAP of a NS. 
       It shall comply with the provisions in Table 6.5.3.7-1.
     type: object
     required:
       - sapInstanceId
       - sapdId   
     properties:
       sapInstanceId:
         description: >
            Identifier of the nested NS instance.
         $ref: "SOL005_def.yaml#/definitions/Identifier"
       sapdId:
         description: >
           Identifier of the NSD of the nested NS instance.
         $ref: "SOL005_def.yaml#/definitions/Identifier"
       sapName:
         description: >
           Human readable name for the SAP.
         type: string
       changeType:
         description: >
           Signals the type of lifecycle change.
           Permitted values:
           - ADD
           - REMOVE
           - MODIFY
         type: string
         enum:
           - ADD
           - REMOVE 
           - MODIFY
       changeResult:
         description: >
           Signals the result of change identified by the
           "changeType" attribute.
           Permitted values:
           - COMPLETED
           - ROLLED_BACK
           - FAILED
         type: string
         enum:
           - COMPLETED
           - ROLLED_BACK 
           - FAILED
           
  NsLcmOperationStateType:
    description: >
      The enumeration NsLcmOperationStateType shall comply with the provisions defined in Table 6.5.4.4-1.
      Value | Description
      ------|------------
      PROCESSING | The LCM operation is currently in execution.
      COMPLETED | The LCM operation has been completed successfully.
      PARTIALLY_COMPLETED | The LCM operation has been partially completed with accepTable errors.
      FAILED_TEMP | The LCM operation has failed and execution has stopped, but the execution of the operation is not considered to be closed.
      FAILED | The LCM operation has failed and it cannot be retried or rolled back, as it is determined that such action won't succeed.
      OLLING_BACK | The LCM operation is currently being rolled back.
      ROLLED_BACK | The LCM operation has been successfully rolled back, i.e. The state of the VNF prior to the original operation invocation has been restored as closely as possible.
    type: string
    enum:
      - PROCESSING
      - COMPLETED
      - FAILED_TEMP
      - FAILED
      - ROLLING_BACK
      - ROLLED_BACK       
  NsLcmOpType:
     description: >
       The enumeration NsLcmOpType represents those lifecycle operations that trigger a NS lifecycle management operation
       occurrence notification.
       Value | Description
       ------|------------
       INSTANTIATE | Represents the "Instantiate NS" LCM operation.
       SCALE | Represents the "Scale NS" LCM operation.
       UPDATE | Represents the "Update NS" LCM operation.
       TERMINATE | Represents the "Terminate NS" LCM operation.
       HEAL | Represents the "Heal NS" LCM operation.
     type: string
     enum:
       - INSTANTIATE
       - SCALE
       - UPDATE
       - TERMINATE
       - HEAL       
  LccnSubscriptionRequest:
    description: >
      This type represents a subscription request related to notifications 
      about NS lifecycle changes. It shall comply with the
      provisions defined in Table 6.5.2.2-1..
    type: object
    required:
      - callbackUri
    properties:
      filter: 
        description: >
         Filter settings for this subscription, to define the subset
         of all notifications this subscription relates to. A
         particular notification is sent to the subscriber if the filter
         matches, or if there is no filter.
        $ref: "#/definitions/LifecycleChangeNotificationsFilter"
      callbackUri:
        description: >
          The URI of the endpoint to send the notification to.
        $ref: "SOL005_def.yaml#/definitions/Uri"
      authentication:
        description: >
          Authentication parameters to configure the use of Authorization when
          sending notifications corresponding to this subscription, as defined
          in clause 4.5.3.4.
          This attribute shall only be present if the subscriber requires
          authorization of notifications.
        $ref: "SOL005_def.yaml#/definitions/SubscriptionAuthentication"
        
  LccnSubscription:
    description: >
      This type represents a subscription related to notifications about NS lifecycle changes. 
      It shall comply with the provisions defined in Table 6.5.2.4-1.
    type: object
    required:
      - id
      - callbackUri
      - _links
    properties:
      id:
        description: >
          Identifier of this subscription resource.
        $ref: "SOL005_def.yaml#/definitions/Identifier"
      filter:
        description: >
          Filter settings for this subscription, to define the subset of all
          notifications this subscription relates to. A particular
          notification is sent to the subscriber if the filter matches, or if
          there is no filter.
        $ref: "#/definitions/LifecycleChangeNotificationsFilter"
      callbackUri:
        description: >
          The URI of the endpoint to send the notification to.
        $ref: "SOL005_def.yaml#/definitions/Uri"
      _links:
        description: >
          Links to resources related to this resource.
        type: object
        required:
          - self
        properties:
          self:
            description: >
              URI of this resource.
            $ref: "SOL005_def.yaml#/definitions/Link" 
  LifecycleChangeNotificationsFilter:
    description: >
      This type represents a subscription filter related to notifications about 
      NS lifecycle changes. It shall comply with the
      provisions defined in Table 6.5.3.8-1.
      At a particular nesting level in the filter structure, the following applies: 
      All attributes shall match in order for the filter
      to match (logical "and" between different filter attributes). 
      If an attribute is an array, the attribute shall match if at least
      one of the values in the array matches (logical "or" between the values of one filter attribute).
    type: object
    properties:
      nsInstanceSubscriptionFilter:
        description: >
          Filter criteria to select NS instances about which to notify.
        $ref: "#/definitions/NsInstanceSubscriptionFilter"
      notificationTypes:
        description: >
          Match particular notification types.
          Permitted values:
          - NsLcmOperationOccurenceNotification
          - NsIdentifierCreationNotification
          - NsIdentifierDeletionNotification
          - NsChangeNotification
        type: array
        items:
          type: string
          enum:
            - NsLcmOperationOccurenceNotification
            - NsIdentifierCreationNotification
            - NsIdentifierDeletionNotification
            - NsChangeNotification             
      operationTypes:
        description: >
          Match particular NS lifecycle operation types
          for the notification of type
          NsLcmOperationOccurrenceNotification.
          May be present if the "notificationTypes"
          attribute contains the value
          "NsLcmOperationOccurrenceNotification", and
          shall be absent otherwise.
        type: array
        items: 
          $ref: "#/definitions/NsLcmOpType"
      operationStates:
        description: >
          Match particular LCM operation state values as
          reported in notifications of type
          NsLcmOperationOccurrenceNotification.
          May be present if the "notificationTypes"
          attribute contains the value
          "NsLcmOperationOccurrenceNotification", and
          shall be absent otherwise.
        type: array
        items: 
          $ref: "#/definitions/LcmOperationStateType"
      nsComponentTypes:
        description: >
          Match particular NS component types for the
          notification of type NsChangeNotification.
          May be present if the "notificationTypes"
          attribute contains the value "NsChang.
        type: array
        items: 
          $ref: "#/definitions/NsComponentType"
      lcmOpNameImpactingNsComponent:
        description: >
          Match particular LCM operation names for the
          notification of type NsChangeNotification.
          May be present if the "notificationTypes"
          attribute contains the value
          "NsChangeNotification", and shall be absent otherwise.
        type: array
        items: 
          $ref: "#/definitions/LcmOpNameForChangeNotificationType"
      lcmOpOccStatusImpactingNsComponent:
        description: >
          Match particular LCM operation status values
          as reported in notifications of type
          NsChangeNotification.
          May be present if the "notificationTypes"
          attribute contains the value
          "NsChangeNotification", and shall be absent otherwise.
        type: array
        items: 
          $ref: "#/definitions/LcmOpOccStatusForChangeNotificationType"
          
  NsLcmOperationOccurrenceNotification:
    type: object
    required:
      - id
      - nsInstanceId
      - nsLcmOpOccId
      - subscriptionId      
    properties:
      id:
        description: >
          Identifier of this notification. If a notification is sent
          multiple times due to multiple subscriptions, the "id"
          attribute of all these notifications shall have the same value.
        $ref: "SOL005_def.yaml#/definitions/Identifier"
      nsInstanceId:
        description: >
          The identifier of the NS instance affected.
        $ref: "SOL005_def.yaml#/definitions/Identifier"
      nsLcmOpOccId:
        description: >
          The identifier of the NS lifecycle operation occurrence
          associated to the notification.
        $ref: "SOL005_def.yaml#/definitions/Identifier"        
      operation:
        description: >
          The lifecycle operation.
        $ref: "#/definitions/NsLcmOpType"
      notificationType:
        description: >
          Discriminator for the different notification types. Shall be
          set to "NsLcmOperationOccurrenceNotification" for this
          notification type.
        type: string
      subscriptionId:
        description: >
          Identifier of the subscription that this notification relates to.
        $ref: "SOL005_def.yaml#/definitions/Identifier"
      timestamp:
        description: >
          Date-time of the generation of the notification.
        $ref: "#/definitions/DateTime"
      notificationStatus:
        description: >
          Indicates whether this notification reports about the start
          of a NS lifecycle operation or the result of a NS lifecycle
          operation.
          Permitted values:
          - START: Informs about the start of the NS LCM
          operation occurrence.
          - RESULT: Informs about the final or intermediate
          result of the NS LCM operation occurrence.
        type: string
        enum:
          - START
          - RESULT 
      operationState:
        description: >
          The state of the NS lifecycle operation occurrence.
        $ref: "#/definitions/NsLcmOperationStateType"
      isAutomaticInvocation:
        description: >
          Set to true if this NS LCM operation occurrence has
          been automatically triggered by the NFVO. This occurs
          in case of auto-scaling, auto-healing and when a nested
          NS is modified as a result of an operation on its
          composite NS. Set to false otherwise.
        type: boolean
      affectedVnf:
        description: >
          Information about the VNF instances that were affected
          during the lifecycle operation.
        $ref: "SOL005_def.yaml#/definitions/AffectedVnf"
      affectedPnf:
        description: >
          Information about the PNF instances that were affected
          during the lifecycle operation.
        $ref: "#/definitions/AffectedPnf"
      affectedVl:
        description: >
          Information about the VL instances that were affected
          during the lifecycle operation.
        type: array
        items:
          $ref: "#/definitions/AffectedVirtualLink"
      affectedVnffg:
        description: >
          Information about the VNFFG instances that were
          affected during the lifecycle operation.
        type: array
        items:
          $ref: "#/definitions/AffectedVnffg"
      affectedNs:
        description: >
          Information about the SAP instances that were affected
          during the lifecycle operation. See note.
        type: array
        items:
          $ref: "#/definitions/AffectedSap"
      affectedSap:
        description: >
          The lifecycle operation.
        $ref: "#/definitions/NsLcmOpType"
      error:
        description: >
          Details of the latest error, if one has occurred during
          executing the LCM operation (see clause 4.3.5). Shall
          be present if operationState is "FAILED_TEMP" or
          "FAILED", and shall be absent otherwise.
        $ref: "SOL005_def.yaml#/definitions/ProblemDetails"
      _links:
        description: >
          Links to resources related to this notification.
        $ref: "#/definitions/LccnLinks"
        
  NsIdentifierCreationNotification:
    type: object
    required:
      - subscriptionId
      - nsInstanceId     
    properties:
For faster browsing, not all history is shown. View entire blame