Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for evaluationError (0.2 sec)

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

    	return authorizationv1beta1.SubjectAccessReviewStatus{
    		Allowed:         in.Allowed,
    		Denied:          in.Denied,
    		Reason:          in.Reason,
    		EvaluationError: in.EvaluationError,
    	}
    }
    
    // v1beta1SpecToV1Spec is only needed to verify round-trip fidelity
    func v1beta1SpecToV1Spec(in authorizationv1beta1.SubjectAccessReviewSpec) authorizationv1.SubjectAccessReviewSpec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. pkg/registry/authorization/subjectaccessreview/rest_test.go

    				Path:            "/mypath",
    				ResourceRequest: false,
    			},
    			expectedStatus: authorizationapi.SubjectAccessReviewStatus{
    				Allowed:         false,
    				Reason:          "myreason",
    				EvaluationError: "myerror",
    			},
    		},
    
    		"nonresource allowed": {
    			spec: authorizationapi.SubjectAccessReviewSpec{
    				User:                  "bob",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 16:06:18 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. pkg/apis/authorization/v1/zz_generated.conversion.go

    	out.Allowed = in.Allowed
    	out.Denied = in.Denied
    	out.Reason = in.Reason
    	out.EvaluationError = in.EvaluationError
    	return nil
    }
    
    // Convert_v1_SubjectAccessReviewStatus_To_authorization_SubjectAccessReviewStatus 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)
  4. staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SelfSubjectAccessReview.json

        },
        "nonResourceAttributes": {
          "path": "pathValue",
          "verb": "verbValue"
        }
      },
      "status": {
        "allowed": true,
        "denied": true,
        "reason": "reasonValue",
        "evaluationError": "evaluationErrorValue"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SubjectAccessReview.json

        ],
        "extra": {
          "extraKey": [
            "extraValue"
          ]
        },
        "uid": "uidValue"
      },
      "status": {
        "allowed": true,
        "denied": true,
        "reason": "reasonValue",
        "evaluationError": "evaluationErrorValue"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/authorization.k8s.io.v1.SubjectAccessReview.yaml

        resource: resourceValue
        subresource: subresourceValue
        verb: verbValue
        version: versionValue
      uid: uidValue
      user: userValue
    status:
      allowed: true
      denied: true
      evaluationError: evaluationErrorValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	// EvaluationError can appear in combination with Rules. It indicates an error occurred during
    	// rule evaluation, such as an authorizer that doesn't support rule evaluation, and that
    	// ResourceRules and/or NonResourceRules may be incomplete.
    	// +optional
    	EvaluationError string `json:"evaluationError,omitempty" protobuf:"bytes,4,opt,name=evaluationError"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/types.go

    	// EvaluationError can appear in combination with Rules. It indicates an error occurred during
    	// rule evaluation, such as an authorizer that doesn't support rule evaluation, and that
    	// ResourceRules and/or NonResourceRules may be incomplete.
    	// +optional
    	EvaluationError string `json:"evaluationError,omitempty" protobuf:"bytes,4,opt,name=evaluationError"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. pkg/apis/authorization/v1beta1/zz_generated.conversion.go

    	out.Allowed = in.Allowed
    	out.Denied = in.Denied
    	out.Reason = in.Reason
    	out.EvaluationError = in.EvaluationError
    	return nil
    }
    
    // Convert_v1beta1_SubjectAccessReviewStatus_To_authorization_SubjectAccessReviewStatus is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 32.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/authorization.k8s.io.v1.SelfSubjectRulesReview.yaml

        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      namespace: namespaceValue
    status:
      evaluationError: evaluationErrorValue
      incomplete: true
      nonResourceRules:
      - nonResourceURLs:
        - nonResourceURLsValue
        verbs:
        - verbsValue
      resourceRules:
      - apiGroups:
        - apiGroupsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top