Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for ResourceAttributes (0.22 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		{
    			name:               "match on user name but not resourceAttributes",
    			attr:               bobAttr,
    			expectedCompileErr: "",
    			expectedDecision:   authorizer.DecisionNoOpinion,
    			expressions: []apiserver.WebhookMatchCondition{
    				{
    					Expression: "request.user == 'bob'",
    				},
    				{
    					Expression: "has(request.resourceAttributes) && request.resourceAttributes.namespace == 'kittensandponies'",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1beta1/types.go

    type SubjectAccessReviewSpec struct {
    	// ResourceAuthorizationAttributes describes information for a resource access request
    	// +optional
    	ResourceAttributes *ResourceAttributes `json:"resourceAttributes,omitempty" protobuf:"bytes,1,opt,name=resourceAttributes"`
    	// NonResourceAttributes describes information for a non-resource access request
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1/types.go

    type SubjectAccessReviewSpec struct {
    	// ResourceAuthorizationAttributes describes information for a resource access request
    	// +optional
    	ResourceAttributes *ResourceAttributes `json:"resourceAttributes,omitempty" protobuf:"bytes,1,opt,name=resourceAttributes"`
    	// NonResourceAttributes describes information for a non-resource access request
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    		UID:                   in.UID,
    	}
    }
    
    func v1ResourceAttributesToV1beta1ResourceAttributes(in *authorizationv1.ResourceAttributes) *authorizationv1beta1.ResourceAttributes {
    	if in == nil {
    		return nil
    	}
    	return &authorizationv1beta1.ResourceAttributes{
    		Namespace:   in.Namespace,
    		Verb:        in.Verb,
    		Group:       in.Group,
    		Version:     in.Version,
    		Resource:    in.Resource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // final step in the path.  "*" means all.
      // +optional
      repeated string nonResourceURLs = 2;
    }
    
    // ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
    message ResourceAttributes {
      // Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authorization/v1/generated.proto

      // final step in the path.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string nonResourceURLs = 2;
    }
    
    // ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
    message ResourceAttributes {
      // Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/authorization/v1/generated.proto

      // final step in the path.  "*" means all.
      // +optional
      repeated string nonResourceURLs = 2;
    }
    
    // ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
    message ResourceAttributes {
      // Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1beta1/generated.proto

      // final step in the path.  "*" means all.
      // +optional
      // +listType=atomic
      repeated string nonResourceURLs = 2;
    }
    
    // ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
    message ResourceAttributes {
      // Namespace is the namespace of the action being requested.  Currently, there is no distinction between no namespace and all namespaces
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    }
    
    func (NonResourceRule) SwaggerDoc() map[string]string {
    	return map_NonResourceRule
    }
    
    var map_ResourceAttributes = map[string]string{
    	"":            "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    }
    
    func (NonResourceRule) SwaggerDoc() map[string]string {
    	return map_NonResourceRule
    }
    
    var map_ResourceAttributes = map[string]string{
    	"":            "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top