All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaomi.infra.galaxy.fds.SubResource Maven / Gradle / Ivy

There is a newer version: 3.0.44
Show newest version
package com.xiaomi.infra.galaxy.fds;

public enum SubResource {
  // Following are amazon S3 supported subresources:
  // acl, lifecycle, location, logging, notification, partNumber,
  // policy, requestPayment, torrent, uploadId, uploads, versionId,
  // versioning, versions and website

  // Currently, we only support a subset of the above subresources:
  ACL("acl"),
  QUOTA("quota"),
  UPLOADS("uploads"),
  PART_NUMBER("partNumber"),
  UPLOAD_ID("uploadId"),
  STORAGE_ACCESS_TOKEN("storageAccessToken"),
  COMPRESSION("compression"),
  METADATA("metadata");

  private final String name;

  SubResource(String name) {
    this.name = name;
  }

  public String getName() {
    return this.name;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy