com.aliyun.ccp.ossclient.models.Config Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ccp-oss-client Show documentation
Show all versions of ccp-oss-client Show documentation
Aliyun CCP oss SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccp.ossclient.models;
import com.aliyun.tea.*;
public class Config extends TeaModel {
@NameInMap("endpoint")
public String endpoint;
@NameInMap("domainId")
@Validation(required = true)
public String domainId;
@NameInMap("protocol")
public String protocol;
@NameInMap("credentialType")
public String credentialType;
@NameInMap("securityToken")
public String securityToken;
@NameInMap("accessKeyId")
public String accessKeyId;
@NameInMap("accessKeySecret")
public String accessKeySecret;
@NameInMap("clientId")
public String clientId;
@NameInMap("refreshToken")
public String refreshToken;
@NameInMap("clientSecret")
public String clientSecret;
@NameInMap("accessToken")
public String accessToken;
@NameInMap("expireTime")
public String expireTime;
@NameInMap("nickname")
public String nickname;
@NameInMap("userAgent")
public String userAgent;
public static Config build(java.util.Map map) throws Exception {
Config self = new Config();
return TeaModel.build(map, self);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy