* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* v1_rule_with_operations.h
|
|
*
|
|
* RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.
|
|
*/
|
|
|
|
#ifndef _v1_rule_with_operations_H_
|
|
#define _v1_rule_with_operations_H_
|
|
|
|
#include <string.h>
|
|
#include "../external/cJSON.h"
|
|
#include "../include/list.h"
|
|
#include "../include/keyValuePair.h"
|
|
#include "../include/binary.h"
|
|
|
|
typedef struct v1_rule_with_operations_t v1_rule_with_operations_t;
|
|
|
|
|
|
|
|
|
|
typedef struct v1_rule_with_operations_t {
|
|
list_t *api_groups; //primitive container
|
|
list_t *api_versions; //primitive container
|
|
list_t *operations; //primitive container
|
|
list_t *resources; //primitive container
|
|
char *scope; // string
|
|
|
|
} v1_rule_with_operations_t;
|
|
|
|
v1_rule_with_operations_t *v1_rule_with_operations_create(
|
|
list_t *api_groups,
|
|
list_t *api_versions,
|
|
list_t *operations,
|
|
list_t *resources,
|
|
char *scope
|
|
);
|
|
|
|
void v1_rule_with_operations_free(v1_rule_with_operations_t *v1_rule_with_operations);
|
|
|
|
v1_rule_with_operations_t *v1_rule_with_operations_parseFromJSON(cJSON *v1_rule_with_operationsJSON);
|
|
|
|
cJSON *v1_rule_with_operations_convertToJSON(v1_rule_with_operations_t *v1_rule_with_operations);
|
|
|
|
#endif /* _v1_rule_with_operations_H_ */
|
|
|