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

@ -51,9 +51,13 @@ typedef struct OpenAPI_mdt_configuration_s {
OpenAPI_report_interval_mdt_e report_interval;
OpenAPI_report_interval_nr_mdt_e report_interval_nr;
OpenAPI_report_amount_mdt_e report_amount;
bool is_event_threshold_rsrp;
int event_threshold_rsrp;
bool is_event_threshold_rsrp_nr;
int event_threshold_rsrp_nr;
bool is_event_threshold_rsrq;
int event_threshold_rsrq;
bool is_event_threshold_rsrq_nr;
int event_threshold_rsrq_nr;
OpenAPI_list_t *event_list;
OpenAPI_logging_interval_mdt_e logging_interval;
@ -81,9 +85,13 @@ OpenAPI_mdt_configuration_t *OpenAPI_mdt_configuration_create(
OpenAPI_report_interval_mdt_e report_interval,
OpenAPI_report_interval_nr_mdt_e report_interval_nr,
OpenAPI_report_amount_mdt_e report_amount,
bool is_event_threshold_rsrp,
int event_threshold_rsrp,
bool is_event_threshold_rsrp_nr,
int event_threshold_rsrp_nr,
bool is_event_threshold_rsrq,
int event_threshold_rsrq,
bool is_event_threshold_rsrq_nr,
int event_threshold_rsrq_nr,
OpenAPI_list_t *event_list,
OpenAPI_logging_interval_mdt_e logging_interval,