Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for UserSubject (0.17 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    const (
    	SubjectKindUser           SubjectKind = "User"
    	SubjectKindGroup          SubjectKind = "Group"
    	SubjectKindServiceAccount SubjectKind = "ServiceAccount"
    )
    
    // UserSubject holds detailed information for user-kind subject.
    type UserSubject struct {
    	// `name` is the username that matches, or "*" to match all usernames.
    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types_swagger_doc_generated.go

    func (Subject) SwaggerDoc() map[string]string {
    	return map_Subject
    }
    
    var map_UserSubject = map[string]string{
    	"":     "UserSubject holds detailed information for user-kind subject.",
    	"name": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
    }
    
    func (UserSubject) SwaggerDoc() map[string]string {
    	return map_UserSubject
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/flowcontrol/v1beta3/types_swagger_doc_generated.go

    func (Subject) SwaggerDoc() map[string]string {
    	return map_Subject
    }
    
    var map_UserSubject = map[string]string{
    	"":     "UserSubject holds detailed information for user-kind subject.",
    	"name": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
    }
    
    func (UserSubject) SwaggerDoc() map[string]string {
    	return map_UserSubject
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:00:06 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1beta1/types_swagger_doc_generated.go

    func (Subject) SwaggerDoc() map[string]string {
    	return map_Subject
    }
    
    var map_UserSubject = map[string]string{
    	"":     "UserSubject holds detailed information for user-kind subject.",
    	"name": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
    }
    
    func (UserSubject) SwaggerDoc() map[string]string {
    	return map_UserSubject
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta2/types_swagger_doc_generated.go

    func (Subject) SwaggerDoc() map[string]string {
    	return map_Subject
    }
    
    var map_UserSubject = map[string]string{
    	"":     "UserSubject holds detailed information for user-kind subject.",
    	"name": "`name` is the username that matches, or \"*\" to match all usernames. Required.",
    }
    
    func (UserSubject) SwaggerDoc() map[string]string {
    	return map_UserSubject
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	ans := make([]flowcontrol.Subject, len(names))
    	for idx, name := range names {
    		ans[idx] = flowcontrol.Subject{
    			Kind: flowcontrol.SubjectKindUser,
    			User: &flowcontrol.UserSubject{
    				Name: name,
    			},
    		}
    	}
    	return ans
    }
    
    func kubeSystemServiceAccount(names ...string) []flowcontrol.Subject {
    	subjects := []flowcontrol.Subject{}
    	for _, name := range names {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. pkg/apis/flowcontrol/validation/validation.go

    	}
    
    	return allErrs
    }
    
    // ValidateUserSubject validates subject of "User" kind
    func ValidateUserSubject(subject *flowcontrol.UserSubject, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	if subject == nil {
    		return append(allErrs, field.Required(fldPath, "user is required when subject kind is 'User'"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			},
    			Rules: []flowcontrol.PolicyRulesWithSubjects{
    				{
    					Subjects: []flowcontrol.Subject{
    						{
    							Kind: flowcontrol.SubjectKindUser,
    							User: &flowcontrol.UserSubject{
    								Name: user,
    							},
    						},
    					},
    					NonResourceRules: []flowcontrol.NonResourcePolicyRule{
    						{
    							Verbs:           []string{flowcontrol.VerbAll},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1beta3_openapi.json

                  "serviceAccount": "ServiceAccount",
                  "user": "User"
                }
              }
            ]
          },
          "io.k8s.api.flowcontrol.v1beta3.UserSubject": {
            "description": "UserSubject holds detailed information for user-kind subject.",
            "properties": {
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 232.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__flowcontrol.apiserver.k8s.io__v1_openapi.json

                  "serviceAccount": "ServiceAccount",
                  "user": "User"
                }
              }
            ]
          },
          "io.k8s.api.flowcontrol.v1.UserSubject": {
            "description": "UserSubject holds detailed information for user-kind subject.",
            "properties": {
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 231.7K bytes
    - Viewed (0)
Back to top