Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for fieldValidation (0.58 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PatchOptions.json

    {
      "kind": "PatchOptions",
      "apiVersion": "v1",
      "dryRun": [
        "dryRunValue"
      ],
      "force": true,
      "fieldManager": "fieldManagerValue",
      "fieldValidation": "fieldValidationValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 188 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.UpdateOptions.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 172 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.UpdateOptions.yaml

    apiVersion: v1
    dryRun:
    - dryRunValue
    fieldManager: fieldManagerValue
    fieldValidation: fieldValidationValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 127 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PatchOptions.json

    {
      "kind": "PatchOptions",
      "apiVersion": "v1",
      "dryRun": [
        "dryRunValue"
      ],
      "force": true,
      "fieldManager": "fieldManagerValue",
      "fieldValidation": "fieldValidationValue"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 188 bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    // given VerifiableQueryParam against the current server.
    //
    // Currently supported query params are: fieldValidation
    //
    // Support for each of these query params needs to be verified because
    // we determine whether or not to perform server-side or client-side
    // schema validation based on whether the fieldValidation query param is
    // supported or not.
    //
    // It reads the OpenAPI to see if the given GVK supports the given query param.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

                "uniqueItems": true
              },
              {
                "$ref": "#/parameters/fieldManager-Qy4HdaTW"
              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	if !strings.Contains(u.RawQuery, "fieldValidation") {
    		return ""
    	}
    	fieldValidation := u.Query()["fieldValidation"]
    	if len(fieldValidation) != 1 {
    		return "invalid"
    	}
    	if errs := validation.ValidateFieldValidation(nil, fieldValidation[0]); len(errs) > 0 {
    		return "invalid"
    	}
    	return fieldValidation[0]
    }
    
    var _ http.ResponseWriter = (*ResponseWriterDelegator)(nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    		if !ok {
    			scope.err(fmt.Errorf("no serializer defined for %v", baseContentType), w, req)
    			return
    		}
    		gv := scope.Kind.GroupVersion()
    
    		validationDirective := fieldValidation(options.FieldValidation)
    		decodeSerializer := s.Serializer
    		if validationDirective == metav1.FieldValidationWarn || validationDirective == metav1.FieldValidationStrict {
    			decodeSerializer = s.StrictSerializer
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

          "in": "query",
          "name": "fieldSelector",
          "type": "string",
          "uniqueItems": true
        },
        "fieldValidation-6z4JVnjK": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              "in": "query",
              "name": "fieldManager",
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
Back to top