Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IncludeObjectPolicy (0.31 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	ConditionUnknown ConditionStatus = "Unknown"
    )
    
    // IncludeObjectPolicy controls which portion of the object is returned with a Table.
    type IncludeObjectPolicy string
    
    const (
    	// IncludeNone returns no object.
    	IncludeNone IncludeObjectPolicy = "None"
    	// IncludeMetadata serializes the object containing only its metadata field.
    	IncludeMetadata IncludeObjectPolicy = "Metadata"
    	// IncludeObject contains the full object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		return "string"
    	case "v1.DeletionPropagation", "*v1.DeletionPropagation":
    		return "string"
    	case "v1.ResourceVersionMatch", "*v1.ResourceVersionMatch":
    		return "string"
    	case "v1.IncludeObjectPolicy", "*v1.IncludeObjectPolicy":
    		return "string"
    
    	// TODO: Fix these when go-restful supports a way to specify an array query param:
    	// https://github.com/emicklei/go-restful/issues/225
    	case "[]string", "[]*string":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    			postIndex := iNdEx + intStringLen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.IncludeObject = IncludeObjectPolicy(dAtA[iNdEx:postIndex])
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    			if err != nil {
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
Back to top