# io.k8s.api.core.v1.ModifyVolumeStatus

From **Kubernetes**.

ModifyVolumeStatus represents the status object of ControllerModifyVolume operation

- Type: `object`

## Properties

### `status`

- Required: true
- Type: `string`

status is the status of the ControllerModifyVolume operation. It can be in any of following states:
 - Pending
   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as
   the specified VolumeAttributesClass not existing.
 - InProgress
   InProgress indicates that the volume is being modified.
 - Infeasible
  Infeasible indicates that the request has been rejected as invalid by the CSI driver. To
	  resolve the error, a valid VolumeAttributesClass needs to be specified.
Note: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.

### `targetVolumeAttributesClassName`

- Required: false
- Type: `string`

targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled

## JSON Schema

```json
{"description":"ModifyVolumeStatus represents the status object of ControllerModifyVolume operation","properties":{"status":{"default":"","description":"status is the status of the ControllerModifyVolume operation. It can be in any of following states:\n - Pending\n   Pending indicates that the PersistentVolumeClaim cannot be modified due to unmet requirements, such as\n   the specified VolumeAttributesClass not existing.\n - InProgress\n   InProgress indicates that the volume is being modified.\n - Infeasible\n  Infeasible indicates that the request has been rejected as invalid by the CSI driver. To\n\t  resolve the error, a valid VolumeAttributesClass needs to be specified.\nNote: New statuses can be added in the future. Consumers should check for unknown statuses and fail appropriately.","type":"string"},"targetVolumeAttributesClassName":{"description":"targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled","type":"string"}},"required":["status"],"type":"object"}
```
