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

com.aliyun.dingtalkexclusive_1_0.models.QueryAcrossCloudStroageConfigsResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy