Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for Required (0.17 sec)

  1. tests/test_include_router_defaults_overrides.py

                        "summary": "Path1 Override",
                        "operationId": "path1_override_override1_get",
                        "parameters": [
                            {
                                "required": True,
                                "schema": {"title": "Level1", "type": "string"},
                                "name": "level1",
                                "in": "query",
                            }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 358.6K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	if nodeAffinity == nil {
    		return false, allErrs
    	}
    
    	if nodeAffinity.Required != nil {
    		allErrs = append(allErrs, ValidateNodeSelector(nodeAffinity.Required, fldPath.Child("required"))...)
    	} else {
    		allErrs = append(allErrs, field.Required(fldPath.Child("required"), "must specify required node constraints"))
    	}
    
    	return true, allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				invalid("status", "storedVersions"),
    				invalid("metadata", "name"),
    				invalid("spec", "versions"),
    				required("spec", "group"),
    				required("spec", "scope"),
    				required("spec", "names", "plural"),
    				required("spec", "names", "singular"),
    				required("spec", "names", "kind"),
    				required("spec", "names", "listKind"),
    			},
    		},
    		{
    			name: "bad names 01",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                              type: string
                          required:
                          - name
                          type: object
                      required:
                      - controllerName
                      - parentRef
                      type: object
                    maxItems: 32
                    type: array
                required:
                - parents
                type: object
            required:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    type ISCSIVolumeSource struct {
    	// Required: iSCSI target portal
    	// the portal is either an IP or ip_addr:port if port is other than default (typically TCP ports 860 and 3260)
    	// +optional
    	TargetPortal string
    	// Required:  target iSCSI Qualified Name
    	// +optional
    	IQN string
    	// Required: iSCSI target lun number
    	// +optional
    	Lun int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Default:     "",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    				},
    				Required: []string{"jsonPath"},
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "Specifies the required Pod condition status. To match a pod condition it is required that the specified status equals the pod condition status. Defaults to True.",
                "type": "string"
              },
              "type": {
                "default": "",
                "description": "Specifies the required Pod condition type. To match a pod condition it is required that specified type equals the pod condition type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              },
              "driver": {
                "default": "",
                "description": "driver is the name of the driver to use for this volume. Required.",
                "type": "string"
              },
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

              "apiVersion": {
                "description": "APIVersion is the API group version the resources belong to. In format of \"group/version\". Required.",
                "type": "string"
              },
              "kind": {
                "description": "Kind is the API kind the resources belong to. Required.",
                "type": "string"
              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "pathType",
              "backend"
            ],
            "type": "object"
          },
          "io.k8s.api.networking.v1.HTTPIngressRuleValue": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
Back to top