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

@ -89,7 +89,7 @@ OpenAPI_resources_allocation_info_t *OpenAPI_resources_allocation_info_parseFrom
cJSON *mc_resourc_status = cJSON_GetObjectItemCaseSensitive(resources_allocation_infoJSON, "mcResourcStatus");
OpenAPI_media_component_resources_status_e mc_resourc_statusVariable;
if (mc_resourc_status) {
if (mc_resourc_status) {
if (!cJSON_IsString(mc_resourc_status)) {
ogs_error("OpenAPI_resources_allocation_info_parseFromJSON() failed [mc_resourc_status]");
goto end;
@ -100,7 +100,7 @@ OpenAPI_resources_allocation_info_t *OpenAPI_resources_allocation_info_parseFrom
cJSON *flows = cJSON_GetObjectItemCaseSensitive(resources_allocation_infoJSON, "flows");
OpenAPI_list_t *flowsList;
if (flows) {
if (flows) {
cJSON *flows_local_nonprimitive;
if (!cJSON_IsArray(flows)){
ogs_error("OpenAPI_resources_allocation_info_parseFromJSON() failed [flows]");
@ -122,7 +122,7 @@ OpenAPI_resources_allocation_info_t *OpenAPI_resources_allocation_info_parseFrom
cJSON *alt_ser_req = cJSON_GetObjectItemCaseSensitive(resources_allocation_infoJSON, "altSerReq");
if (alt_ser_req) {
if (alt_ser_req) {
if (!cJSON_IsString(alt_ser_req)) {
ogs_error("OpenAPI_resources_allocation_info_parseFromJSON() failed [alt_ser_req]");
goto end;