Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for statusProtoPackage (0.16 sec)

  1. pkg/config/schema/metadata.yaml

        statusProtoPackage: "k8s.io/api/certificates/v1"
    
      - kind: "Ingress"
        plural: "ingresses"
        group: "networking.k8s.io"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.networking.v1.IngressSpec"
        protoPackage: "k8s.io/api/networking/v1"
        statusProto: "k8s.io.api.networking.v1.IngressStatus"
        statusProtoPackage: "k8s.io/api/networking/v1"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. pkg/config/schema/codegen/collections.go

    			StatusImport:           toImport(r.StatusProtoPackage),
    			IstioAwareClientImport: toIstioAwareImport(r.ProtoPackage),
    			ClientGroupPath:        toGroup(r.ProtoPackage),
    			ClientGetter:           toGetter(r.ProtoPackage),
    			ClientTypePath:         toTypePath(r),
    			SpecType:               tname,
    		}
    		if r.StatusProtoPackage != "" {
    			e.StatusType = statName
    		}
    		entries = append(entries, e)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. pkg/config/schema/codegen/templates/collections.go.tmpl

    			{{- if ne .StatusType "" }}StatusType: reflect.TypeOf(&{{.StatusImport}}.{{.StatusType}}{}).Elem(), {{end}}
    			ProtoPackage: "{{ .Resource.ProtoPackage }}",
    			{{- if ne "" .Resource.StatusProtoPackage}}StatusPackage: "{{ .Resource.StatusProtoPackage }}", {{end}}
    			ClusterScoped: {{ .Resource.ClusterScoped }},
    			Synthetic: {{ .Resource.Synthetic }},
    			Builtin: {{ .Resource.Builtin }},
    			ValidateProto: {{ .Resource.Validate }},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. pkg/config/schema/ast/ast.go

    	Synthetic          bool     `json:"synthetic"`
    	Proto              string   `json:"proto"`
    	ProtoPackage       string   `json:"protoPackage"`
    	StatusProto        string   `json:"statusProto"`
    	StatusProtoPackage string   `json:"statusProtoPackage"`
    	Validate           string   `json:"validate"`
    	Description        string   `json:"description"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top