Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 263 for verb2 (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authorization_test.go

    				Verb: "get",
    				Path: "/api/",
    			},
    		},
    		"non-resource group api prefix": {
    			Verb: "GET",
    			Path: "/apis/extensions/",
    			ExpectedAttributes: &authorizer.AttributesRecord{
    				Verb: "get",
    				Path: "/apis/extensions/",
    			},
    		},
    
    		"resource": {
    			Verb: "POST",
    			Path: "/api/v1/nodes/mynode",
    			ExpectedAttributes: &authorizer.AttributesRecord{
    				Verb:            "create",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/audit/policy/reader_test.go

        resources:
        - "leases"
        verbs: ["watch", "get", "list"] # invalid indentation on verbs
    `
    
    var expectedPolicy = &audit.Policy{
    	Rules: []audit.PolicyRule{{
    		Level:           audit.LevelNone,
    		NonResourceURLs: []string{"/healthz*", "/version"},
    	}, {
    		Level:      audit.LevelRequestResponse,
    		Users:      []string{"tim"},
    		UserGroups: []string{"testers", "developers"},
    		Verbs:      []string{"patch", "delete", "create"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. api/discovery/apis__authentication.k8s.io__v1.json

          "name": "selfsubjectreviews",
          "namespaced": false,
          "singularName": "selfsubjectreview",
          "verbs": [
            "create"
          ]
        },
        {
          "kind": "TokenReview",
          "name": "tokenreviews",
          "namespaced": false,
          "singularName": "tokenreview",
          "verbs": [
            "create"
          ]
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 495 bytes
    - Viewed (0)
  4. pkg/apis/apidiscovery/zz_generated.deepcopy.go

    	*out = *in
    	if in.ResponseKind != nil {
    		in, out := &in.ResponseKind, &out.ResponseKind
    		*out = new(v1.GroupVersionKind)
    		**out = **in
    	}
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2beta1/zz_generated.deepcopy.go

    	*out = *in
    	if in.ResponseKind != nil {
    		in, out := &in.ResponseKind, &out.ResponseKind
    		*out = new(v1.GroupVersionKind)
    		**out = **in
    	}
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. pkg/kubelet/server/auth.go

    // Default attributes are: {apiVersion=v1,verb=<http verb from request>,resource=nodes,name=<node name>,subresource=proxy}
    // More specific verb/resource is set for the following request patterns:
    //
    //	/stats/*   => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=stats
    //	/metrics/* => verb=<api verb from request>, resource=nodes, name=<node name>, subresource=metrics
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. api/discovery/apis__internal.apiserver.k8s.io__v1alpha1.json

          "storageVersionHash": "c8YZt5U0nPk=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "StorageVersion",
          "name": "storageversions/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 703 bytes
    - Viewed (0)
  8. api/discovery/apis__apiregistration.k8s.io__v1.json

          "storageVersionHash": "InPBPD7+PqM=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "APIService",
          "name": "apiservices/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 27 19:53:45 UTC 2023
    - 730 bytes
    - Viewed (0)
  9. pkg/registry/authorization/util/helpers_test.go

    	knownResourceAttributesNames := sets.NewString(
    		// Fields we copy in ResourceAttributesFrom
    		"Verb",
    		"Namespace",
    		"Group",
    		"Version",
    		"Resource",
    		"Subresource",
    		"Name",
    
    		// Fields we copy in NonResourceAttributesFrom
    		"Path",
    		"Verb",
    	)
    	reflect.TypeOf(authorizationapi.ResourceAttributes{}).FieldByNameFunc(func(name string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. pkg/apis/rbac/v1/evaluation_helpers.go

    	if len(r.ResourceNames) > 0 {
    		formatStringParts = append(formatStringParts, "ResourceNames:%q")
    		formatArgs = append(formatArgs, r.ResourceNames)
    	}
    	if len(r.Verbs) > 0 {
    		formatStringParts = append(formatStringParts, "Verbs:%q")
    		formatArgs = append(formatArgs, r.Verbs)
    	}
    	formatString := "{" + strings.Join(formatStringParts, ", ") + "}"
    	return fmt.Sprintf(formatString, formatArgs...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top