SBI updated

- openapi-generator version 5.2.0
- add priority/capacity/load in NFProfile/NFService
- add AllowedNfTypes in NFProfile/NFService
This commit is contained in:
Sukchan Lee 2021-07-16 17:02:33 +09:00
parent 1326fc85dc
commit 039b9d0aaa
930 changed files with 7387 additions and 5434 deletions

View file

@ -20,23 +20,35 @@ extern "C" {
typedef struct OpenAPI_dnn_info_s OpenAPI_dnn_info_t;
typedef struct OpenAPI_dnn_info_s {
char *dnn;
bool is_default_dnn_indicator;
int default_dnn_indicator;
bool is_lbo_roaming_allowed;
int lbo_roaming_allowed;
bool is_iwk_eps_ind;
int iwk_eps_ind;
bool is_dnn_barred;
int dnn_barred;
bool is_invoke_nef_ind;
int invoke_nef_ind;
OpenAPI_list_t *smf_list;
bool is_same_smf_ind;
int same_smf_ind;
} OpenAPI_dnn_info_t;
OpenAPI_dnn_info_t *OpenAPI_dnn_info_create(
char *dnn,
bool is_default_dnn_indicator,
int default_dnn_indicator,
bool is_lbo_roaming_allowed,
int lbo_roaming_allowed,
bool is_iwk_eps_ind,
int iwk_eps_ind,
bool is_dnn_barred,
int dnn_barred,
bool is_invoke_nef_ind,
int invoke_nef_ind,
OpenAPI_list_t *smf_list,
bool is_same_smf_ind,
int same_smf_ind
);
void OpenAPI_dnn_info_free(OpenAPI_dnn_info_t *dnn_info);