
com.windowsazure.samples.blob.SnapshotDeleteAction Maven / Gradle / Ivy
package com.windowsazure.samples.blob;
public enum SnapshotDeleteAction {
DELETE_BLOB_AND_SNAPSHOT("include"),
DELETE_SNAPSHOT_ONLY("only");
@Override
public String toString() {
return representation;
}
private SnapshotDeleteAction(String representation) {
this.representation = representation;
}
private String representation;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy