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

@ -19,20 +19,32 @@ extern "C" {
typedef struct OpenAPI_preferred_search_s OpenAPI_preferred_search_t;
typedef struct OpenAPI_preferred_search_s {
bool is_preferred_tai_match_ind;
int preferred_tai_match_ind;
bool is_preferred_full_plmn_match_ind;
int preferred_full_plmn_match_ind;
bool is_preferred_api_versions_match_ind;
int preferred_api_versions_match_ind;
bool is_other_api_versions_ind;
int other_api_versions_ind;
bool is_preferred_locality_match_ind;
int preferred_locality_match_ind;
bool is_other_locality_ind;
int other_locality_ind;
} OpenAPI_preferred_search_t;
OpenAPI_preferred_search_t *OpenAPI_preferred_search_create(
bool is_preferred_tai_match_ind,
int preferred_tai_match_ind,
bool is_preferred_full_plmn_match_ind,
int preferred_full_plmn_match_ind,
bool is_preferred_api_versions_match_ind,
int preferred_api_versions_match_ind,
bool is_other_api_versions_ind,
int other_api_versions_ind,
bool is_preferred_locality_match_ind,
int preferred_locality_match_ind,
bool is_other_locality_ind,
int other_locality_ind
);
void OpenAPI_preferred_search_free(OpenAPI_preferred_search_t *preferred_search);