-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Application filtering code to handle API from SIMAPP
Application filtering code to handle API from SIMAPP and passing the config further to PCRF.
- Loading branch information
1 parent
d183b2c
commit e70bbbd
Showing
5 changed files
with
151 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]> | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 | ||
|
||
/* | ||
* Connectivity Service Configuration | ||
* | ||
* APIs to configure connectivity service in Aether Network | ||
* | ||
* API version: 1.0.0 | ||
* Generated by: OpenAPI Generator (https://openapi-generator.tech) | ||
*/ | ||
|
||
package configmodels | ||
|
||
type SliceApplicationFilteringRules struct { | ||
|
||
// Rule name | ||
RuleName string `json:"rule-name,omitempty"` | ||
|
||
//priority | ||
Priority int32 `json:"priority,omitempty"` | ||
|
||
//action | ||
Action string `json:"action,omitempty"` | ||
|
||
// Application Desination IP or network | ||
Endpoint string `json:"endpoint,omitempty"` | ||
|
||
//protocol | ||
Protocol int32 `json:"protocol,omitempty"` | ||
|
||
// port range start | ||
StartPort int32 `json:"start-port,omitempty"` | ||
|
||
// port range end | ||
EndPort int32 `json:"end-port,omitempty"` | ||
|
||
AppMbrUplink int32 `json:"app-mbr-uplink,omitempty"` | ||
|
||
AppMbrDownlink int32 `json:"app-mbr-downlink,omitempty"` | ||
|
||
TrafficClass string `json:"traffic-class,omitempty"` | ||
|
||
RuleTrigger string `json:"rule-trigger,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]> | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 | ||
|
||
/* | ||
* Connectivity Service Configuration | ||
* | ||
* APIs to configure connectivity service in Aether Network | ||
* | ||
* API version: 1.0.0 | ||
* Generated by: OpenAPI Generator (https://openapi-generator.tech) | ||
*/ | ||
|
||
package configmodels | ||
|
||
type ApnAmbrQosInfo struct { | ||
Uplink int32 `json:"uplink-mbr,omitempty"` | ||
Downlink int32 `json:"downlink-mbr,omitempty"` | ||
TrafficClass string `json:"traffic-class,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters