io.k8s.api.rbac.v1.AggregationRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.rbac.v1;
import io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector;
import java.util.List;
/**
* AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
*/
public class AggregationRule {
public List clusterRoleSelectors;
/**
* 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
*/
public AggregationRule clusterRoleSelectors(List clusterRoleSelectors) {
this.clusterRoleSelectors = clusterRoleSelectors;
return this;
}
public static AggregationRule aggregationRule() {
return new AggregationRule();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy