@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
29 lines (28 loc) • 1.39 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { IoK8sApimachineryPkgApisMetaV1LabelSelector } from './';
/**
* AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
* @export
* @interface IoK8sApiRbacV1AggregationRule
*/
export interface IoK8sApiRbacV1AggregationRule {
/**
* ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added
* @type {Array<IoK8sApimachineryPkgApisMetaV1LabelSelector>}
* @memberof IoK8sApiRbacV1AggregationRule
*/
clusterRoleSelectors?: Array<IoK8sApimachineryPkgApisMetaV1LabelSelector>;
}
export declare function IoK8sApiRbacV1AggregationRuleFromJSON(json: any): IoK8sApiRbacV1AggregationRule;
export declare function IoK8sApiRbacV1AggregationRuleFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiRbacV1AggregationRule;
export declare function IoK8sApiRbacV1AggregationRuleToJSON(value?: IoK8sApiRbacV1AggregationRule | null): any;