com.aliyun.dms_enterprise20181101.models.ImportMasterKeyVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
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;
}
}