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

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

There is a newer version: 2.1.30
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 SaveAcrossCloudStroageConfigsRequest extends TeaModel {
    // 密匙id
    @NameInMap("accessKeyId")
    public String accessKeyId;

    // 密匙密码
    @NameInMap("accessKeySecret")
    public String accessKeySecret;

    // bucket名称
    @NameInMap("bucketName")
    public String bucketName;

    // 云厂商类型
    @NameInMap("cloudType")
    public Integer cloudType;

    // 存储域名地址
    @NameInMap("endpoint")
    public String endpoint;

    // 企业id
    @NameInMap("targetCorpId")
    public String targetCorpId;

    public static SaveAcrossCloudStroageConfigsRequest build(java.util.Map map) throws Exception {
        SaveAcrossCloudStroageConfigsRequest self = new SaveAcrossCloudStroageConfigsRequest();
        return TeaModel.build(map, self);
    }

    public SaveAcrossCloudStroageConfigsRequest setAccessKeyId(String accessKeyId) {
        this.accessKeyId = accessKeyId;
        return this;
    }
    public String getAccessKeyId() {
        return this.accessKeyId;
    }

    public SaveAcrossCloudStroageConfigsRequest setAccessKeySecret(String accessKeySecret) {
        this.accessKeySecret = accessKeySecret;
        return this;
    }
    public String getAccessKeySecret() {
        return this.accessKeySecret;
    }

    public SaveAcrossCloudStroageConfigsRequest setBucketName(String bucketName) {
        this.bucketName = bucketName;
        return this;
    }
    public String getBucketName() {
        return this.bucketName;
    }

    public SaveAcrossCloudStroageConfigsRequest setCloudType(Integer cloudType) {
        this.cloudType = cloudType;
        return this;
    }
    public Integer getCloudType() {
        return this.cloudType;
    }

    public SaveAcrossCloudStroageConfigsRequest setEndpoint(String endpoint) {
        this.endpoint = endpoint;
        return this;
    }
    public String getEndpoint() {
        return this.endpoint;
    }

    public SaveAcrossCloudStroageConfigsRequest setTargetCorpId(String targetCorpId) {
        this.targetCorpId = targetCorpId;
        return this;
    }
    public String getTargetCorpId() {
        return this.targetCorpId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy