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

com.volcengine.tos.model.bucket.GetBucketLifecycleOutput Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package com.volcengine.tos.model.bucket;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.volcengine.tos.model.RequestInfo;

import java.util.List;

public class GetBucketLifecycleOutput {
    @JsonIgnore
    private RequestInfo requestInfo;
    @JsonProperty("Rules")
    private List rules;

    @JsonIgnore
    private boolean allowSameActionOverlap;
    public RequestInfo getRequestInfo() {
        return requestInfo;
    }

    public GetBucketLifecycleOutput setRequestInfo(RequestInfo requestInfo) {
        this.requestInfo = requestInfo;
        return this;
    }

    public List getRules() {
        return rules;
    }

    public GetBucketLifecycleOutput setRules(List rules) {
        this.rules = rules;
        return this;
    }

    public boolean isAllowSameActionOverlap() {
        return allowSameActionOverlap;
    }

    public GetBucketLifecycleOutput setAllowSameActionOverlap(boolean allowSameActionOverlap) {
        this.allowSameActionOverlap = allowSameActionOverlap;
        return this;
    }

    @Override
    public String toString() {
        return "GetBucketLifecycleOutput{" +
                "requestInfo=" + requestInfo +
                ", rules=" + rules +
                ", allowSameActionOverlap=" + allowSameActionOverlap +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy