com.obs.services.model.SpecialParamEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esdk-obs-java-bundle Show documentation
Show all versions of esdk-obs-java-bundle Show documentation
The HuaweiCloud OBS Bundle SDK for Java used for accessing Object Storage Service, this SDK bundle
includes third-party libraries and relocated to different namespaces
The newest version!
/**
* Copyright 2019 Huawei Technologies Co.,Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
* this file except in compliance with the License. You may obtain a copy of the
* License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.obs.services.model;
import java.util.Locale;
/**
* Special operator, which indicates the sub-resource to be operated
*/
public enum SpecialParamEnum {
/**
* Obtain the bucket location information.
*/
LOCATION("location"),
/**
* Obtain bucket storage information.
*/
STORAGEINFO("storageinfo"),
/**
* Obtain or set the bucket quota.
*/
QUOTA("quota"),
/**
* Obtain or set the ACL of the bucket (object).
*/
ACL("acl"),
/**
* Obtain the logging settings of or configure logging for a bucket.
*/
LOGGING("logging"),
/**
* Obtain, set, or delete bucket policies.
*/
POLICY("policy"),
/**
* Obtain, set, or delete bucket lifecycle rules.
*/
LIFECYCLE("lifecycle"),
/**
* Obtain or delete website hosting settings of or configure website hosting for a bucket.
*/
WEBSITE("website"),
/**
* Obtain or set the versioning status of a bucket.
*/
VERSIONING("versioning"),
/**
* Obtain or set requester payment status of a bucket.
*/
REQUEST_PAYMENT("requestPayment"),
/**
* Obtain or set bucket storage policies.
*/
STORAGEPOLICY("storagePolicy"),
/**
* Obtain or set the bucket storage class.
*/
STORAGECLASS("storageClass"),
/**
* Obtain, set, or delete the CORS rules of a bucket.
*/
CORS("cors"),
/**
* List or initialize multipart uploads.
*/
UPLOADS("uploads"),
/**
* List versioning objects in a bucket.
*/
VERSIONS("versions"),
/**
* Delete objects in a batch.
*/
DELETE("delete"),
/**
* Restore an Archive object.
*/
RESTORE("restore"),
/**
* Obtain, set, or delete bucket tags.
*/
TAGGING("tagging"),
/**
* Configure bucket notification or obtain bucket notification configuration.
*/
NOTIFICATION("notification"),
/**
* Set, obtain, or delete the cross-region replication configuration of a bucket.
*/
REPLICATION("replication"),
/**
* get the cross-region replication progress.
*/
REPLICATION_PROGRESS("replication_progress"),
/**
* get the cross-region replication configuration rule id.
*/
RULE_ID("ruleId"),
/**
* Perform an appendable upload.
*/
APPEND("append"),
/**
* Rename a file or folder.
*/
RENAME("rename"),
/**
* Truncate a file.
*/
TRUNCATE("truncate"),
/**
* Modify a file.
*/
MODIFY("modify"),
/**
* Configure the file gateway feature.
*/
FILEINTERFACE("fileinterface"),
/**
* Set or delete object properties.
*/
METADATA("metadata"),
/**
* Set, obtain, or delete the encryption configuration of a bucket.
*/
ENCRYPTION("encryption"),
/**
* obtain folder contentSummary
*/
LISTCONTENTSUMMARY("listcontentsummary"),
/**
* obtain folder contentSummary of fs
*/
LISTCONTENTSUMMARYFS("multilistcontentsummary"),
/**
* get content summary of fs
*/
GETCONTENTSUMMARY("getcontentsummary"),
ACCESSLABEL("accesslabel"),
/**
* Set, obtain, or delete the direct reading policy for Archive objects in a bucket.
*/
DIRECTCOLDACCESS("directcoldaccess"),
/**
* get alias bucket list
*/
OBSBUCKETALIAS("obsbucketalias"),
/**
* alias bucket name
*/
OBSALIAS("obsalias"),
/**
* Set, obtain, or delete the Custom Domain Name of a Bucket
*/
CUSTOMDOMAIN("customdomain"),
ID("id"),
INVENTORY("inventory");
/**
* Specify the corresponding code in the database and the external code.
*/
private String stringCode;
private SpecialParamEnum(String stringCode) {
if (stringCode == null) {
throw new IllegalArgumentException("stringCode is null");
}
this.stringCode = stringCode;
}
public String getStringCode() {
return this.stringCode.toLowerCase(Locale.ROOT);
}
public String getOriginalStringCode() {
return this.stringCode;
}
public static SpecialParamEnum getValueFromStringCode(String stringCode) {
if (stringCode == null) {
throw new IllegalArgumentException("string code is null");
}
for (SpecialParamEnum installMode : SpecialParamEnum.values()) {
if (installMode.getStringCode().equals(stringCode.toLowerCase(Locale.ROOT))) {
return installMode;
}
}
throw new IllegalArgumentException("string code is illegal");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy