Files
c/kubernetes/model/v1_self_subject_rules_review.h
Hui Yu ab432efa49 [API] Re-run code generator to merge the changes of OpenAPITools/openapi-generator to fix the bug:
* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
2020-06-20 09:41:15 +08:00

49 lines
2.0 KiB
C

/*
* v1_self_subject_rules_review.h
*
* SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.
*/
#ifndef _v1_self_subject_rules_review_H_
#define _v1_self_subject_rules_review_H_
#include <string.h>
#include "../external/cJSON.h"
#include "../include/list.h"
#include "../include/keyValuePair.h"
#include "../include/binary.h"
typedef struct v1_self_subject_rules_review_t v1_self_subject_rules_review_t;
#include "v1_object_meta.h"
#include "v1_self_subject_rules_review_spec.h"
#include "v1_subject_rules_review_status.h"
typedef struct v1_self_subject_rules_review_t {
char *api_version; // string
char *kind; // string
struct v1_object_meta_t *metadata; //model
struct v1_self_subject_rules_review_spec_t *spec; //model
struct v1_subject_rules_review_status_t *status; //model
} v1_self_subject_rules_review_t;
v1_self_subject_rules_review_t *v1_self_subject_rules_review_create(
char *api_version,
char *kind,
v1_object_meta_t *metadata,
v1_self_subject_rules_review_spec_t *spec,
v1_subject_rules_review_status_t *status
);
void v1_self_subject_rules_review_free(v1_self_subject_rules_review_t *v1_self_subject_rules_review);
v1_self_subject_rules_review_t *v1_self_subject_rules_review_parseFromJSON(cJSON *v1_self_subject_rules_reviewJSON);
cJSON *v1_self_subject_rules_review_convertToJSON(v1_self_subject_rules_review_t *v1_self_subject_rules_review);
#endif /* _v1_self_subject_rules_review_H_ */