This commit is contained in:
2023-08-21 18:25:41 +08:00
parent 54dff5d6ad
commit 78b950af6d
7 changed files with 29 additions and 7 deletions

View File

@@ -127,7 +127,11 @@ amf:
optional: "false" optional: "false"
filter: "" filter: ""
display: "CMD" display: "CMD"
comment: "" comment: ""
- operation: "reload"
object: ""
display: "Reload Config"
params:
subsManagement: subsManagement:
display: "Subscriber Management" display: "Subscriber Management"
mml: mml:

View File

@@ -42,3 +42,7 @@ ausf:
filter: "" filter: ""
display: "SUPI Range" display: "SUPI Range"
comment: "" comment: ""
- operation: "reload"
object: ""
display: "Reload Config"
params:

View File

@@ -359,4 +359,8 @@ smf:
optional: "false" optional: "false"
filter: "" filter: ""
display: "CMD" display: "CMD"
comment: "" comment: ""
- operation: "reload"
object: ""
display: "Reload Config"
params:

View File

@@ -115,3 +115,7 @@ udm:
filter: "" filter: ""
display: "SUPI Range" display: "SUPI Range"
comment: "" comment: ""
- operation: "reload"
object: ""
display: "Reload Config"
params:

View File

@@ -235,4 +235,8 @@ upf:
optional: "false" optional: "false"
filter: "" filter: ""
display: "CMD" display: "CMD"
comment: "" comment: ""
- operation: "reload"
object: ""
display: "Reload Config"
params:

View File

@@ -41,10 +41,11 @@ var (
UriOmMmlExt = config.DefaultUriPrefix + "/{managementModule}/{apiVersion}/elementType/OMC/objectType/mml" UriOmMmlExt = config.DefaultUriPrefix + "/{managementModule}/{apiVersion}/elementType/OMC/objectType/mml"
UriOmMmlInt = config.DefaultUriPrefix + "/omManagement/{apiVersion}/mml/{neType}/{neId}" UriOmMmlInt = config.DefaultUriPrefix + "/omManagement/{apiVersion}/mml/{neType}/{neId}"
CustomUriMML = config.UriPrefix + "/opeartionManagement/{apiVersion}/elementType/{elementTypeValue}/objectType/mml" CustomUriMML = config.UriPrefix + "/operationManagement/{apiVersion}/elementType/{elementTypeValue}/objectType/mml"
CustomUriNeOmMml = config.UriPrefix + "/omManagement/{apiVersion}/mml/{netype}/{neid}" CustomUriMMLDiscard = config.UriPrefix + "/opeartionManagement/{apiVersion}/elementType/{elementTypeValue}/objectType/mml"
CustomUriOmMmlExt = config.UriPrefix + "/opeartionManagement/{apiVersion}/elementType/OMC/objectType/mml" CustomUriNeOmMml = config.UriPrefix + "/omManagement/{apiVersion}/mml/{netype}/{neid}"
CustomUriOmMmlInt = config.UriPrefix + "/omManagement/{apiVersion}/mml/{neType}/{neId}" CustomUriOmMmlExt = config.UriPrefix + "/opeartionManagement/{apiVersion}/elementType/OMC/objectType/mml"
CustomUriOmMmlInt = config.UriPrefix + "/omManagement/{apiVersion}/mml/{neType}/{neId}"
) )
func PostMMLToNF(w http.ResponseWriter, r *http.Request) { func PostMMLToNF(w http.ResponseWriter, r *http.Request) {

View File

@@ -152,6 +152,7 @@ func init() {
Register("POST", mml.UriOmMmlExt, mml.PostMMLToOMC, nil) Register("POST", mml.UriOmMmlExt, mml.PostMMLToOMC, nil)
Register("POST", mml.CustomUriMML, mml.PostMMLToNF, nil) Register("POST", mml.CustomUriMML, mml.PostMMLToNF, nil)
Register("POST", mml.CustomUriMMLDiscard, mml.PostMMLToNF, nil)
Register("POST", mml.CustomUriOmMmlExt, mml.PostMMLToOMC, nil) Register("POST", mml.CustomUriOmMmlExt, mml.PostMMLToOMC, nil)
// Northbound Get NRM // Northbound Get NRM
Register("GET", nbi.GetNRMUri, nbi.NBIGetNRMFromNF, nil) Register("GET", nbi.GetNRMUri, nbi.NBIGetNRMFromNF, nil)