Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SelectableField (0.6 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/selectablefield.go

    // SelectableFieldApplyConfiguration represents an declarative configuration of the SelectableField type for use
    // with apply.
    type SelectableFieldApplyConfiguration struct {
    	JSONPath *string `json:"jsonPath,omitempty"`
    }
    
    // SelectableFieldApplyConfiguration constructs an declarative configuration of the SelectableField type for use with
    // apply.
    func SelectableField() *SelectableFieldApplyConfiguration {
    	return &SelectableFieldApplyConfiguration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/selectablefield.go

    // SelectableFieldApplyConfiguration represents an declarative configuration of the SelectableField type for use
    // with apply.
    type SelectableFieldApplyConfiguration struct {
    	JSONPath *string `json:"jsonPath,omitempty"`
    }
    
    // SelectableFieldApplyConfiguration constructs an declarative configuration of the SelectableField type for use with
    // apply.
    func SelectableField() *SelectableFieldApplyConfiguration {
    	return &SelectableFieldApplyConfiguration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy_test.go

    	}
    }
    
    func TestSelectableFields(t *testing.T) {
    	tcs := []struct {
    		name             string
    		selectableFields []v1.SelectableField
    		obj              *unstructured.Unstructured
    		expectFields     fields.Set
    	}{
    		{
    			name: "valid path",
    			selectableFields: []v1.SelectableField{
    				{JSONPath: ".spec.foo"},
    			},
    			obj: &unstructured.Unstructured{
    				Object: map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/utils.go

    		return &apiextensionsv1.ExternalDocumentationApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("JSONSchemaProps"):
    		return &apiextensionsv1.JSONSchemaPropsApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("SelectableField"):
    		return &apiextensionsv1.SelectableFieldApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("ServiceReference"):
    		return &apiextensionsv1.ServiceReferenceApplyConfiguration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/conversion.go

    				return err
    			}
    		}
    		for i := range out.Versions {
    			out.Versions[i].AdditionalPrinterColumns = additionalPrinterColumns
    		}
    	}
    	if in.SelectableFields != nil {
    		selectableFields := make([]SelectableField, len(in.SelectableFields))
    		for i := range in.SelectableFields {
    			if err := Convert_apiextensions_SelectableField_To_v1_SelectableField(&in.SelectableFields[i], &selectableFields[i], s); err != nil {
    				return err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top