Documentation ¶
Index ¶
- func AddService(engine *gin.Engine) *gin.RouterGroup
- func DeregistrationSmfRegistrations(c *gin.Context)
- func DeregistrationSmsf3gppAccess(c *gin.Context)
- func DeregistrationSmsfNon3gppAccess(c *gin.Context)
- func GetAmf3gppAccess(c *gin.Context)
- func GetAmfNon3gppAccess(c *gin.Context)
- func GetSmsf3gppAccess(c *gin.Context)
- func GetSmsfNon3gppAccess(c *gin.Context)
- func Index(c *gin.Context)
- func NewRouter() *gin.Engine
- func Register(c *gin.Context)
- func RegistrationAmf3gppAccess(c *gin.Context)
- func RegistrationSmfRegistrations(c *gin.Context)
- func RegistrationSmsfNon3gppAccess(c *gin.Context)
- func UpdateAmf3gppAccess(c *gin.Context)
- func UpdateAmfNon3gppAccess(c *gin.Context)
- func UpdateSMSFReg3GPP(c *gin.Context)
- type Route
- type Routes
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AddService ¶
func AddService(engine *gin.Engine) *gin.RouterGroup
func DeregistrationSmfRegistrations ¶
DeregistrationSmfRegistrations - delete an SMF registration
func DeregistrationSmsf3gppAccess ¶
DeregistrationSmsf3gppAccess - delete the SMSF registration for 3GPP access
func DeregistrationSmsfNon3gppAccess ¶
DeregistrationSmsfNon3gppAccess - delete SMSF registration for non 3GPP access
func GetAmf3gppAccess ¶
GetAmf3gppAccess - retrieve the AMF registration for 3GPP access information
func GetAmfNon3gppAccess ¶
GetAmfNon3gppAccess - retrieve the AMF registration for non-3GPP access information
func GetSmsf3gppAccess ¶
GetSmsf3gppAccess - retrieve the SMSF registration for 3GPP access information
func GetSmsfNon3gppAccess ¶
GetSmsfNon3gppAccess - retrieve the SMSF registration for non-3GPP access information
func RegistrationAmf3gppAccess ¶
RegistrationAmf3gppAccess - register as AMF for 3GPP access
func RegistrationSmfRegistrations ¶
RegistrationSmfRegistrations - register as SMF
func RegistrationSmsfNon3gppAccess ¶
RegistrationSmsfNon3gppAccess - register as SMSF for non-3GPP access
func UpdateAmf3gppAccess ¶
UpdateAmf3gppAccess - Update a parameter in the AMF registration for 3GPP access
func UpdateAmfNon3gppAccess ¶
UpdateAmfNon3gppAccess - update a parameter in the AMF registration for non-3GPP access
func UpdateSMSFReg3GPP ¶
UpdateSMSFReg3GPP - register as SMSF for 3GPP access
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.
Source Files ¶
- api_amf3_gpp_access_registration_info_retrieval.go
- api_amf_non3_gpp_access_registration_info_retrieval.go
- api_amf_registration_for3_gpp_access.go
- api_amf_registration_for_non3_gpp_access.go
- api_parameter_update_in_the_amf_registration_for3_gpp_access.go
- api_parameter_update_in_the_amf_registration_for_non3_gpp_access.go
- api_smf_deregistration.go
- api_smf_registration.go
- api_smsf3_gpp_access_registration_info_retrieval.go
- api_smsf_deregistration_for3_gpp_access.go
- api_smsf_deregistration_for_non3_gpp_access.go
- api_smsf_non3_gpp_access_registration_info_retrieval.go
- api_smsf_registration_for3_gpp_access.go
- api_smsf_registration_for_non3_gpp_access.go
- routers.go