[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 @@
/*
* ue_context.h
*
*
* Represents an individual ueContext resource
*/
#ifndef _OpenAPI_ue_context_H_
@ -13,22 +13,32 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "ambr.h"
#include "analytics_subscription.h"
#include "area.h"
#include "cag_data.h"
#include "core_network_type.h"
#include "ec_restriction_data_wb.h"
#include "eps_interworking_info.h"
#include "ext_amf_event_subscription.h"
#include "immediate_mdt_conf.h"
#include "mm_context.h"
#include "mo_exp_data_counter.h"
#include "pcf_ue_callback_info.h"
#include "pdu_session_context.h"
#include "pdu_session_info.h"
#include "plmn_id.h"
#include "policy_req_trigger.h"
#include "presence_info.h"
#include "prose_context.h"
#include "rat_type.h"
#include "sbi_binding_level.h"
#include "seaf_data.h"
#include "service_area_restriction.h"
#include "slice_mbr.h"
#include "small_data_rate_status_info.h"
#include "smf_selection_data.h"
#include "trace_data.h"
#include "updp_subscription_data.h"
#include "v2x_context.h"
#ifdef __cplusplus
@ -46,6 +56,8 @@ typedef struct OpenAPI_ue_context_s {
char *ausf_group_id;
char *pcf_group_id;
char *routing_indicator;
bool is_h_nw_pub_key_id;
int h_nw_pub_key_id;
OpenAPI_list_t *group_list;
char *drx_parameter;
bool is_sub_rfsp;
@ -53,6 +65,7 @@ typedef struct OpenAPI_ue_context_s {
bool is_used_rfsp;
int used_rfsp;
struct OpenAPI_ambr_s *sub_ue_ambr;
OpenAPI_list_t* sub_ue_slice_mbr_list;
char *smsf_id;
struct OpenAPI_seaf_data_s *seaf_data;
char *_5g_mm_capability;
@ -74,6 +87,7 @@ typedef struct OpenAPI_ue_context_s {
OpenAPI_list_t *event_subscription_list;
OpenAPI_list_t *mm_context_list;
OpenAPI_list_t *session_context_list;
struct OpenAPI_eps_interworking_info_s *eps_interworking_info;
struct OpenAPI_trace_data_s *trace_data;
char *service_gap_expiry_time;
char *stn_sr;
@ -86,6 +100,8 @@ typedef struct OpenAPI_ue_context_s {
struct OpenAPI_v2x_context_s *v2x_context;
bool is_lte_cat_m_ind;
int lte_cat_m_ind;
bool is_red_cap_ind;
int red_cap_ind;
struct OpenAPI_mo_exp_data_counter_s *mo_exp_data_counter;
struct OpenAPI_cag_data_s *cag_data;
bool is_management_mdt_ind;
@ -96,6 +112,31 @@ typedef struct OpenAPI_ue_context_s {
int ec_restriction_data_nb;
bool is_iab_operation_allowed;
int iab_operation_allowed;
struct OpenAPI_prose_context_s *prose_context;
OpenAPI_list_t *analytics_subscription_list;
char *pcf_amp_binding_info;
char *pcf_uep_binding_info;
struct OpenAPI_service_area_restriction_s *used_service_area_restriction;
OpenAPI_list_t* pra_in_am_policy;
OpenAPI_list_t* pra_in_ue_policy;
struct OpenAPI_updp_subscription_data_s *updp_subscription_data;
OpenAPI_list_t *sm_policy_notify_pdu_list;
struct OpenAPI_pcf_ue_callback_info_s *pcf_ue_callback_info;
char *ue_positioning_cap;
bool is_asti_distribution_indication;
int asti_distribution_indication;
bool is_ts_error_budget;
int ts_error_budget;
bool is_snpn_onboard_ind;
int snpn_onboard_ind;
struct OpenAPI_smf_selection_data_s *smf_sel_info;
OpenAPI_list_t* pcf_ue_slice_mbr_list;
char *smsf_set_id;
char *smsf_service_set_id;
char *smsf_binding_info;
bool is_disaster_roaming_ind;
int disaster_roaming_ind;
struct OpenAPI_plmn_id_s *disaster_plmn;
} OpenAPI_ue_context_t;
OpenAPI_ue_context_t *OpenAPI_ue_context_create(
@ -108,6 +149,8 @@ OpenAPI_ue_context_t *OpenAPI_ue_context_create(
char *ausf_group_id,
char *pcf_group_id,
char *routing_indicator,
bool is_h_nw_pub_key_id,
int h_nw_pub_key_id,
OpenAPI_list_t *group_list,
char *drx_parameter,
bool is_sub_rfsp,
@ -115,6 +158,7 @@ OpenAPI_ue_context_t *OpenAPI_ue_context_create(
bool is_used_rfsp,
int used_rfsp,
OpenAPI_ambr_t *sub_ue_ambr,
OpenAPI_list_t* sub_ue_slice_mbr_list,
char *smsf_id,
OpenAPI_seaf_data_t *seaf_data,
char *_5g_mm_capability,
@ -136,6 +180,7 @@ OpenAPI_ue_context_t *OpenAPI_ue_context_create(
OpenAPI_list_t *event_subscription_list,
OpenAPI_list_t *mm_context_list,
OpenAPI_list_t *session_context_list,
OpenAPI_eps_interworking_info_t *eps_interworking_info,
OpenAPI_trace_data_t *trace_data,
char *service_gap_expiry_time,
char *stn_sr,
@ -148,6 +193,8 @@ OpenAPI_ue_context_t *OpenAPI_ue_context_create(
OpenAPI_v2x_context_t *v2x_context,
bool is_lte_cat_m_ind,
int lte_cat_m_ind,
bool is_red_cap_ind,
int red_cap_ind,
OpenAPI_mo_exp_data_counter_t *mo_exp_data_counter,
OpenAPI_cag_data_t *cag_data,
bool is_management_mdt_ind,
@ -157,7 +204,32 @@ OpenAPI_ue_context_t *OpenAPI_ue_context_create(
bool is_ec_restriction_data_nb,
int ec_restriction_data_nb,
bool is_iab_operation_allowed,
int iab_operation_allowed
int iab_operation_allowed,
OpenAPI_prose_context_t *prose_context,
OpenAPI_list_t *analytics_subscription_list,
char *pcf_amp_binding_info,
char *pcf_uep_binding_info,
OpenAPI_service_area_restriction_t *used_service_area_restriction,
OpenAPI_list_t* pra_in_am_policy,
OpenAPI_list_t* pra_in_ue_policy,
OpenAPI_updp_subscription_data_t *updp_subscription_data,
OpenAPI_list_t *sm_policy_notify_pdu_list,
OpenAPI_pcf_ue_callback_info_t *pcf_ue_callback_info,
char *ue_positioning_cap,
bool is_asti_distribution_indication,
int asti_distribution_indication,
bool is_ts_error_budget,
int ts_error_budget,
bool is_snpn_onboard_ind,
int snpn_onboard_ind,
OpenAPI_smf_selection_data_t *smf_sel_info,
OpenAPI_list_t* pcf_ue_slice_mbr_list,
char *smsf_set_id,
char *smsf_service_set_id,
char *smsf_binding_info,
bool is_disaster_roaming_ind,
int disaster_roaming_ind,
OpenAPI_plmn_id_t *disaster_plmn
);
void OpenAPI_ue_context_free(OpenAPI_ue_context_t *ue_context);
OpenAPI_ue_context_t *OpenAPI_ue_context_parseFromJSON(cJSON *ue_contextJSON);