All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.operatorsdk.annotations.RBACRule Maven / Gradle / Ivy

There is a newer version: 6.9.0
Show newest version
package io.quarkiverse.operatorsdk.annotations;

import java.lang.annotation.*;

@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE })
@Repeatable(AdditionalRBACRules.class)
@SuppressWarnings("unused")
public @interface RBACRule {
    /**
     * Represents a wildcard string that matches any RBAC-related value (verb, resource, etc…).
     */
    String ALL = "*";

    String[] apiGroups() default {};

    String[] verbs();

    String[] resources() default {};

    String[] resourceNames() default {};

    String[] nonResourceURLs() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy