Documentation ¶
Index ¶
- func AddService(engine *gin.Engine) *gin.RouterGroup
- func DeleteSubscriberByID(c *gin.Context)
- func GetRegisteredUEContext(c *gin.Context)
- func GetSampleJSON(c *gin.Context)
- func GetSubscriberByID(c *gin.Context)
- func GetSubscribers(c *gin.Context)
- func GetUEPDUSessionInfo(c *gin.Context)
- func NewRouter() *gin.Engine
- func PatchSubscriberByID(c *gin.Context)
- func PostSubscriberByID(c *gin.Context)
- func PutSubscriberByID(c *gin.Context)
- type Route
- type Routes
- type SubsData
- type SubsListIE
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddService ¶
func AddService(engine *gin.Engine) *gin.RouterGroup
func DeleteSubscriberByID ¶
Delete subscriber by IMSI(ueId) and PlmnID(servingPlmnId)
func GetRegisteredUEContext ¶
func GetSampleJSON ¶
func GetSubscriberByID ¶
Get subscriber by IMSI(ueId) and PlmnID(servingPlmnId)
func GetUEPDUSessionInfo ¶
func PatchSubscriberByID ¶
Patch subscriber by IMSI(ueId) and PlmnID(servingPlmnId)
func PostSubscriberByID ¶
Post subscriber by IMSI(ueId) and PlmnID(servingPlmnId)
func PutSubscriberByID ¶
Put subscriber by IMSI(ueId) and PlmnID(servingPlmnId)
Types ¶
type Route ¶
type Route struct { // Name is the name of this Route. Name string // Method is the string for the HTTP method. ex) GET, POST etc.. Method string // Pattern is the pattern of the URI. Pattern string // HandlerFunc is the handler function of this route. HandlerFunc gin.HandlerFunc }
Route is the information for every URI.
type SubsData ¶
type SubsData struct { PlmnID string `json:"plmnID"` UeId string `json:"ueId"` AuthenticationSubscription models.AuthenticationSubscription `json:"AuthenticationSubscription"` AccessAndMobilitySubscriptionData models.AccessAndMobilitySubscriptionData `json:"AccessAndMobilitySubscriptionData"` SmfSelectionSubscriptionData models.SmfSelectionSubscriptionData `json:"SmfSelectionSubscriptionData"` AmPolicyData models.AmPolicyData `json:"AmPolicyData"` SmPolicyData models.SmPolicyData `json:"SmPolicyData"` }
type SubsListIE ¶
Click to show internal directories.
Click to hide internal directories.