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

com.aliyun.dms_enterprise20181101.models.ImportMasterKeyVO Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;

import com.aliyun.tea.*;

public class ImportMasterKeyVO extends TeaModel {
    @NameInMap("EncryptMekDataBase64")
    public String encryptMekDataBase64;

    @NameInMap("MekId")
    public Long mekId;

    @NameInMap("ProjectId")
    public java.util.List projectId;

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

    public ImportMasterKeyVO setEncryptMekDataBase64(String encryptMekDataBase64) {
        this.encryptMekDataBase64 = encryptMekDataBase64;
        return this;
    }
    public String getEncryptMekDataBase64() {
        return this.encryptMekDataBase64;
    }

    public ImportMasterKeyVO setMekId(Long mekId) {
        this.mekId = mekId;
        return this;
    }
    public Long getMekId() {
        return this.mekId;
    }

    public ImportMasterKeyVO setProjectId(java.util.List projectId) {
        this.projectId = projectId;
        return this;
    }
    public java.util.List getProjectId() {
        return this.projectId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy