Upgrade SBI(Service-based Interface)

* OpenAPI Generator version: 4.3.1 ==> 5.5.1
* Specification : r16.8.0 (20210629)
This commit is contained in:
Sukchan Lee 2021-07-07 17:32:55 +09:00
parent 2aaa8200c2
commit f278d58a69
1914 changed files with 91329 additions and 57361 deletions

View file

@ -13,6 +13,8 @@
#include "../include/keyValuePair.h"
#include "../include/binary.h"
#include "access_type.h"
#include "ipv4_address_range.h"
#include "ipv6_prefix_range.h"
#ifdef __cplusplus
extern "C" {
@ -25,6 +27,8 @@ typedef struct OpenAPI_pcscf_info_s {
char *gm_fqdn;
OpenAPI_list_t *gm_ipv4_addresses;
OpenAPI_list_t *gm_ipv6_addresses;
OpenAPI_list_t *served_ipv4_address_ranges;
OpenAPI_list_t *served_ipv6_prefix_ranges;
} OpenAPI_pcscf_info_t;
OpenAPI_pcscf_info_t *OpenAPI_pcscf_info_create(
@ -32,8 +36,10 @@ OpenAPI_pcscf_info_t *OpenAPI_pcscf_info_create(
OpenAPI_list_t *dnn_list,
char *gm_fqdn,
OpenAPI_list_t *gm_ipv4_addresses,
OpenAPI_list_t *gm_ipv6_addresses
);
OpenAPI_list_t *gm_ipv6_addresses,
OpenAPI_list_t *served_ipv4_address_ranges,
OpenAPI_list_t *served_ipv6_prefix_ranges
);
void OpenAPI_pcscf_info_free(OpenAPI_pcscf_info_t *pcscf_info);
OpenAPI_pcscf_info_t *OpenAPI_pcscf_info_parseFromJSON(cJSON *pcscf_infoJSON);
cJSON *OpenAPI_pcscf_info_convertToJSON(OpenAPI_pcscf_info_t *pcscf_info);