com.aliyun.dingtalkexclusive_1_0.models.QueryAcrossCloudStroageConfigsResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class QueryAcrossCloudStroageConfigsResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* sampleKeyId1234
*/
@NameInMap("accessKeyId")
public String accessKeyId;
/**
* This parameter is required.
*
* example:
* sampleSecretId1234
*/
@NameInMap("accessKeySecret")
public String accessKeySecret;
/**
* This parameter is required.
*
* example:
* xxxxbucket
*/
@NameInMap("bucketName")
public String bucketName;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("cloudType")
public Integer cloudType;
/**
* This parameter is required.
*
* example:
* https://oss-cn-test.aliyuncs.com
*/
@NameInMap("endpoint")
public String endpoint;
public static QueryAcrossCloudStroageConfigsResponseBody build(java.util.Map map) throws Exception {
QueryAcrossCloudStroageConfigsResponseBody self = new QueryAcrossCloudStroageConfigsResponseBody();
return TeaModel.build(map, self);
}
public QueryAcrossCloudStroageConfigsResponseBody setAccessKeyId(String accessKeyId) {
this.accessKeyId = accessKeyId;
return this;
}
public String getAccessKeyId() {
return this.accessKeyId;
}
public QueryAcrossCloudStroageConfigsResponseBody setAccessKeySecret(String accessKeySecret) {
this.accessKeySecret = accessKeySecret;
return this;
}
public String getAccessKeySecret() {
return this.accessKeySecret;
}
public QueryAcrossCloudStroageConfigsResponseBody setBucketName(String bucketName) {
this.bucketName = bucketName;
return this;
}
public String getBucketName() {
return this.bucketName;
}
public QueryAcrossCloudStroageConfigsResponseBody setCloudType(Integer cloudType) {
this.cloudType = cloudType;
return this;
}
public Integer getCloudType() {
return this.cloudType;
}
public QueryAcrossCloudStroageConfigsResponseBody setEndpoint(String endpoint) {
this.endpoint = endpoint;
return this;
}
public String getEndpoint() {
return this.endpoint;
}
}