Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 396 for vers (1.61 sec)

  1. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    			Level:     audit.LevelRequestResponse,
    			Verbs:     []string{"get"},
    			Resources: []audit.GroupResources{{Resources: []string{"pods"}}},
    		},
    		"getPodLogs": {
    			Level:     audit.LevelRequest,
    			Verbs:     []string{"get"},
    			Resources: []audit.GroupResources{{Resources: []string{"pods/log"}}},
    		},
    		"getPodWildcardMatching": {
    			Level:     audit.LevelRequest,
    			Verbs:     []string{"get"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  2. pkg/apis/authorization/types.go

    	// "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
    	Namespace string
    	// Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
    	Verb string
    	// Group is the API Group of the Resource.  "*" means all.
    	Group string
    	// Version is the API Version of the Resource.  "*" means all.
    	Version string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  3. pkg/apis/rbac/helpers.go

    		}
    		// if resource names are set, then the verb must not be list, watch, create, or deletecollection
    		// since verbs are largely opaque, we don't want to accidentally prevent things like "impersonate", so
    		// we will backlist common mistakes, not whitelist acceptable options.
    		if len(r.PolicyRule.ResourceNames) != 0 {
    			illegalVerbs := []string{}
    			for _, verb := range r.PolicyRule.Verbs {
    				switch verb {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 23 15:11:00 UTC 2020
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    			IsResourceRequest: true,
    			Verb:              verbs[coord%nv],
    			APIGroup:          apiGroups[coord/nv%ng],
    			Resource:          resources[coord/nv/ng%nr],
    			Namespace:         namespaces[coord/nv/ng/nr]})
    	}
    	return ans
    }
    
    func genNRRIs(rng *rand.Rand, m int, verbs, urls []string) []*request.RequestInfo {
    	nv := len(verbs)
    	nu := len(urls)
    	coords := chooseInts(rng, nv*nu, m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    }
    
    func resourceRequest(verb string) *requestAttributeBuilder {
    	return &requestAttributeBuilder{
    		request: authorizer.AttributesRecord{ResourceRequest: true, Verb: verb},
    	}
    }
    
    func nonresourceRequest(verb string) *requestAttributeBuilder {
    	return &requestAttributeBuilder{
    		request: authorizer.AttributesRecord{ResourceRequest: false, Verb: verb},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"verb": "Verb is the standard HTTP verb",
    }
    
    func (NonResourceAttributes) SwaggerDoc() map[string]string {
    	return map_NonResourceAttributes
    }
    
    var map_NonResourceRule = map[string]string{
    	"":                "NonResourceRule holds information that describes a rule for the non-resource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. pkg/apis/authorization/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_NonResourceAttributes_To_authorization_NonResourceAttributes(in *v1.NonResourceAttributes, out *authorization.NonResourceAttributes, s conversion.Scope) error {
    	out.Path = in.Path
    	out.Verb = in.Verb
    	return nil
    }
    
    // Convert_v1_NonResourceAttributes_To_authorization_NonResourceAttributes is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 31.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    }
    
    // CanonicalVerb distinguishes LISTs from GETs (and HEADs). It assumes verb is
    // UPPERCASE.
    func CanonicalVerb(verb string, scope string) string {
    	switch verb {
    	case "GET", "HEAD":
    		if scope != "resource" && scope != "" {
    			return "LIST"
    		}
    		return "GET"
    	default:
    		return verb
    	}
    }
    
    // CleanVerb returns a normalized verb, so that it is easy to tell WATCH from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/authorization/v1/generated.proto

      // +optional
      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.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/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)
Back to top