Commit e367e763 authored by muhammadh's avatar muhammadh
Browse files

Merge branch 'STF625_MEC011_2.2.1' of...

Merge branch 'STF625_MEC011_2.2.1' of https://forge.etsi.org/rep/mec/AdvantEDGE into STF625_MEC011_2.2.1
parents e0ea2797 315b75a5
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -6,12 +6,10 @@ Models/AppTerminationConfirmation.md
Models/AppTerminationNotification.md
Models/AppTerminationNotificationLinks.md
Models/AppTerminationNotificationSubscription.md
Models/AppTerminationNotificationSubscriptionLinks.md
Models/CurrentTime.md
Models/DestinationInterface.md
Models/DestinationInterfaceInterfaceType.md
Models/DnsRule.md
Models/DnsRuleIpAddressType.md
Models/DnsRuleState.md
Models/LinkType.md
Models/MecAppSuptApiSubscriptionLinkList.md
Models/MecAppSuptApiSubscriptionLinkListLinks.md
@@ -19,18 +17,11 @@ Models/MecAppSuptApiSubscriptionLinkListSubscription.md
Models/OperationActionType.md
Models/ProblemDetails.md
Models/Self.md
Models/TimeSourceStatus.md
Models/TimingCaps.md
Models/TimingCapsNtpServers.md
Models/TimingCapsNtpServersAuthenticationOption.md
Models/TimingCapsNtpServersNtpServerAddrType.md
Models/TimingCapsPtpMasters.md
Models/TimingCapsTimeStamp.md
Models/TrafficFilter.md
Models/TrafficRule.md
Models/TrafficRuleAction.md
Models/TrafficRuleFilterType.md
Models/TrafficRuleState.md
Models/TunnelInfo.md
Models/TunnelInfoTunnelType.md
README.md
+1 −10
Original line number Diff line number Diff line
@@ -31,12 +31,10 @@ Class | Method | HTTP request | Description
 - [AppTerminationNotification](./Models/AppTerminationNotification.md)
 - [AppTerminationNotificationLinks](./Models/AppTerminationNotificationLinks.md)
 - [AppTerminationNotificationSubscription](./Models/AppTerminationNotificationSubscription.md)
 - [AppTerminationNotificationSubscriptionLinks](./Models/AppTerminationNotificationSubscriptionLinks.md)
 - [CurrentTime](./Models/CurrentTime.md)
 - [DestinationInterface](./Models/DestinationInterface.md)
 - [DestinationInterfaceInterfaceType](./Models/DestinationInterfaceInterfaceType.md)
 - [DnsRule](./Models/DnsRule.md)
 - [DnsRuleIpAddressType](./Models/DnsRuleIpAddressType.md)
 - [DnsRuleState](./Models/DnsRuleState.md)
 - [LinkType](./Models/LinkType.md)
 - [MecAppSuptApiSubscriptionLinkList](./Models/MecAppSuptApiSubscriptionLinkList.md)
 - [MecAppSuptApiSubscriptionLinkListLinks](./Models/MecAppSuptApiSubscriptionLinkListLinks.md)
@@ -44,20 +42,13 @@ Class | Method | HTTP request | Description
 - [OperationActionType](./Models/OperationActionType.md)
 - [ProblemDetails](./Models/ProblemDetails.md)
 - [Self](./Models/Self.md)
 - [TimeSourceStatus](./Models/TimeSourceStatus.md)
 - [TimingCaps](./Models/TimingCaps.md)
 - [TimingCapsNtpServers](./Models/TimingCapsNtpServers.md)
 - [TimingCapsNtpServersAuthenticationOption](./Models/TimingCapsNtpServersAuthenticationOption.md)
 - [TimingCapsNtpServersNtpServerAddrType](./Models/TimingCapsNtpServersNtpServerAddrType.md)
 - [TimingCapsPtpMasters](./Models/TimingCapsPtpMasters.md)
 - [TimingCapsTimeStamp](./Models/TimingCapsTimeStamp.md)
 - [TrafficFilter](./Models/TrafficFilter.md)
 - [TrafficRule](./Models/TrafficRule.md)
 - [TrafficRuleAction](./Models/TrafficRuleAction.md)
 - [TrafficRuleFilterType](./Models/TrafficRuleFilterType.md)
 - [TrafficRuleState](./Models/TrafficRuleState.md)
 - [TunnelInfo](./Models/TunnelInfo.md)
 - [TunnelInfoTunnelType](./Models/TunnelInfoTunnelType.md)


<a name="documentation-for-authorization"></a>
+2 −2
Original line number Diff line number Diff line
openapi: 3.0.2
openapi: 3.0.0
servers:
  - url: "https://localhost/sandboxname/mec_app_support/v1"
info:
@@ -24,8 +24,8 @@ externalDocs:
security:
  - {}
tags:
  - name: unsupported
  - name: mec_app_support
  - name: unsupported
  - name: callbacks
paths:
  /applications/{appInstanceId}/traffic_rules:
+1 −1
Original line number Diff line number Diff line
@@ -30,5 +30,5 @@ type CurrentTime struct {
	// The nanoseconds part of the time. Time is defined as Unix-time since January 1, 1970, 00:00:00 UTC
	NanoSeconds int32 `json:"nanoSeconds"`
	// 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
	TimeSourceStatus *TimeSourceStatus `json:"timeSourceStatus"`
	TimeSourceStatus string `json:"timeSourceStatus"`
}
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ package server
// 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 DestinationInterface struct {
	// Type of the interface
	InterfaceType *DestinationInterfaceInterfaceType `json:"interfaceType"`
	InterfaceType string `json:"interfaceType"`

	TunnelInfo *TunnelInfo `json:"tunnelInfo,omitempty"`
	// Source address identifies the MAC address of the interface
Loading