Skip to content

Commit

Permalink
Fixed endpoint data init.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Aug 27, 2019
1 parent f200cfc commit 04663c5
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 26 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-appmallsservice/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2019-08-27 Version: 1.1.2
- Fixed endpoint data init.

2019-08-20 Version: 1.1.1
- API TaobaoFilmGetSchedules retrun col add hallId.

8 changes: 2 additions & 6 deletions aliyun-java-sdk-appmallsservice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,13 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-appmallsservice</artifactId>
<packaging>jar</packaging>
<version>1.1.1</version>
<version>1.1.2</version>
<name>aliyun-java-sdk-appmallsservice</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java

Copyright (C) Alibaba Cloud Computing
All rights reserved.

版权所有 (C)阿里云计算有限公司

http://www.aliyun.com</description>
<distributionManagement>
<snapshotRepository>
Expand Down Expand Up @@ -73,8 +70,7 @@ http://www.aliyun.com</description>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<excludes>
</excludes>
<excludes/>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,26 @@
public class Endpoint {
public static HashMap<String, String> endpointMap = new HashMap<String, String>() {
{
endpointMap.put("cn-shenzhen", "appms.aliyuncs.com");
endpointMap.put("cn-beijing", "appms.aliyuncs.com");
endpointMap.put("ap-south-1", "appms.aliyuncs.com");
endpointMap.put("eu-west-1", "appms.aliyuncs.com");
endpointMap.put("ap-northeast-1", "appms.aliyuncs.com");
endpointMap.put("me-east-1", "appms.aliyuncs.com");
endpointMap.put("cn-chengdu", "appms.aliyuncs.com");
endpointMap.put("cn-qingdao", "appms.aliyuncs.com");
endpointMap.put("cn-shanghai", "appms.aliyuncs.com");
endpointMap.put("cn-hongkong", "appms.aliyuncs.com");
endpointMap.put("ap-southeast-1", "appms.aliyuncs.com");
endpointMap.put("ap-southeast-2", "appms.aliyuncs.com");
endpointMap.put("ap-southeast-3", "appms.aliyuncs.com");
endpointMap.put("eu-central-1", "appms.aliyuncs.com");
endpointMap.put("cn-huhehaote", "appms.aliyuncs.com");
endpointMap.put("ap-southeast-5", "appms.aliyuncs.com");
endpointMap.put("us-east-1", "appms.aliyuncs.com");
endpointMap.put("cn-zhangjiakou", "appms.aliyuncs.com");
endpointMap.put("us-west-1", "appms.aliyuncs.com");
endpointMap.put("cn-hangzhou", "appms.aliyuncs.com");
put("cn-shenzhen", "appms.aliyuncs.com");
put("cn-beijing", "appms.aliyuncs.com");
put("ap-south-1", "appms.aliyuncs.com");
put("eu-west-1", "appms.aliyuncs.com");
put("ap-northeast-1", "appms.aliyuncs.com");
put("me-east-1", "appms.aliyuncs.com");
put("cn-chengdu", "appms.aliyuncs.com");
put("cn-qingdao", "appms.aliyuncs.com");
put("cn-shanghai", "appms.aliyuncs.com");
put("cn-hongkong", "appms.aliyuncs.com");
put("ap-southeast-1", "appms.aliyuncs.com");
put("ap-southeast-2", "appms.aliyuncs.com");
put("ap-southeast-3", "appms.aliyuncs.com");
put("eu-central-1", "appms.aliyuncs.com");
put("cn-huhehaote", "appms.aliyuncs.com");
put("ap-southeast-5", "appms.aliyuncs.com");
put("us-east-1", "appms.aliyuncs.com");
put("cn-zhangjiakou", "appms.aliyuncs.com");
put("us-west-1", "appms.aliyuncs.com");
put("cn-hangzhou", "appms.aliyuncs.com");
}
};

Expand Down

0 comments on commit 04663c5

Please sign in to comment.