"description":"This method retrieves the information of the platform's timing capabilities which corresponds to the timing capabilities query",
...
...
@@ -415,6 +452,18 @@
"Empty":{
"description":"Empty schema"
},
"AppReadyConfirmation":{
"description":"This type represents the information that the MEC application instance indicates to the MEC platform that it is up and running.",
"type":"object",
"required":[
"indication"
],
"properties":{
"indication":{
"$ref":"#/components/schemas/ReadyIndicationType"
}
}
},
"AppTerminationConfirmation":{
"description":"This type represents the information that the MEC application instance provides to the MEC platform when informing it that the application has completed its application level related terminate/stop actions, e.g. retention of application state in the case of stop.",
"type":"object",
...
...
@@ -569,7 +618,7 @@
"example":"02-00-00-00-00-00"
},
"DestinationInterface":{
"description":"This type represents the destination interface.",
"description":"This type represents the destination interface. If the action is FORWARD_DECAPSULATED, FORWARD_ENCAPSULATED or PASSTHROUGH one value shall be provided. If the action is DUPLICATE_DECAPSULATED or DUPLICATE_ENCAPSULATED, two values shall be provided. If the action is DROP, no value shall be provided.",
"type":"object",
"required":[
"interfaceType"
...
...
@@ -617,7 +666,7 @@
"example":"IP_V6"
},
"DnsRule.State":{
"description":"DNS rule state",
"description":"DNS rule state. This attribute may be updated using HTTP PUT method",
"type":"string",
"enum":[
"ACTIVE",
...
...
@@ -786,6 +835,14 @@
"format":"uri",
"description":"A URI reference according to IETF RFC 3986 that identifies the problem type"
},
"ReadyIndicationType":{
"description":"Indication about the MEC application instance.",
"type":"string",
"enum":[
"READY"
],
"example":"READY"
},
"Self":{
"description":"Self-referring URI.",
"type":"object",
...
...
@@ -1099,7 +1156,7 @@
}
},
"TrafficRule.Action":{
"description":"The action of the ME host data plane when a packet matches the trafficFilter",
"description":"The action of the MEC host data plane when a packet matches the trafficFilter\n",
"type":"string",
"enum":[
"DROP",
...
...
@@ -1132,7 +1189,7 @@
"example":1
},
"TrafficRule.State":{
"description":"Contains the traffic rule state",
"description":"Contains the traffic rule state. This attribute may be updated using HTTP PUT method",
This type represents the information that the MEC application instance indicates to the MEC platform that it is up and running.
type:object
required:
-indication
properties:
indication:
$ref:'#/components/schemas/ReadyIndicationType'
AppTerminationConfirmation:
description:>-
This type represents the information that the MEC application instance provides to the MEC platform when informing it that the application has completed its application level related terminate/stop actions, e.g. retention of application state in the case of stop.
...
...
@@ -424,7 +458,7 @@ components:
type:string
example:'02-00-00-00-00-00'
DestinationInterface:
description:This type represents the destination interface.
description:This type represents the destination interface. If the action is FORWARD_DECAPSULATED, FORWARD_ENCAPSULATED or PASSTHROUGH one value shall be provided. If the action is DUPLICATE_DECAPSULATED or DUPLICATE_ENCAPSULATED, two values shall be provided. If the action is DROP, no value shall be provided.
type:object
required:
-interfaceType
...
...
@@ -459,7 +493,7 @@ components:
-IP_V4
example:'IP_V6'
DnsRule.State:
description:DNS rule state
description:DNS rule state. This attribute may be updated using HTTP PUT method
type:string
enum:
-ACTIVE
...
...
@@ -588,6 +622,12 @@ components:
description:>-
A URI reference according to IETF RFC 3986 that identifies the problem
type
ReadyIndicationType:
description:Indication about the MEC application instance.
type:string
enum:
-READY
example:'READY'
Self:
description:Self-referring URI.
type:object
...
...
@@ -846,8 +886,8 @@ components:
$ref:'#/components/schemas/TrafficFilter.TC'
TrafficRule.Action:
description:>-
The action of the ME host data plane when a packet matches the
trafficFilter
The action of the MEC host data plane when a packet matches the trafficFilter
type:string
enum:
-DROP
...
...
@@ -878,7 +918,7 @@ components:
format:uint32
example:1
TrafficRule.State:
description:Contains the traffic rule state
description:Contains the traffic rule state. This attribute may be updated using HTTP PUT method
"description":"This method deletes a mecService resource. This method is typically used in the service deregistration procedure. ",
"operationId":"AppServicesServiceId_DELETE",
"tags":[
"appServices"
],
"responses":{
"204":{
"description":"No Content"
},
"403":{
"$ref":"#/components/responses/Error.403"
},
"404":{
"$ref":"#/components/responses/Error.404"
}
}
}
},
"/applications/{appInstanceId}/subscriptions":{
...
...
@@ -381,7 +405,8 @@
"CategoryRef.Href":{
"description":"Reference of the catalogue",
"type":"string",
"example":"catItem1"
"format":"uri",
"example":"/example/catalogue1"
},
"CategoryRef.Id":{
"description":"Unique identifier of the category",
...
...
@@ -427,7 +452,7 @@
"type":"array",
"minItems":0,
"items":{
"type":"string"
"$ref":"#/components/schemas/CategoryRef"
}
},
"EndPointInfo.Address.Host":{
...
...
@@ -1419,6 +1444,21 @@
}
}
},
"Error.414":{
"description":"It is used to indicate that the server is refusing to process the request because the request URI is longer than the server is willing or able to process.",
"content":{
"application/problem+json":{
"schema":{
"$ref":"#/components/schemas/ProblemDetails"
}
},
"text/plain":{
"schema":{
"$ref":"#/components/schemas/Empty"
}
}
}
},
"Error.429":{
"description":"Too Many Requests. It is used when a rate limiter has triggered.",
description:Categories of services about which to report events.
type:array
minItems:0
items:
type:string
items:
$ref:'#/components/schemas/CategoryRef'
EndPointInfo.Address.Host:
description:Host portion of the address
type:string
...
...
@@ -1075,6 +1093,16 @@ components:
text/plain:
schema:
$ref:'#/components/schemas/Empty'
Error.414:
description:>-
It is used to indicate that the server is refusing to process the request because the request URI is longer than the server is willing or able to process.