deprecated.go 490 B

1234567891011121314
  1. package types // import "github.com/docker/docker/api/types"
  2. import "github.com/docker/docker/api/types/volume"
  3. // Volume volume
  4. //
  5. // Deprecated: use github.com/docker/docker/api/types/volume.Volume
  6. type Volume = volume.Volume
  7. // VolumeUsageData Usage details about the volume. This information is used by the
  8. // `GET /system/df` endpoint, and omitted in other endpoints.
  9. //
  10. // Deprecated: use github.com/docker/docker/api/types/volume.UsageData
  11. type VolumeUsageData = volume.UsageData