com.obs.services.model.inventory.DeleteInventoryConfigurationRequest 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!
package com.obs.services.model.inventory;
import com.obs.services.model.BaseBucketRequest;
import com.obs.services.model.HttpMethodEnum;
public class DeleteInventoryConfigurationRequest extends BaseBucketRequest {
{
httpMethod = HttpMethodEnum.DELETE;
}
public String getConfigurationId() {
if(configurationId == null) {
configurationId = "";
}
return configurationId;
}
public void setConfigurationId(String configurationId) {
this.configurationId = configurationId;
}
public DeleteInventoryConfigurationRequest(String bucketName, String configurationId) {
super(bucketName);
this.configurationId = configurationId;
}
protected String configurationId;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy