Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for subfield (0.16 sec)

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

    					Properties: map[string]apiextensions.JSONSchemaProps{
    						"value": {
    							Type:     "object",
    							XMapType: strPtr("granular"),
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"subfield": {
    									Type:      "string",
    									MaxLength: int64ptr(10),
    									XValidations: apiextensions.ValidationRules{
    										{Rule: "self == oldSelf"},
    									},
    								},
    							},
    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. pkg/apis/core/validation/validation.go

    	}
    	// add more subfields here in the future as they are added to NodeConfigSource
    
    	// exactly one reference subfield must be non-nil
    	if count != 1 {
    		allErrs = append(allErrs, field.Invalid(fldPath, source, "exactly one reference subfield must be non-nil"))
    	}
    	return 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. common-protos/k8s.io/api/core/v1/generated.proto

      // Human readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.
    // This API is deprecated since 1.22
    message NodeConfigSource {
      // ConfigMap is a reference to a Node's ConfigMap
      optional ConfigMapNodeConfigSource configMap = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// see: https://issues.k8s.io/61966
    	// +optional
    	DoNotUseExternalID string
    }
    
    // Deprecated: NodeConfigSource specifies a source of node configuration. Exactly one subfield must be non-nil.
    type NodeConfigSource struct {
    	ConfigMap *ConfigMapNodeConfigSource
    }
    
    // Deprecated: ConfigMapNodeConfigSource represents the config map of a node
    type ConfigMapNodeConfigSource struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    func (NodeCondition) SwaggerDoc() map[string]string {
    	return map_NodeCondition
    }
    
    var map_NodeConfigSource = map[string]string{
    	"":          "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil. This API is deprecated since 1.22",
    	"configMap": "ConfigMap is a reference to a Node's ConfigMap",
    }
    
    func (NodeConfigSource) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // Human readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.
    // This API is deprecated since 1.22
    message NodeConfigSource {
      // ConfigMap is a reference to a Node's ConfigMap
      optional ConfigMapNodeConfigSource configMap = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	DoNotUseExternalID string `json:"externalID,omitempty" protobuf:"bytes,2,opt,name=externalID"`
    }
    
    // NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.
    // This API is deprecated since 1.22
    type NodeConfigSource struct {
    	// For historical context, regarding the below kind, apiVersion, and configMapRef deprecation tags:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top