Newer
Older
/**
* @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;
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
}
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'";
}
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;
/**
* @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'";
}
/**
* @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.
type record OAuth2Info {
GrantTypesList grantTypes,
TokenEndpoint tokenEndpoint
* @desc This type represents security information related to a transport.
type record SecurityInfo {
OAuth2Info oAuth2Info
type record Self {
LinkType self_,
JSON.Bool readOnly optional
} with {
variant (self_) "name as 'self'";
* @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.
type JSON.String SerAvailabilityNotificationSubscription_CallbackReference;
* @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.
type record SerAvailabilityNotificationSubscription {
SerAvailabilityNotificationSubscription_SubscriptionType subscriptionType,
SerAvailabilityNotificationSubscription_CallbackReference callbackReference,
Self links,
ServiceInfo filteringCriteria
* @desc Shall be set to SerAvailabilityNotificationSubscription.
type JSON.String SerAvailabilityNotificationSubscription_SubscriptionType;
* @desc This type represents the service availability information.
type record ServiceAvailabilityNotification {
SerAvailabilityNotificationSubscription_SubscriptionType notificationType,
* @desc The enumeration SerializerTypes represents types of serializers.
type enumerated SerializerTypes {
JSON,
XML,
PROTOBUF3
}
/**
* @desc Identifier of the service instance assigned by the MEPM / mobile edge platform.
*/
type JSON.String SerInstanceId;
* @desc The name of the service. This is how the service producing mobile edge application identifies the service instance it produces.
type JSON.String SerName;
/**
* @desc Contains the state.
*/
type enumerated ServiceInfo_State {
ACTIVE,
INACTIVE
}
/**
* @desc Contains the types of locality.
*/
type enumerated LocalityType {
MEC_SYSTEM,
MEC_HOST,
NFVI_POP,
ZONE,
ZONE_GROUP,
NFVI_NODE
}
/**
* @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,
TransportId transportId optional,
TransportInfo transportInfo optional,
SerializerTypes serializer,
LocalityType scopeOfLocality optional,
boolean consumedLocalOnly optional,
boolean isLocal optional
type record Subscription {
LinkType subscription
type UInt32 AuthenticationKeyNum;
/**
* @desc NTP authentication option.
*/
type enumerated AuthenticationOption {
NONE,
SYMMETRIC_KEY,
AUTO_KEY
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.
type enumerated NtpServerAddrType {
IP_ADDRESS,
DNS_NAME
type record NtpServers {
NtpServerAddrType ntpServerAddrType,
NtpServerAddr ntpServerAddr,
MinPollingInterval minPollingInterval,
MaxPollingInterval maxPollingInterval,
LocalPriority localPriority,
AuthenticationOption authenticationOption,
AuthenticationKeyNum authenticationKeyNum
}
type record of NtpServers NtpServersList;
type record TimingCaps_PtpMasters {
NtpServers_PtpMasterIpAddress ptpMasterIpAddress,
NtpServers_PtpMasterLocalPriority ptpMasterLocalPriority,
DelayReqMaxRate delayReqMaxRate
}
type record of TimingCaps_PtpMasters TimingCaps_PtpMastersList;
* @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.
type record TimeStamp {
Seconds seconds,
NanoSeconds nanoSeconds
* @desc This type represents the information provided by the mobile edge platform in response to the Timing capabilities Query message.
type record TimingCaps {
TimeStamp timeStamp,
NtpServersList ntpServers,
TimingCaps_PtpMastersList ptpMasters
}
type JSON.String TrafficFilter_Address;
type record of TrafficFilter_Address TrafficFilter_AddressList;
* @desc Used to match all IPv4 packets that have the same Differentiated Services Code Point (DSCP).
type JSON.String TrafficFilter_Protocol;
type record of TrafficFilter_Protocol TrafficFilter_ProtocolList;
* @desc Used to match all packets that have the same Quality Class Indicator (QCI).
* @desc Used to match all IPv6 packets that have the same Traffic Class.
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'";
}
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
}
} with {
encode "JSON"
} // End of module AppEnablementAPI_TypesAndValues