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

com.volcengine.tos.model.bucket.GetBucketLocationOutput 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;

public class GetBucketLocationOutput {
    @JsonIgnore
    private RequestInfo requestInfo;
    @JsonProperty("Region")
    private String region;
    @JsonProperty("ExtranetEndpoint")
    private String extranetEndpoint;
    @JsonProperty("IntranetEndpoint")
    private String intranetEndpoint;

    public RequestInfo getRequestInfo() {
        return requestInfo;
    }

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

    public String getRegion() {
        return region;
    }

    public GetBucketLocationOutput setRegion(String region) {
        this.region = region;
        return this;
    }

    public String getExtranetEndpoint() {
        return extranetEndpoint;
    }

    public GetBucketLocationOutput setExtranetEndpoint(String extranetEndpoint) {
        this.extranetEndpoint = extranetEndpoint;
        return this;
    }

    public String getIntranetEndpoint() {
        return intranetEndpoint;
    }

    public GetBucketLocationOutput setIntranetEndpoint(String intranetEndpoint) {
        this.intranetEndpoint = intranetEndpoint;
        return this;
    }

    @Override
    public String toString() {
        return "GetBucketLocationOutput{" +
                "requestInfo=" + requestInfo +
                ", region='" + region + '\'' +
                ", extranetEndpoint='" + extranetEndpoint + '\'' +
                ", intranetEndpoint='" + intranetEndpoint + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy