k3s/pkg/apis/authorization/v1beta1/generated.proto

185 lines
7.0 KiB
Protocol Buffer
Raw Normal View History

2016-08-02 13:14:58 +00:00
/*
Copyright 2016 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// This file was autogenerated by go-to-protobuf. Do not edit it manually!
syntax = 'proto2';
package k8s.io.kubernetes.pkg.apis.authorization.v1beta1;
import "k8s.io/kubernetes/pkg/api/resource/generated.proto";
import "k8s.io/kubernetes/pkg/api/unversioned/generated.proto";
import "k8s.io/kubernetes/pkg/api/v1/generated.proto";
import "k8s.io/kubernetes/pkg/runtime/generated.proto";
import "k8s.io/kubernetes/pkg/util/intstr/generated.proto";
// Package-wide variables from generator "generated".
option go_package = "v1beta1";
// ExtraValue masks the value so protobuf can generate
// +protobuf.nullable=true
// +protobuf.options.(gogoproto.goproto_stringer)=false
message ExtraValue {
// items, if empty, will result in an empty slice
repeated string items = 1;
}
// LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace.
// Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions
// checking.
message LocalSubjectAccessReview {
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1;
// Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace
// you made the request against. If empty, it is defaulted.
optional SubjectAccessReviewSpec spec = 2;
// Status is filled in by the server and indicates whether the request is allowed or not
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional SubjectAccessReviewStatus status = 3;
}
// NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
message NonResourceAttributes {
// Path is the URL path of the request
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string path = 1;
// Verb is the standard HTTP verb
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string verb = 2;
}
// ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
message ResourceAttributes {
// Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces
// "" (empty) is defaulted for LocalSubjectAccessReviews
// "" (empty) is empty for cluster-scoped resources
// "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string namespace = 1;
// Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string verb = 2;
// Group is the API Group of the Resource. "*" means all.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string group = 3;
// Version is the API Version of the Resource. "*" means all.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string version = 4;
// Resource is one of the existing resource types. "*" means all.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string resource = 5;
// Subresource is one of the existing resource types. "" means none.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string subresource = 6;
// Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string name = 7;
}
// SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a
// spec.namespace means "in all namespaces". Self is a special case, because users should always be able
// to check whether they can perform an action
message SelfSubjectAccessReview {
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1;
// Spec holds information about the request being evaluated. user and groups must be empty
optional SelfSubjectAccessReviewSpec spec = 2;
// Status is filled in by the server and indicates whether the request is allowed or not
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional SubjectAccessReviewStatus status = 3;
}
// SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes
// and NonResourceAuthorizationAttributes must be set
message SelfSubjectAccessReviewSpec {
// ResourceAuthorizationAttributes describes information for a resource access request
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional ResourceAttributes resourceAttributes = 1;
// NonResourceAttributes describes information for a non-resource access request
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional NonResourceAttributes nonResourceAttributes = 2;
}
// SubjectAccessReview checks whether or not a user or group can perform an action.
message SubjectAccessReview {
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional k8s.io.kubernetes.pkg.api.v1.ObjectMeta metadata = 1;
// Spec holds information about the request being evaluated
optional SubjectAccessReviewSpec spec = 2;
// Status is filled in by the server and indicates whether the request is allowed or not
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional SubjectAccessReviewStatus status = 3;
}
// SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes
// and NonResourceAuthorizationAttributes must be set
message SubjectAccessReviewSpec {
// ResourceAuthorizationAttributes describes information for a resource access request
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional ResourceAttributes resourceAttributes = 1;
// NonResourceAttributes describes information for a non-resource access request
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional NonResourceAttributes nonResourceAttributes = 2;
// User is the user you're testing for.
// If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string verb = 3;
// Groups is the groups you're testing for.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
repeated string group = 4;
// Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer
// it needs a reflection here.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
map<string, ExtraValue> extra = 5;
}
// SubjectAccessReviewStatus
message SubjectAccessReviewStatus {
// Allowed is required. True if the action would be allowed, false otherwise.
optional bool allowed = 1;
// Reason is optional. It indicates why a request was allowed or denied.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string reason = 2;
// 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.
2016-10-17 16:11:20 +00:00
// +optional
2016-08-02 13:14:58 +00:00
optional string evaluationError = 3;
}