Sha256: f199ac028d32f4461663f03ddb5af41a1f3b0f0f74eafd83365bfbfc23bb6d23
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 KB
Contents
# Zilla::IoK8sApiAuthorizationV1SubjectAccessReviewStatus ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **allowed** | **Boolean** | Allowed is required. True if the action would be allowed, false otherwise. | | | **denied** | **Boolean** | Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true. | [optional] | | **evaluation_error** | **String** | EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request. | [optional] | | **reason** | **String** | Reason is optional. It indicates why a request was allowed or denied. | [optional] | ## Example ```ruby require 'zilla' instance = Zilla::IoK8sApiAuthorizationV1SubjectAccessReviewStatus.new( allowed: null, denied: null, evaluation_error: null, reason: null ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
zilla-0.2.0 | docs/IoK8sApiAuthorizationV1SubjectAccessReviewStatus.md |