mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 15:24:14 +00:00
arch: DB schema Changes (#796)
- New function : NSSF - New feature : SMF selection
This commit is contained in:
parent
c6bfbed922
commit
9af4268bab
691 changed files with 40727 additions and 18985 deletions
38
lib/sbi/openapi/model/nwdaf_cond.h
Normal file
38
lib/sbi/openapi/model/nwdaf_cond.h
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* nwdaf_cond.h
|
||||
*
|
||||
* Subscription to a set of NF Instances (NWDAFs), identified by Analytics ID(s).
|
||||
*/
|
||||
|
||||
#ifndef _OpenAPI_nwdaf_cond_H_
|
||||
#define _OpenAPI_nwdaf_cond_H_
|
||||
|
||||
#include <string.h>
|
||||
#include "../external/cJSON.h"
|
||||
#include "../include/list.h"
|
||||
#include "../include/keyValuePair.h"
|
||||
#include "../include/binary.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef struct OpenAPI_nwdaf_cond_s OpenAPI_nwdaf_cond_t;
|
||||
typedef struct OpenAPI_nwdaf_cond_s {
|
||||
OpenAPI_list_t *analytics_ids;
|
||||
} OpenAPI_nwdaf_cond_t;
|
||||
|
||||
OpenAPI_nwdaf_cond_t *OpenAPI_nwdaf_cond_create(
|
||||
OpenAPI_list_t *analytics_ids
|
||||
);
|
||||
void OpenAPI_nwdaf_cond_free(OpenAPI_nwdaf_cond_t *nwdaf_cond);
|
||||
OpenAPI_nwdaf_cond_t *OpenAPI_nwdaf_cond_parseFromJSON(cJSON *nwdaf_condJSON);
|
||||
cJSON *OpenAPI_nwdaf_cond_convertToJSON(OpenAPI_nwdaf_cond_t *nwdaf_cond);
|
||||
OpenAPI_nwdaf_cond_t *OpenAPI_nwdaf_cond_copy(OpenAPI_nwdaf_cond_t *dst, OpenAPI_nwdaf_cond_t *src);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _OpenAPI_nwdaf_cond_H_ */
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue