Interface RBACOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RBAC,RBAC.Builder
public interface RBACOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RBACgetRules()Specify the RBAC rules to be applied globally.RBACOrBuildergetRulesOrBuilder()Specify the RBAC rules to be applied globally.RBACgetShadowRules()Shadow rules are not enforced by the filter (i.e., returning a 403) but will emit stats and logs and can be used for rule testing.RBACOrBuildergetShadowRulesOrBuilder()Shadow rules are not enforced by the filter (i.e., returning a 403) but will emit stats and logs and can be used for rule testing.booleanhasRules()Specify the RBAC rules to be applied globally.booleanhasShadowRules()Shadow rules are not enforced by the filter (i.e., returning a 403) but will emit stats and logs and can be used for rule testing.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRules
boolean hasRules()
Specify the RBAC rules to be applied globally. If absent, no enforcing RBAC policy will be applied.
.envoy.config.rbac.v2.RBAC rules = 1;
-
getRules
RBAC getRules()
Specify the RBAC rules to be applied globally. If absent, no enforcing RBAC policy will be applied.
.envoy.config.rbac.v2.RBAC rules = 1;
-
getRulesOrBuilder
RBACOrBuilder getRulesOrBuilder()
Specify the RBAC rules to be applied globally. If absent, no enforcing RBAC policy will be applied.
.envoy.config.rbac.v2.RBAC rules = 1;
-
hasShadowRules
boolean hasShadowRules()
Shadow rules are not enforced by the filter (i.e., returning a 403) but will emit stats and logs and can be used for rule testing. If absent, no shadow RBAC policy will be applied.
.envoy.config.rbac.v2.RBAC shadow_rules = 2;
-
getShadowRules
RBAC getShadowRules()
Shadow rules are not enforced by the filter (i.e., returning a 403) but will emit stats and logs and can be used for rule testing. If absent, no shadow RBAC policy will be applied.
.envoy.config.rbac.v2.RBAC shadow_rules = 2;
-
getShadowRulesOrBuilder
RBACOrBuilder getShadowRulesOrBuilder()
Shadow rules are not enforced by the filter (i.e., returning a 403) but will emit stats and logs and can be used for rule testing. If absent, no shadow RBAC policy will be applied.
.envoy.config.rbac.v2.RBAC shadow_rules = 2;
-
-