Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for StatusDetails (0.17 sec)

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

    	// the reason type.
    	// +optional
    	// +listType=atomic
    	Details *StatusDetails `json:"details,omitempty" protobuf:"bytes,5,opt,name=details"`
    	// Suggested HTTP return code for this status, 0 if not set.
    	// +optional
    	Code int32 `json:"code,omitempty" protobuf:"varint,6,opt,name=code"`
    }
    
    // StatusDetails is a set of additional properties that MAY be set by the
    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. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // own extended details. This field is optional and the data returned
      // is not guaranteed to conform to any schema except that defined by
      // the reason type.
      // +optional
      optional StatusDetails details = 5;
    
      // Suggested HTTP return code for this status, 0 if not set.
      // +optional
      optional int32 code = 6;
    }
    
    // StatusCause provides more information about an api.Status failure, including
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // own extended details. This field is optional and the data returned
      // is not guaranteed to conform to any schema except that defined by
      // the reason type.
      // +optional
      // +listType=atomic
      optional StatusDetails details = 5;
    
      // Suggested HTTP return code for this status, 0 if not set.
      // +optional
      optional int32 code = 6;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    func (StatusCause) SwaggerDoc() map[string]string {
    	return map_StatusCause
    }
    
    var map_StatusDetails = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    		"do nothing if the namespace is terminating": {
    			jobCreateError: &errors.StatusError{ErrStatus: metav1.Status{Details: &metav1.StatusDetails{Causes: []metav1.StatusCause{
    				{
    					Type:    v1.NamespaceTerminatingCause,
    					Message: fmt.Sprintf("namespace %s is being terminated", metav1.NamespaceDefault),
    					Field:   "metadata.namespace",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	accessor, err := meta.Accessor(obj)
    	if err != nil {
    		return nil, err
    	}
    	qualifiedResource := e.qualifiedResourceFromContext(ctx)
    	details := &metav1.StatusDetails{
    		Name:  accessor.GetName(),
    		Group: qualifiedResource.Group,
    		Kind:  qualifiedResource.Resource, // Yes we set Kind field to resource.
    		UID:   accessor.GetUID(),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top