Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for statusProto (0.13 sec)

  1. pkg/config/schema/codegen/templates/collections.go.tmpl

    				{{- range $alias := .Resource.VersionAliases}}
    			        "{{$alias}}",
    		 	    {{- end}}
    			},
    			{{- end}}
    			Proto: "{{ .Resource.Proto }}",
    			{{- if ne .Resource.StatusProto "" }}StatusProto: "{{ .Resource.StatusProto }}",{{end}}
    			ReflectType: reflect.TypeOf(&{{.ClientImport}}.{{.SpecType}}{}).Elem(),
    			{{- if ne .StatusType "" }}StatusType: reflect.TypeOf(&{{.StatusImport}}.{{.StatusType}}{}).Elem(), {{end}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/config/schema/ast/ast.go

    	Specless           bool     `json:"specless"`
    	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)
  3. pkg/config/schema/codegen/collections.go

    		return inputs{}, err
    	}
    	entries := make([]colEntry, 0, len(m.Resources))
    	for _, r := range m.Resources {
    		spl := strings.Split(r.Proto, ".")
    		tname := spl[len(spl)-1]
    		stat := strings.Split(r.StatusProto, ".")
    		statName := stat[len(stat)-1]
    		e := colEntry{
    			Resource:               r,
    			ClientImport:           toImport(r.ProtoPackage),
    			StatusImport:           toImport(r.StatusProtoPackage),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. pkg/config/schema/resource/schema.go

    	Version string
    
    	// VersionAliases is the config proto version aliases.
    	VersionAliases []string
    
    	// Proto refers to the protobuf message type name corresponding to the type
    	Proto string
    
    	StatusProto string
    
    	// ReflectType is the type of the go struct
    	ReflectType reflect.Type
    
    	// StatusType is the type of the associated status.
    	StatusType reflect.Type
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top