com.aliyun.sas20181203.models.DescribeDynamicDictUploadInfoResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribeDynamicDictUploadInfoResponseBody extends TeaModel {
/**
* The AccessKey ID that is used to access OSS.
*
* example:
* LTAI4G1mgPbjvG********
*/
@NameInMap("Accessid")
public String accessid;
/**
* The validity period of the signature. The value is a UNIX timestamp.
*
* example:
* 1719919893
*/
@NameInMap("Expire")
public String expire;
/**
* The OSS endpoint.
*
* example:
* https://aegis-update-static-file.oss-cn-hangzhou.aliyuncs.com
*/
@NameInMap("Host")
public String host;
/**
* The name of the OSS object.
*
* example:
* DegradePool_Offset_****
*/
@NameInMap("Key")
public String key;
/**
* The OSS security policy.
*
* example:
* eyJleHBpcmF0aW9uIjoiMjAyNC0wNy0wMlQxMTozMTozMy40MjlaIiwiY29uZGl0aW9********
*/
@NameInMap("Policy")
public String policy;
/**
* The request ID.
*
* example:
* A3D7C47D-3F11-57BB-90E8-E5C20C61***
*/
@NameInMap("RequestId")
public String requestId;
/**
* The signature that is calculated based on AccessKeySecret and Policy. When you call an OSS API operation, OSS uses the signature information to check the validity of the POST request.
*
* example:
* wBiwkhd5LGcLzijtc3FhI****
*/
@NameInMap("Signature")
public String signature;
public static DescribeDynamicDictUploadInfoResponseBody build(java.util.Map map) throws Exception {
DescribeDynamicDictUploadInfoResponseBody self = new DescribeDynamicDictUploadInfoResponseBody();
return TeaModel.build(map, self);
}
public DescribeDynamicDictUploadInfoResponseBody setAccessid(String accessid) {
this.accessid = accessid;
return this;
}
public String getAccessid() {
return this.accessid;
}
public DescribeDynamicDictUploadInfoResponseBody setExpire(String expire) {
this.expire = expire;
return this;
}
public String getExpire() {
return this.expire;
}
public DescribeDynamicDictUploadInfoResponseBody setHost(String host) {
this.host = host;
return this;
}
public String getHost() {
return this.host;
}
public DescribeDynamicDictUploadInfoResponseBody setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public DescribeDynamicDictUploadInfoResponseBody setPolicy(String policy) {
this.policy = policy;
return this;
}
public String getPolicy() {
return this.policy;
}
public DescribeDynamicDictUploadInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeDynamicDictUploadInfoResponseBody setSignature(String signature) {
this.signature = signature;
return this;
}
public String getSignature() {
return this.signature;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy