...

Text file src/k8s.io/api/rbac/v1alpha1/generated.proto

Documentation: k8s.io/api/rbac/v1alpha1

     1/*
     2Copyright The Kubernetes Authors.
     3
     4Licensed under the Apache License, Version 2.0 (the "License");
     5you may not use this file except in compliance with the License.
     6You may obtain a copy of the License at
     7
     8    http://www.apache.org/licenses/LICENSE-2.0
     9
    10Unless required by applicable law or agreed to in writing, software
    11distributed under the License is distributed on an "AS IS" BASIS,
    12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13See the License for the specific language governing permissions and
    14limitations under the License.
    15*/
    16
    17
    18// This file was autogenerated by go-to-protobuf. Do not edit it manually!
    19
    20syntax = "proto2";
    21
    22package k8s.io.api.rbac.v1alpha1;
    23
    24import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    25import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    26import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    27
    28// Package-wide variables from generator "generated".
    29option go_package = "k8s.io/api/rbac/v1alpha1";
    30
    31// AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    32message AggregationRule {
    33  // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
    34  // If any of the selectors match, then the ClusterRole's permissions will be added
    35  // +optional
    36  // +listType=atomic
    37  repeated k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector clusterRoleSelectors = 1;
    38}
    39
    40// ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.
    41// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRole, and will no longer be served in v1.22.
    42message ClusterRole {
    43  // Standard object's metadata.
    44  // +optional
    45  optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    46
    47  // Rules holds all the PolicyRules for this ClusterRole
    48  // +optional
    49  // +listType=atomic
    50  repeated PolicyRule rules = 2;
    51
    52  // AggregationRule is an optional field that describes how to build the Rules for this ClusterRole.
    53  // If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be
    54  // stomped by the controller.
    55  // +optional
    56  optional AggregationRule aggregationRule = 3;
    57}
    58
    59// ClusterRoleBinding references a ClusterRole, but not contain it.  It can reference a ClusterRole in the global namespace,
    60// and adds who information via Subject.
    61// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBinding, and will no longer be served in v1.22.
    62message ClusterRoleBinding {
    63  // Standard object's metadata.
    64  // +optional
    65  optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    66
    67  // Subjects holds references to the objects the role applies to.
    68  // +optional
    69  // +listType=atomic
    70  repeated Subject subjects = 2;
    71
    72  // RoleRef can only reference a ClusterRole in the global namespace.
    73  // If the RoleRef cannot be resolved, the Authorizer must return an error.
    74  optional RoleRef roleRef = 3;
    75}
    76
    77// ClusterRoleBindingList is a collection of ClusterRoleBindings.
    78// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoleBindings, and will no longer be served in v1.22.
    79message ClusterRoleBindingList {
    80  // Standard object's metadata.
    81  // +optional
    82  optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    83
    84  // Items is a list of ClusterRoleBindings
    85  repeated ClusterRoleBinding items = 2;
    86}
    87
    88// ClusterRoleList is a collection of ClusterRoles.
    89// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 ClusterRoles, and will no longer be served in v1.22.
    90message ClusterRoleList {
    91  // Standard object's metadata.
    92  // +optional
    93  optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    94
    95  // Items is a list of ClusterRoles
    96  repeated ClusterRole items = 2;
    97}
    98
    99// PolicyRule holds information that describes a policy rule, but does not contain information
   100// about who the rule applies to or which namespace the rule applies to.
   101message PolicyRule {
   102  // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
   103  // +listType=atomic
   104  repeated string verbs = 1;
   105
   106  // APIGroups is the name of the APIGroup that contains the resources.  If multiple API groups are specified, any action requested against one of
   107  // the enumerated resources in any API group will be allowed. "" represents the core API group and "*" represents all API groups.
   108  // +optional
   109  // +listType=atomic
   110  repeated string apiGroups = 3;
   111
   112  // Resources is a list of resources this rule applies to. '*' represents all resources.
   113  // +optional
   114  // +listType=atomic
   115  repeated string resources = 4;
   116
   117  // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
   118  // +optional
   119  // +listType=atomic
   120  repeated string resourceNames = 5;
   121
   122  // NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path
   123  // Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding.
   124  // Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"),  but not both.
   125  // +optional
   126  // +listType=atomic
   127  repeated string nonResourceURLs = 6;
   128}
   129
   130// Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.
   131// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 Role, and will no longer be served in v1.22.
   132message Role {
   133  // Standard object's metadata.
   134  // +optional
   135  optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
   136
   137  // Rules holds all the PolicyRules for this Role
   138  // +optional
   139  // +listType=atomic
   140  repeated PolicyRule rules = 2;
   141}
   142
   143// RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
   144// It adds who information via Subjects and namespace information by which namespace it exists in.  RoleBindings in a given
   145// namespace only have effect in that namespace.
   146// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBinding, and will no longer be served in v1.22.
   147message RoleBinding {
   148  // Standard object's metadata.
   149  // +optional
   150  optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
   151
   152  // Subjects holds references to the objects the role applies to.
   153  // +optional
   154  // +listType=atomic
   155  repeated Subject subjects = 2;
   156
   157  // RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace.
   158  // If the RoleRef cannot be resolved, the Authorizer must return an error.
   159  optional RoleRef roleRef = 3;
   160}
   161
   162// RoleBindingList is a collection of RoleBindings
   163// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleBindingList, and will no longer be served in v1.22.
   164message RoleBindingList {
   165  // Standard object's metadata.
   166  // +optional
   167  optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
   168
   169  // Items is a list of RoleBindings
   170  repeated RoleBinding items = 2;
   171}
   172
   173// RoleList is a collection of Roles.
   174// Deprecated in v1.17 in favor of rbac.authorization.k8s.io/v1 RoleList, and will no longer be served in v1.22.
   175message RoleList {
   176  // Standard object's metadata.
   177  // +optional
   178  optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
   179
   180  // Items is a list of Roles
   181  repeated Role items = 2;
   182}
   183
   184// RoleRef contains information that points to the role being used
   185message RoleRef {
   186  // APIGroup is the group for the resource being referenced
   187  optional string apiGroup = 1;
   188
   189  // Kind is the type of resource being referenced
   190  optional string kind = 2;
   191
   192  // Name is the name of resource being referenced
   193  optional string name = 3;
   194}
   195
   196// Subject contains a reference to the object or user identities a role binding applies to.  This can either hold a direct API object reference,
   197// or a value for non-objects such as user and group names.
   198message Subject {
   199  // Kind of object being referenced. Values defined by this API group are "User", "Group", and "ServiceAccount".
   200  // If the Authorizer does not recognized the kind value, the Authorizer should report an error.
   201  optional string kind = 1;
   202
   203  // APIVersion holds the API group and version of the referenced subject.
   204  // Defaults to "v1" for ServiceAccount subjects.
   205  // Defaults to "rbac.authorization.k8s.io/v1alpha1" for User and Group subjects.
   206  // +k8s:conversion-gen=false
   207  // +optional
   208  optional string apiVersion = 2;
   209
   210  // Name of the object being referenced.
   211  optional string name = 3;
   212
   213  // Namespace of the referenced object.  If the object kind is non-namespace, such as "User" or "Group", and this value is not empty
   214  // the Authorizer should report an error.
   215  // +optional
   216  optional string namespace = 4;
   217}
   218

View as plain text