[Release-17] Upgrade SBI to v17.x.0

This commit is contained in:
Sukchan Lee 2023-03-01 19:56:49 +09:00
parent 969c116e77
commit 4d44b1843e
1687 changed files with 121604 additions and 9310 deletions

View file

@ -1,7 +1,7 @@
/*
* nsi_information.h
*
*
* Contains the API URIs of NRF services to be used to discover NFs/services, subscribe to NF status changes and/or request access tokens within the selected Network Slice instance and optional the Identifier of the selected Network Slice instance
*/
#ifndef _OpenAPI_nsi_information_H_
@ -23,13 +23,15 @@ typedef struct OpenAPI_nsi_information_s {
char *nsi_id;
char *nrf_nf_mgt_uri;
char *nrf_access_token_uri;
OpenAPI_list_t* nrf_oauth2_required;
} OpenAPI_nsi_information_t;
OpenAPI_nsi_information_t *OpenAPI_nsi_information_create(
char *nrf_id,
char *nsi_id,
char *nrf_nf_mgt_uri,
char *nrf_access_token_uri
char *nrf_access_token_uri,
OpenAPI_list_t* nrf_oauth2_required
);
void OpenAPI_nsi_information_free(OpenAPI_nsi_information_t *nsi_information);
OpenAPI_nsi_information_t *OpenAPI_nsi_information_parseFromJSON(cJSON *nsi_informationJSON);