Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StatusKind (0.21 sec)

  1. pkg/config/schema/resource/schema.go

    	NewInstance() (config.Spec, error)
    
    	// Status returns the associated status of the schema
    	Status() (config.Status, error)
    
    	// StatusKind returns the Kind of the status field. If unset, the field does not support status.
    	StatusKind() string
    	StatusPackage() string
    
    	// MustNewInstance calls NewInstance and panics if an error occurs.
    	MustNewInstance() config.Spec
    
    	// Validate this schema.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client_test.go

    			configMeta.Annotations = annotations
    			if _, err := store.Update(config.Config{
    				Meta: configMeta,
    				Spec: pb,
    			}); err != nil {
    				t.Errorf("Unexpected Error in Update -> %v", err)
    			}
    			if r.StatusKind() != "" {
    				stat, err := r.Status()
    				if err != nil {
    					t.Fatal(err)
    				}
    				if _, err := store.UpdateStatus(config.Config{
    					Meta:   configMeta,
    					Status: stat,
    				}); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top