AppEnablementAPI_TypesAndValues.ttcn 21 KB
Newer Older
YannGarcia's avatar
YannGarcia committed
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * @desc The ETSI MEC ISG MEC011 Application Enablement API described using OpenAPI
 * @see http://www.etsi.org/deliver/etsi_gs/MEC/001_099/011/01.01.01_60/gs_mec011v010101p.pdf
 */
module AppEnablementAPI_TypesAndValues {

  // JSON
  import from JSON all;
 
  // LibCommon
  import from LibCommon_BasicTypesAndValues all;

YannGarcia's avatar
YannGarcia committed
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
  /**
   * @desc Maximum timeout value in seconds for graceful termination or graceful stop of an application instance.
   */
  type UInt32 MaxGracefulTimeout;

  /**
   * @desc Shall be set to AppTerminationNotification.
   */
  type JSON.String NotificationType;

  /**
   * @desc This type represents the information that the mobile edge platform notifies the subscribed application instance about  the corresponding application instance termination/stop.
   */
  type record AppTerminationNotification {
    NotificationType notificationType,
    MaxGracefulTimeout maxGracefulTimeout,
    Subscription links
  } with {
    variant (links) "name as '_links'";
  }

  /**
   * @desc It is used as the filtering criterion for the subscribed events.
   */
  type JSON.String AppInstanceId;

  /**
   * @desc URI selected by the mobile edge application instance to receive notifications on the subscribed mobile edge application instance management information. 
   *       This shall be included in both the request and the response."
   */
  type JSON.String AppTerminationNotificationSubscription_CallbackReference;

  /**
   * @desc This type represents the information that the mobile edge platform notifies the subscribed application instance about  the corresponding application instance termination/stop.
   */
  type record AppTerminationNotificationSubscription {
    SubscriptionType subscriptionType,
    AppTerminationNotificationSubscription_CallbackReference callbackReference,
    Self links,
    AppInstanceId appInstanceId
  } with {
    variant (links) "name as '_links'";
  }

  /**
   * @desc Shall be set to AppTerminationNotificationSubscription.
   */
  type JSON.String SubscriptionType;

  /**
   * @desc Reference of the catalogue.
   */
  type JSON.String CategoryRef_Href;
  
  /**
   * @desc Unique identifier of the category.
   */
  type JSON.String CategoryRef_Id;

  /**
   * @desc Name of the category.
   */
  type JSON.String Name;

  /**
   * @desc Category version.
   */
  type JSON.String CategoryRef_Version;

  /**
   * @desc This type represents the category reference.
   */
  type record CategoryRef {
    CategoryRef_Href href,
    CategoryRef_Id id,
    Name name,
    CategoryRef_Version version
  }

  /**
   * @desc The seconds part of the Time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.
   */
  type UInt32 Seconds;

  /**
   * @desc The nanoseconds part of the Time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.
   */
  type UInt32 NanoSeconds;

  /**
   * @desc Platform Time Source status. 1 = TRACEABLE - time source is locked to the UTC time source. 2 = NONTRACEABLE - time source is not locked to the UTC time source.
   */
  type enumerated TimeSourceStatus {
    TRACEABLE (1),
    NONTRACEABLE (2)
  }
  
  /**
   * @desc This type represents the information provided by the mobile edge platform in response to the Get Platform Time Request message.
   * @member seconds The seconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.
   * @member nanoSeconds The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.
   * @member timeSourceStatus Platform Time Source status. 1 = TRACEABLE - time source is locked to the UTC time source. 2 = NONTRACEABLE - time source is not locked to the UTC time source.
   */
  type record CurrentTime {
    Seconds seconds,
    NanoSeconds nanoSeconds,
    TimeSourceStatus timeSourceStatus
  }

  /**
   * @desc Type of the interface.
   */
  type enumerated InterfaceType {
    TUNNEL,
    MAC,
    IP
  }

  /**
   * @desc IP address of the remote destination.
   */
  type JSON.String DestinationInterface_IpAddress;

  /**
   * @desc Source address identifies the MAC address of the interface.
   */
  type JSON.String DestinationInterface_MacAddress;

  /**
   * @desc This type represents the destination interface.
   */
  type record DestinationInterface {
    InterfaceType interfaceType,
    TunnelInfo tunnelInfo optional,
    DestinationInterface_MacAddress srcMacAddress optional,
    DestinationInterface_MacAddress dstMacAddress optional,
    DestinationInterface_IpAddress dstIpAddress optional
  }

  /**
   * @desc FQDN resolved by the DNS rule.
   */
  type JSON.String DomainName;

  /**
   * @desc Identifies the DNS Rule.
   */
  type JSON.String DnsRule_Id;

  /**
   * @desc IP address associated with the FQDN resolved by the DNS rule.
   */
  type JSON.String DnsRule_IpAddress;

  /**
   * @desc IP address type.
   */
  type enumerated DnsRule_IpAddressType {
    IP_V6,
    IP_V4
   }

  /**
   * @desc DNS rule state.
   */
  type enumerated DnsRule_State {
    ACTIVE,
    INACTIVE
  }

  /**
   * @desc Time to live value.
   */
  type UInt32 Ttl;

  /**
   * @desc This type represents the general information of a DNS rule.
   */
  type record DnsRule {
    DnsRule_Id dnsRuleId,
    DomainName domainName,
    DnsRule_IpAddressType ipAddressType,
    DnsRule_IpAddress ipAddress,
    Ttl ttl,
    DnsRule_State state
  }
YannGarcia's avatar
YannGarcia committed
199
  type record of DnsRule DnsRuleList;
YannGarcia's avatar
YannGarcia committed
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
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

  /**
   * @desc Host portion of the address.
   */
  type JSON.String Host;

  /**
   * @desc Port portion of the address.
   */
  type UInt32   Address_Port;

  /**
   * @desc A IP address and port pair.
   */
  type record Address {
    Host host,
    Address_Port port_
  } with {
    variant (port_) "name as 'port'";
  }
  type record length(0..infinity) of Address AddressList;

  /**
   * @desc Entry point information of the service as one or more pairs of IP address and port.
   */
  type record Addresses {
    AddressList addresses
  }

  /**
   * @desc Entry point information of the service in a format defined by an implementation, or in an external specification.
   */
  type record Alternative {
    anytype alternative
  }

  /**
   * @desc Entry point information of the service.
   */
  type JSON.String EndPointInfo_Uri;
  type record length(0..infinity) of EndPointInfo_Uri EndPointInfo_UriList;

  /**
   * @desc Entry point information of the service as string, formatted according to URI syntax.
   */
  type record Uris {
    EndPointInfo_UriList uris
  }

  /**
   * @desc This type represents a type of link and may be referenced from data structures.
   */
  type record LinkType {
    Href href
  }

  /**
   * @desc URI referring to a resource.
   */
  type JSON.String Href;

  /**
   * @desc Self-referring URI.
   */
  type record Mp1SubscriptionLinkList_Links {
    LinkType self_,
    Mp1SubscriptionLinkList_SubscriptionList subscription optional
  } with {
    variant (self_) "name as 'self'";
  }

  /**
   * @desc The values are as defined in the \"subscriptionType\" attribute for each different Mp1 event subscription data type.
   */
  type enumerated Rel {
    AppTerminationNotificationSubscription,
    SerAvailabilityNotificationSubscription
  }
  
  /**
   * @desc A link to a subscription.
   */
  type record Mp1SubscriptionLinkList_Subscription {
    Href href,
    Rel rel
  }
  type record length(0..infinity) of Mp1SubscriptionLinkList_Subscription Mp1SubscriptionLinkList_SubscriptionList;

  /**
   * @desc This type represents a list of links related to currently existing subscriptions for a mobile edge application instance. This information is returned when sending a request to receive current subscriptions.
   */
  type record Mp1SubscriptionLinkList {
    Mp1SubscriptionLinkList_Links links
  } with {
    variant (links) "name as '_links'";
  }
  
YannGarcia's avatar
YannGarcia committed
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
  type record Links {
    LinkType self_
  } with {
    variant (self_) "name as 'self'";
  }

  /**
   * @desc This type represents a list of links related to currently existing subscriptions for a MEC application instance.
   */
  type record SubscriptionLinkList {
    Links links,
    Subscriptions subscription optional
  } with {
    variant (links) "name as '_links'";
  }

  /**
   * @desc A link to a subscription
   * @member 
   * @member 
   */
  type record Subscription_ {
    JSON.AnyURI href,
    SubscriptionType subscriptionType
  }
  type record of Subscription_ Subscriptions;

YannGarcia's avatar
YannGarcia committed
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
  /**
   * @desc Problem Details for HTTP APIs
   * @member type_ A URI reference according to IETF RFC 3986 that identifies the problem type
   * @member title A short, human-readable summary of the problem type
   * @member status The HTTP status code for this occurrence of the problem
   * @member detail A human-readable explanation specific to this occurrence of the problem
   * @member instance A URI reference that identifies the specific occurrence of the problem
   * @see IETF RFC 7807 Clause 3.  The Problem Details JSON Object
   */
  type record ProblemDetails {
    JSON.String type_,
    JSON.String title,
    UInt32 status,
    JSON.String detail,
    JSON.String instance
  } with {
    variant (type_) "name as 'type'";
  }

  /**
YannGarcia's avatar
YannGarcia committed
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
   * @desc List of supported OAuth 2.0 grant types.
   */
  type enumerated GrantTypes {
    OAUTH2_AUTHORIZATION_CODE,
    OAUTH2_IMPLICIT_GRANT,
    OAUTH2_RESOURCE_OWNER,
    OAUTH2_CLIENT_CREDENTIALS
  }
  type record length(1..4) of GrantTypes GrantTypesList;

  /**
   * @desc The token endpoint.
   */
  type JSON.String TokenEndpoint;

  /**
   * @desc Parameters related to use of OAuth 2.0.
YannGarcia's avatar
YannGarcia committed
361
   */
YannGarcia's avatar
YannGarcia committed
362
363
364
  type record OAuth2Info {
    GrantTypesList grantTypes,
    TokenEndpoint tokenEndpoint
YannGarcia's avatar
YannGarcia committed
365
366
367
  }

  /**
YannGarcia's avatar
YannGarcia committed
368
   * @desc This type represents security information related to a transport.
YannGarcia's avatar
YannGarcia committed
369
   */
YannGarcia's avatar
YannGarcia committed
370
371
  type record SecurityInfo {
    OAuth2Info oAuth2Info
YannGarcia's avatar
YannGarcia committed
372
373
374
  }

  /**
YannGarcia's avatar
YannGarcia committed
375
   * @desc Self-referring URI.
YannGarcia's avatar
YannGarcia committed
376
   */
YannGarcia's avatar
YannGarcia committed
377
378
379
380
381
  type record Self {
    LinkType self_,
    JSON.Bool readOnly optional
  } with {
    variant (self_) "name as 'self'";
YannGarcia's avatar
YannGarcia committed
382
383
384
  }

  /**
YannGarcia's avatar
YannGarcia committed
385
   * @desc URI selected by the mobile edge application instance to receive notifications on the subscribed mobile edge service availability information. This shall be included in both the request and the response.
YannGarcia's avatar
YannGarcia committed
386
   */
YannGarcia's avatar
YannGarcia committed
387
  type JSON.String SerAvailabilityNotificationSubscription_CallbackReference;
YannGarcia's avatar
YannGarcia committed
388
389

  /**
YannGarcia's avatar
YannGarcia committed
390
   * @desc This type represents a subscription to the notifications from the mobile edge platform regarding the availability of a mobile edge service or a list of mobile edge services.
YannGarcia's avatar
YannGarcia committed
391
   */
YannGarcia's avatar
YannGarcia committed
392
393
394
395
396
  type record SerAvailabilityNotificationSubscription {
    SerAvailabilityNotificationSubscription_SubscriptionType subscriptionType,
    SerAvailabilityNotificationSubscription_CallbackReference callbackReference,
    Self links,
    ServiceInfo filteringCriteria
YannGarcia's avatar
YannGarcia committed
397
398
399
  }

  /**
YannGarcia's avatar
YannGarcia committed
400
   * @desc Shall be set to SerAvailabilityNotificationSubscription.
YannGarcia's avatar
YannGarcia committed
401
   */
YannGarcia's avatar
YannGarcia committed
402
  type JSON.String SerAvailabilityNotificationSubscription_SubscriptionType;
YannGarcia's avatar
YannGarcia committed
403
404

  /**
YannGarcia's avatar
YannGarcia committed
405
   * @desc This type represents the service availability information.
YannGarcia's avatar
YannGarcia committed
406
   */
YannGarcia's avatar
YannGarcia committed
407
408
  type record ServiceAvailabilityNotification {
    SerAvailabilityNotificationSubscription_SubscriptionType notificationType,
YannGarcia's avatar
YannGarcia committed
409
    ServiceInfoList services,
YannGarcia's avatar
YannGarcia committed
410
411
    Subscription links
  }
YannGarcia's avatar
YannGarcia committed
412
413

  /**
YannGarcia's avatar
YannGarcia committed
414
   * @desc The enumeration SerializerTypes represents types of serializers.
YannGarcia's avatar
YannGarcia committed
415
   */
YannGarcia's avatar
YannGarcia committed
416
417
418
419
420
421
422
423
424
425
  type enumerated SerializerTypes {
    JSON,
    XML,
    PROTOBUF3
  }
  
  /**
   * @desc Identifier of the service instance assigned by the MEPM / mobile edge platform.
   */
  type JSON.String SerInstanceId;
YannGarcia's avatar
YannGarcia committed
426
427

  /**
YannGarcia's avatar
YannGarcia committed
428
   * @desc The name of the service. This is how the service producing mobile edge application identifies the service instance it produces.
YannGarcia's avatar
YannGarcia committed
429
   */
YannGarcia's avatar
YannGarcia committed
430
431
432
433
434
435
436
437
438
439
  type JSON.String SerName;

  /**
   * @desc Contains the state.
   */
  type enumerated ServiceInfo_State {
    ACTIVE,
    INACTIVE
  }

YannGarcia's avatar
YannGarcia committed
440
441
442
443
444
445
446
447
448
449
450
451
  /**
   * @desc Contains the types of locality.
   */
  type enumerated LocalityType {
    MEC_SYSTEM,
    MEC_HOST,
    NFVI_POP,
    ZONE,
    ZONE_GROUP,
    NFVI_NODE
  }
  
YannGarcia's avatar
YannGarcia committed
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
  /**
   * @desc Identifier of the platform-provided transport to be used by the service. Valid identifiers may be obtained using the \"Transport information query\" procedure. May be present in POST requests to signal the use of a platform-provided transport for the service, and shall be absent otherwise.
   */
  type JSON.String TransportId;

  /**
   * @desc Service version.
   */
  type JSON.String ServiceInfo_Version;

  /**
   * @desc This type represents the general information of a mobile edge service.
   */
  type record ServiceInfo {
    SerInstanceId serInstanceId optional,
    SerName serName,
    CategoryRef serCategory optional,
    ServiceInfo_Version version,
    ServiceInfo_State state,
YannGarcia's avatar
YannGarcia committed
471
472
473
474
475
476
    TransportId transportId optional,
    TransportInfo transportInfo optional,
    SerializerTypes serializer,
    LocalityType scopeOfLocality optional,
    boolean consumedLocalOnly optional,
    boolean isLocal optional
YannGarcia's avatar
YannGarcia committed
477
  }
YannGarcia's avatar
YannGarcia committed
478
  type record of ServiceInfo ServiceInfoList;
YannGarcia's avatar
YannGarcia committed
479
480

  /**
YannGarcia's avatar
YannGarcia committed
481
   * @desc A link to the related subscription.
YannGarcia's avatar
YannGarcia committed
482
   */
YannGarcia's avatar
YannGarcia committed
483
484
  type record Subscription {
    LinkType subscription
YannGarcia's avatar
YannGarcia committed
485
486
487
  }

  /**
YannGarcia's avatar
YannGarcia committed
488
   * @desc Authentication key number.
YannGarcia's avatar
YannGarcia committed
489
   */
YannGarcia's avatar
YannGarcia committed
490
491
492
493
494
495
496
497
498
  type UInt32 AuthenticationKeyNum;

  /**
   * @desc NTP authentication option.
   */
  type enumerated AuthenticationOption {
    NONE,
    SYMMETRIC_KEY,
    AUTO_KEY
YannGarcia's avatar
YannGarcia committed
499
500
501
  }

  /**
YannGarcia's avatar
YannGarcia committed
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
   * @desc Acceptable maximum rate of the Delay_Req messages in packets per second.
   */
  type UInt32 DelayReqMaxRate;

  /**
   * @desc NTP server local priority.
   */
  type UInt32 LocalPriority;

  /**
   * @desc Maximum poll interval for NTP messages, in seconds as a power of two. Range 3...17.
   */
  type integer MaxPollingInterval (3..17) with {variant "unsigned 32 bit"} ;

  /**
   * @desc Minimum poll interval for NTP messages, in seconds as a power of two. Range 3...17.
   */
  type integer MinPollingInterval (3..17) with {variant "unsigned 32 bit"} ;

  /**
   * @desc NTP server address.
   */
  type JSON.String NtpServerAddr;

  /**
   * @desc Address type of NTP server.
YannGarcia's avatar
YannGarcia committed
528
   */
YannGarcia's avatar
YannGarcia committed
529
530
531
  type enumerated NtpServerAddrType {
    IP_ADDRESS,
    DNS_NAME
YannGarcia's avatar
YannGarcia committed
532
533
534
  }

  /**
YannGarcia's avatar
YannGarcia committed
535
   * @desc PTP Master IP Address.
YannGarcia's avatar
YannGarcia committed
536
   */
YannGarcia's avatar
YannGarcia committed
537
  type JSON.String NtpServers_PtpMasterIpAddress;
YannGarcia's avatar
YannGarcia committed
538
539

  /**
YannGarcia's avatar
YannGarcia committed
540
   * @desc PTP Master local priority.
YannGarcia's avatar
YannGarcia committed
541
   */
YannGarcia's avatar
YannGarcia committed
542
  type UInt32 NtpServers_PtpMasterLocalPriority;
YannGarcia's avatar
YannGarcia committed
543
544

  /**
YannGarcia's avatar
YannGarcia committed
545
   * @desc NTP server detail.
YannGarcia's avatar
YannGarcia committed
546
   */
YannGarcia's avatar
YannGarcia committed
547
548
549
550
551
552
553
554
555
556
  type record NtpServers {
    NtpServerAddrType ntpServerAddrType,
    NtpServerAddr ntpServerAddr,
    MinPollingInterval minPollingInterval,
    MaxPollingInterval maxPollingInterval,
    LocalPriority localPriority,
    AuthenticationOption authenticationOption,
    AuthenticationKeyNum authenticationKeyNum
  }
  type record of NtpServers NtpServersList;
YannGarcia's avatar
YannGarcia committed
557
558

  /**
YannGarcia's avatar
YannGarcia committed
559
   * @desc NTP server detail.
YannGarcia's avatar
YannGarcia committed
560
   */
YannGarcia's avatar
YannGarcia committed
561
562
563
564
565
566
  type record TimingCaps_PtpMasters {
    NtpServers_PtpMasterIpAddress ptpMasterIpAddress,
    NtpServers_PtpMasterLocalPriority ptpMasterLocalPriority,
    DelayReqMaxRate delayReqMaxRate
  }
  type record of TimingCaps_PtpMasters TimingCaps_PtpMastersList;
YannGarcia's avatar
YannGarcia committed
567
568

  /**
YannGarcia's avatar
YannGarcia committed
569
570
571
572
   * @desc Time.
   * @member seconds The seconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.
   * @member nanoSeconds The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC.
   * @member timeSourceStatus Platform Time Source status. 1 = TRACEABLE - time source is locked to the UTC time source. 2 = NONTRACEABLE - time source is not locked to the UTC time source.
YannGarcia's avatar
YannGarcia committed
573
   */
YannGarcia's avatar
YannGarcia committed
574
575
576
  type record TimeStamp {
    Seconds seconds,
    NanoSeconds nanoSeconds
YannGarcia's avatar
YannGarcia committed
577
578
579
  }

  /**
YannGarcia's avatar
YannGarcia committed
580
   * @desc This type represents the information provided by the mobile edge platform in response to the Timing capabilities Query message.
YannGarcia's avatar
YannGarcia committed
581
   */
YannGarcia's avatar
YannGarcia committed
582
583
584
585
586
  type record TimingCaps {
    TimeStamp timeStamp,
    NtpServersList ntpServers,
    TimingCaps_PtpMastersList ptpMasters
  }
YannGarcia's avatar
YannGarcia committed
587
588

  /**
YannGarcia's avatar
YannGarcia committed
589
   * @desc Identify the traffic ip address.
YannGarcia's avatar
YannGarcia committed
590
   */
YannGarcia's avatar
YannGarcia committed
591
592
  type JSON.String TrafficFilter_Address;
  type record of TrafficFilter_Address TrafficFilter_AddressList;
YannGarcia's avatar
YannGarcia committed
593
594

  /**
YannGarcia's avatar
YannGarcia committed
595
   * @desc Used to match all IPv4 packets that have the same Differentiated Services Code Point (DSCP).
YannGarcia's avatar
YannGarcia committed
596
   */
YannGarcia's avatar
YannGarcia committed
597
  type UInt32 TrafficFilter_DSCP;
YannGarcia's avatar
YannGarcia committed
598
599

  /**
YannGarcia's avatar
YannGarcia committed
600
   * @desc Identify the traffic ip address.
YannGarcia's avatar
YannGarcia committed
601
   */
YannGarcia's avatar
YannGarcia committed
602
  type JSON.String TrafficFilter_Port;
YannGarcia's avatar
YannGarcia committed
603
604

  /**
YannGarcia's avatar
YannGarcia committed
605
   * @desc Protocol of the traffic filter.
YannGarcia's avatar
YannGarcia committed
606
   */
YannGarcia's avatar
YannGarcia committed
607
608
  type JSON.String TrafficFilter_Protocol;
  type record of TrafficFilter_Protocol TrafficFilter_ProtocolList;
YannGarcia's avatar
YannGarcia committed
609
610

  /**
YannGarcia's avatar
YannGarcia committed
611
   * @desc Used to match all packets that have the same Quality Class Indicator (QCI).
YannGarcia's avatar
YannGarcia committed
612
   */
YannGarcia's avatar
YannGarcia committed
613
  type UInt32 TrafficFilter_QCI;
YannGarcia's avatar
YannGarcia committed
614
615

  /**
YannGarcia's avatar
YannGarcia committed
616
   * @desc Used to match all IPv6 packets that have the same Traffic Class.
YannGarcia's avatar
YannGarcia committed
617
   */
YannGarcia's avatar
YannGarcia committed
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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
  type UInt32 TrafficFilter_TC;

  /**
   * @desc Used for token based traffic rule.
   */
  type JSON.String TrafficFilter_Token;
  type record of TrafficFilter_Token TrafficFilter_TokenList;

  /**
   * @desc Used for GTP tunnel based traffic rule.
   */
  type JSON.String TrafficFilter_TunnelAddress;
  type record of TrafficFilter_TunnelAddress TrafficFilter_TunnelAddressList;

  /**
   * @desc Used for GTP tunnel based traffic rule.
   */
  type JSON.String TrafficFilter_TunnelPort;
  type record of TrafficFilter_TunnelPort TrafficFilter_TunnelPortList;

  /**
   * @desc This type represents the traffic filter.
   */
  type record TrafficFilter {
    TrafficFilter_Address srcAddress,
    TrafficFilter_AddressList dstAddress,
    TrafficFilter_Port srcPort,
    TrafficFilter_Port dstPort,
    TrafficFilter_ProtocolList protocol,
    TrafficFilter_TokenList token,
    TrafficFilter_TunnelAddressList srcTunnelAddress,
    TrafficFilter_TunnelAddressList tgtTunnelAddress,
    TrafficFilter_TunnelPortList srcTunnelPort,
    TrafficFilter_TunnelPortList dstTunnelPort,
    TrafficFilter_QCI qCI,
    TrafficFilter_DSCP dSCP,
    TrafficFilter_TC tC
  }
  type record of TrafficFilter TrafficFilterList;

  /**
   * @desc The action of the ME host data plane when a packet matches the trafficFilter.
   */
  type enumerated TrafficRule_Action {
    DROP,
    FORWARD_DECAPSULATED,
    FORWARD_AS_IS,
    PASSTHROUGH,
    DUPLICATE_DECAPSULATED,
    DUPLICATE_AS_IS
  }

  /**
   * @desc Definition of filter per FLOW or PACKET. If flow the filter match UE->EPC packet and the reverse packet is handled in the same context.
   */
  type enumerated TrafficRule_FilterType {
    FLOW,
    PACKET
   }

  /**
   * @desc Identify the traffic rule.
   */
  type JSON.String TrafficRule_Id;

  /**
   * @desc Priority of this traffic rule. If traffic rule conflicts, the one with higher priority take precedence.
   */
  type UInt32 TrafficRule_Priority;

  /**
   * @desc Contains the traffic rule state.
   */
  type enumerated TrafficRule_State {
    ACTIVE,
    INACTIVE
  }

  /**
   * @desc This type represents the general information of a traffic rule.
   */
  type record TrafficRule {
    TrafficRule_Id trafficRuleId,
    TrafficRule_FilterType filterType,
    TrafficRule_Priority priority,
    TrafficFilterList trafficFilter,
    TrafficRule_Action action_,
    DestinationInterface dstInterface optional,
    TrafficRule_State state
  } with {
    variant (action_) "name as 'action'";
  }
YannGarcia's avatar
YannGarcia committed
710
  type record of TrafficRule TrafficRuleList
YannGarcia's avatar
YannGarcia committed
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808

  /**
   * @desc Human-readable description of this transport.
   */
  type JSON.String TransportInfo_Description;

  /**
   * @desc The identifier of this transport.
   */
  type JSON.String TransportInfo_Id;

  /**
   * @desc Additional implementation specific details of the transport.
   */
  type anytype TransportInfo_ImplSpecificInfo;

  /**
   * @desc The name of this transport.
   */
  type JSON.String TransportInfo_Name;

  /**
   * @desc The name of the protocol used. Shall be set to HTTP for a REST API.
   */
  type JSON.String TransportInfo_Protocol;

  /**
   * @desc The version of the protocol used.
   */
  type JSON.String TransportInfo_Version;

  /**
   * @desc This type represents information about a transport endpoint.
   */
  type union TransportInfo_Endpoint { // JSON oneOf ???
    Uris uris,
    Addresses addresses,
    Alternative alternative
  }

  /**
   * @desc This type represents the general information of a mobile edge service.
   */
  type record TransportInfo {
    TransportInfo_Id id,
    TransportInfo_Name name,
    TransportInfo_Description description optional,
    TransportTypes type_,
    TransportInfo_Protocol protocol,
    TransportInfo_Version version,
    TransportInfo_Endpoint endpoint,
    SecurityInfo security,
    TransportInfo_ImplSpecificInfo implSpecificInfo optional
  } with {
    variant (type_) "name as 'type'";
  }
  type record of TransportInfo TransportInfoList;

  /**
   * @desc The enumeration TransportTypes represents types of transports.
   */
  type enumerated TransportTypes {
    REST_HTTP,
    MB_TOPIC_BASED,
    MB_ROUTING,
    MB_PUBSUB,
    RPC,
    RPC_STREAMING,
    WEBSOCKET
  }

  /**
   * @desc Destination address of the tunnel.
   */
  type JSON.String TunnelInfo_TunnelDstAddress;

  /**
   * @desc Source address of the tunnel.
   */
  type JSON.String TunnelInfo_TunnelSrcAddress;

  /**
   * @desc This type represents the tunnel information.
   */
  type enumerated TunnelInfo_TunnelType {
    GTP_U,
    GRE
  }

  /**
   * @desc This type represents the tunnel information.
   */
  type record TunnelInfo {
    TunnelInfo_TunnelType tunnelType,
    TunnelInfo_TunnelDstAddress tunnelDstAddress optional,
    TunnelInfo_TunnelSrcAddress tunnelSrcAddress optional
  }

YannGarcia's avatar
YannGarcia committed
809
810
811
} with {
  encode "JSON"
} // End of module AppEnablementAPI_TypesAndValues