Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for targetVolumeAttributesClassName (0.48 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    type ModifyVolumeStatus struct {
    	// targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled
    	TargetVolumeAttributesClassName string `json:"targetVolumeAttributesClassName,omitempty" protobuf:"bytes,1,opt,name=targetVolumeAttributesClassName"`
    	// status is the status of the ControllerModifyVolume operation. It can be in any of following states:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_ModifyVolumeStatus_To_core_ModifyVolumeStatus(in *v1.ModifyVolumeStatus, out *core.ModifyVolumeStatus, s conversion.Scope) error {
    	out.TargetVolumeAttributesClassName = in.TargetVolumeAttributesClassName
    	out.Status = core.PersistentVolumeClaimModifyVolumeStatus(in.Status)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    )
    
    // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation
    type ModifyVolumeStatus struct {
    	// targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled
    	TargetVolumeAttributesClassName string
    	// status is the status of the ControllerModifyVolume operation. It can be in any of following states:
    	//  - Pending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_ModifyVolumeStatus = map[string]string{
    	"":                                "ModifyVolumeStatus represents the status object of ControllerModifyVolume operation",
    	"targetVolumeAttributesClassName": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation
    message ModifyVolumeStatus {
      // targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled
      optional string targetVolumeAttributesClassName = 1;
    
      // status is the status of the ControllerModifyVolume operation. It can be in any of following states:
      //  - Pending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top