Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,201 for verb (0.13 sec)

  1. staging/src/k8s.io/api/authorization/v1/generated.proto

      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    message NonResourceRule {
      // Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  "*" means all.
      // +listType=atomic
      repeated string verbs = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/authorization.k8s.io.v1.LocalSubjectAccessReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/authorization.k8s.io.v1beta1.SubjectAccessReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/authorization.k8s.io.v1.SubjectAccessReview.yaml

      extra:
        extraKey:
        - extraValue
      groups:
      - groupsValue
      nonResourceAttributes:
        path: pathValue
        verb: verbValue
      resourceAttributes:
        group: groupValue
        name: nameValue
        namespace: namespaceValue
        resource: resourceValue
        subresource: subresourceValue
        verb: verbValue
        version: versionValue
      uid: uidValue
      user: userValue
    status:
      allowed: true
      denied: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/authorization.k8s.io.v1beta1.LocalSubjectAccessReview.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    			},
    		},
    		&core.SimpleReactor{
    			Verb:     "update",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    		},
    		&core.SimpleReactor{
    			Verb:     "delete",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    		},
    		&core.SimpleReactor{
    			Verb:     "delete-collection",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/errors_test.go

    `, authorizer.AttributesRecord{User: u, Verb: "GET", Path: "/whatever"}, "", "application/json"},
    		{`{"kind":"Status","apiVersion":"v1","metadata":{},"status":"Failure","message":"forbidden: User \"NAME\" cannot GET path \"/\u0026lt;script\u0026gt;\"","reason":"Forbidden","details":{},"code":403}
    `, authorizer.AttributesRecord{User: u, Verb: "GET", Path: "/<script>"}, "", "application/json"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 07:45:20 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.30.0/authorization.k8s.io.v1.SelfSubjectAccessReview.yaml

      selfLink: selfLinkValue
      uid: uidValue
    spec:
      nonResourceAttributes:
        path: pathValue
        verb: verbValue
      resourceAttributes:
        group: groupValue
        name: nameValue
        namespace: namespaceValue
        resource: resourceValue
        subresource: subresourceValue
        verb: verbValue
        version: versionValue
    status:
      allowed: true
      denied: true
      evaluationError: evaluationErrorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. pkg/apis/rbac/helpers_test.go

    	role := &rbac.Role{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    	clusterRole := &rbac.ClusterRole{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top