Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Fulfilled (0.2 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// ObjectMeta describes the object that is being bound.
    	// +optional
    	metav1.ObjectMeta
    
    	// Target is the object to bind to.
    	Target ObjectReference
    }
    
    // Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
    type Preconditions struct {
    	// Specifies the target UID.
    	// +optional
    	UID *types.UID
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (PortworxVolumeSource) SwaggerDoc() map[string]string {
    	return map_PortworxVolumeSource
    }
    
    var map_Preconditions = map[string]string{
    	"":    "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.",
    	"uid": "Specifies the target UID.",
    }
    
    func (Preconditions) SwaggerDoc() map[string]string {
    	return map_Preconditions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // readOnly defaults to false (read/write). ReadOnly here will force
      // the ReadOnly setting in VolumeMounts.
      // +optional
      optional bool readOnly = 3;
    }
    
    // Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
    // +k8s:openapi-gen=false
    message Preconditions {
      // Specifies the target UID.
      // +optional
      optional string uid = 1;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// The target object that you want to bind to the standard object.
    	Target ObjectReference `json:"target" protobuf:"bytes,2,opt,name=target"`
    }
    
    // Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.
    // +k8s:openapi-gen=false
    type Preconditions struct {
    	// Specifies the target UID.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top