Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OpenAPICanonicalTypeName (0.27 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    // seed kube-openapi canonical type name without Go types
    type CRDCanonicalTypeNamer struct {
    	group   string
    	version string
    	kind    string
    }
    
    // OpenAPICanonicalTypeName returns canonical type name for given CRD
    func (c *CRDCanonicalTypeNamer) OpenAPICanonicalTypeName() string {
    	return fmt.Sprintf("%s/%s.%s", c.group, c.version, c.kind)
    }
    
    // builder contains validation schema and basic naming information for a CRD in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top