com.aliyun.ccp.ccpclient.models.OSSGetSecureUrlRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ccpclient.models;
import com.aliyun.tea.*;
/**
* 获取文件安全地址的请求body
*/
public class OSSGetSecureUrlRequest extends TeaModel {
@NameInMap("drive_id")
@Validation(pattern = "[0-9]+")
public String driveId;
@NameInMap("expire_sec")
public Long expireSec;
@NameInMap("file_path")
@Validation(required = true)
public String filePath;
@NameInMap("secure_ip")
public String secureIp;
@NameInMap("share_id")
@Validation(pattern = "[0-9a-z-]+")
public String shareId;
public static OSSGetSecureUrlRequest build(java.util.Map map) throws Exception {
OSSGetSecureUrlRequest self = new OSSGetSecureUrlRequest();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy