2024-05-18 13:20:54 +00:00
|
|
|
/*
|
|
|
|
|
* v1_match_resources.h
|
|
|
|
|
*
|
|
|
|
|
* MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _v1_match_resources_H_
|
|
|
|
|
#define _v1_match_resources_H_
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include "../external/cJSON.h"
|
|
|
|
|
#include "../include/list.h"
|
|
|
|
|
#include "../include/keyValuePair.h"
|
|
|
|
|
#include "../include/binary.h"
|
|
|
|
|
|
|
|
|
|
typedef struct v1_match_resources_t v1_match_resources_t;
|
|
|
|
|
|
|
|
|
|
#include "v1_label_selector.h"
|
|
|
|
|
#include "v1_named_rule_with_operations.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct v1_match_resources_t {
|
|
|
|
|
list_t *exclude_resource_rules; //nonprimitive container
|
|
|
|
|
char *match_policy; // string
|
|
|
|
|
struct v1_label_selector_t *namespace_selector; //model
|
|
|
|
|
struct v1_label_selector_t *object_selector; //model
|
|
|
|
|
list_t *resource_rules; //nonprimitive container
|
|
|
|
|
|
2025-02-11 19:36:46 +00:00
|
|
|
int _library_owned; // Is the library responsible for freeing this object?
|
2024-05-18 13:20:54 +00:00
|
|
|
} v1_match_resources_t;
|
|
|
|
|
|
2025-02-11 19:36:46 +00:00
|
|
|
__attribute__((deprecated)) v1_match_resources_t *v1_match_resources_create(
|
2024-05-18 13:20:54 +00:00
|
|
|
list_t *exclude_resource_rules,
|
|
|
|
|
char *match_policy,
|
|
|
|
|
v1_label_selector_t *namespace_selector,
|
|
|
|
|
v1_label_selector_t *object_selector,
|
|
|
|
|
list_t *resource_rules
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
void v1_match_resources_free(v1_match_resources_t *v1_match_resources);
|
|
|
|
|
|
|
|
|
|
v1_match_resources_t *v1_match_resources_parseFromJSON(cJSON *v1_match_resourcesJSON);
|
|
|
|
|
|
|
|
|
|
cJSON *v1_match_resources_convertToJSON(v1_match_resources_t *v1_match_resources);
|
|
|
|
|
|
|
|
|
|
#endif /* _v1_match_resources_H_ */
|
|
|
|
|
|