Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for FieldValueForbidden (0.24 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	FieldValueInvalid FieldValueErrorReason = "FieldValueInvalid"
    	// FieldValueForbidden is used to report valid (as per formatting rules)
    	// values which would be accepted under some conditions, but which are not
    	// permitted by the current conditions (such as security policy).
    	FieldValueForbidden FieldValueErrorReason = "FieldValueForbidden"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	FieldValueInvalid FieldValueErrorReason = "FieldValueInvalid"
    	// FieldValueForbidden is used to report valid (as per formatting rules)
    	// values which would be accepted under some conditions, but which are not
    	// permitted by the current conditions (such as security policy).
    	FieldValueForbidden FieldValueErrorReason = "FieldValueForbidden"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	FieldValueInvalid FieldValueErrorReason = "FieldValueInvalid"
    	// FieldValueForbidden is used to report valid (as per formatting rules)
    	// values which would be accepted under some conditions, but which are not
    	// permitted by the current conditions (such as security policy).
    	FieldValueForbidden FieldValueErrorReason = "FieldValueForbidden"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	// values which would be accepted under some conditions, but which are not
    	// permitted by the current conditions (such as security policy).  See
    	// Forbidden().
    	ErrorTypeForbidden ErrorType = "FieldValueForbidden"
    	// ErrorTypeTooLong is used to report that the given value is too long.
    	// This is similar to ErrorTypeInvalid, but the error will not include the
    	// too-long value.  See TooLong().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	if reason == nil {
    		return field.Invalid(fldPath, value, detail)
    	}
    	switch *reason {
    	case apiextensions.FieldValueForbidden:
    		return field.Forbidden(fldPath, detail)
    	case apiextensions.FieldValueRequired:
    		return field.Required(fldPath, detail)
    	case apiextensions.FieldValueDuplicate:
    		return field.Duplicate(fldPath, value)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule.
      // The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate".
      // If not set, default to use "FieldValueInvalid".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    returned to the caller when a request fails this validation rule. The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule. The currently supported reasons are: \"FieldValueInvalid\", \"FieldValueForbidden\", \"FieldValueRequired\", \"FieldValueDuplicate\". If not set, default to use \"FieldValueInvalid\". All future added reasons must be accepted by clients when reading this value and unknown reasons should be treated as FieldValueInvalid.\n\nPossible...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule.
      // The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate".
      // If not set, default to use "FieldValueInvalid".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				}
    			}
    		})
    	}
    }
    
    func TestReasonAndFldPath(t *testing.T) {
    	forbiddenReason := func() *apiextensions.FieldValueErrorReason {
    		r := apiextensions.FieldValueForbidden
    		return &r
    	}()
    	tests := []struct {
    		name   string
    		schema *schema.Structural
    		obj    interface{}
    		errors field.ErrorList
    	}{
    		{name: "Return error based on input reason",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	StaticEstimatedCRDCostLimit = 100000000
    
    	MaxSelectableFields = 8
    )
    
    var supportedValidationReason = sets.NewString(
    	string(apiextensions.FieldValueRequired),
    	string(apiextensions.FieldValueForbidden),
    	string(apiextensions.FieldValueInvalid),
    	string(apiextensions.FieldValueDuplicate),
    )
    
    // ValidateCustomResourceDefinition statically validates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top