Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for JSONSchemaPropsOrArray (0.39 sec)

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

    					Type:      "array",
    					XListType: strPtr("set"),
    					Items: &apiextensions.JSONSchemaPropsOrArray{
    						Schema: &apiextensions.JSONSchemaProps{
    							Type:      "array",
    							XListType: strPtr("atomic"),
    							Items: &apiextensions.JSONSchemaPropsOrArray{
    								Schema: &apiextensions.JSONSchemaProps{
    									Type: "string",
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1,JSONSchemaPropsOrArray,JSONSchemas
    API rule violation: names_match,k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1,JSONSchemaPropsOrArray,Schema
    API rule violation: names_match,k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1,JSONSchemaPropsOrBool,Allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    					Type: "object",
    					Properties: map[string]apiextensionsv1.JSONSchemaProps{
    						"field": *stringSchema,
    						"array": {
    							Type: "array",
    							Items: &apiextensionsv1.JSONSchemaPropsOrArray{
    								Schema: stringSchema,
    							},
    						},
    					},
    				}},
    				applyPatchOperation{
    					"Create instance",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // +listType=map
      // +listMapKey=rule
      repeated ValidationRule xKubernetesValidations = 44;
    }
    
    // JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps
    // or an array of JSONSchemaProps. Mainly here for serialization purposes.
    message JSONSchemaPropsOrArray {
      optional JSONSchemaProps schema = 1;
    
      // +listType=atomic
      repeated JSONSchemaProps jSONSchemas = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // +listType=map
      // +listMapKey=rule
      repeated ValidationRule xKubernetesValidations = 44;
    }
    
    // JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps
    // or an array of JSONSchemaProps. Mainly here for serialization purposes.
    message JSONSchemaPropsOrArray {
      optional JSONSchemaProps schema = 1;
    
      // +listType=atomic
      repeated JSONSchemaProps jSONSchemas = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "x-kubernetes-patch-strategy": "merge"
              }
            },
            "type": "object"
          },
          "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": {
            "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Description: "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes.",
    				Type:        v1.JSONSchemaPropsOrArray{}.OpenAPISchemaType(),
    				Format:      v1.JSONSchemaPropsOrArray{}.OpenAPISchemaFormat(),
    			},
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

              "x-kubernetes-patch-strategy": "merge"
            }
          },
          "type": "object"
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray": {
          "description": "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes."
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top