Skip to content

Commit ae6bf02

Browse files
committed
Generated 2019-05-06 for sae.
1 parent 1128e5f commit ae6bf02

File tree

97 files changed

+17637
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+17637
-23
lines changed

aliyun-java-sdk-sae/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-09-24 Version: 1.22.16
2+
- Generated 2019-05-06 for `sae`.
3+
14
2024-04-22 Version: 1.22.15
25
- Generated 2019-05-06 for `sae`.
36

aliyun-java-sdk-sae/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-sae</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.22.15</version>
7+
<version>1.22.16</version>
88
<name>aliyun-java-sdk-sae</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-sae/src/main/java/com/aliyuncs/sae/model/v20190506/BindSlbRequest.java

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,14 @@ public class BindSlbRequest extends RoaAcsRequest<BindSlbResponse> {
2929

3030
private String intranetSlbId;
3131

32+
private String intranetSlbChargeType;
33+
3234
private String internetSlbId;
3335

3436
private String appId;
3537

38+
private String internetSlbChargeType;
39+
3640
private String internet;
3741
public BindSlbRequest() {
3842
super("sae", "2019-05-06", "BindSlb", "serverless");
@@ -66,6 +70,17 @@ public void setIntranetSlbId(String intranetSlbId) {
6670
}
6771
}
6872

73+
public String getIntranetSlbChargeType() {
74+
return this.intranetSlbChargeType;
75+
}
76+
77+
public void setIntranetSlbChargeType(String intranetSlbChargeType) {
78+
this.intranetSlbChargeType = intranetSlbChargeType;
79+
if(intranetSlbChargeType != null){
80+
putQueryParameter("IntranetSlbChargeType", intranetSlbChargeType);
81+
}
82+
}
83+
6984
public String getInternetSlbId() {
7085
return this.internetSlbId;
7186
}
@@ -88,6 +103,17 @@ public void setAppId(String appId) {
88103
}
89104
}
90105

106+
public String getInternetSlbChargeType() {
107+
return this.internetSlbChargeType;
108+
}
109+
110+
public void setInternetSlbChargeType(String internetSlbChargeType) {
111+
this.internetSlbChargeType = internetSlbChargeType;
112+
if(internetSlbChargeType != null){
113+
putQueryParameter("InternetSlbChargeType", internetSlbChargeType);
114+
}
115+
}
116+
91117
public String getInternet() {
92118
return this.internet;
93119
}

aliyun-java-sdk-sae/src/main/java/com/aliyuncs/sae/model/v20190506/CreateApplicationRequest.java

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ public class CreateApplicationRequest extends RoaAcsRequest<CreateApplicationRes
6161

6262
private String ossMountDescs;
6363

64+
private String baseAppId;
65+
6466
private String imagePullSecrets;
6567

6668
private String preStop;
@@ -89,6 +91,8 @@ public class CreateApplicationRequest extends RoaAcsRequest<CreateApplicationRes
8991

9092
private String kafkaConfigs;
9193

94+
private String dotnet;
95+
9296
private String commandArgs;
9397

9498
private String acrAssumeRoleArn;
@@ -111,8 +115,14 @@ public class CreateApplicationRequest extends RoaAcsRequest<CreateApplicationRes
111115

112116
private String edasContainerVersion;
113117

118+
private String serviceTags;
119+
114120
private String packageUrl;
115121

122+
private Boolean enableNewArms;
123+
124+
private String microRegistrationConfig;
125+
116126
private Integer terminationGracePeriodSeconds;
117127

118128
private String phpConfig;
@@ -348,6 +358,17 @@ public void setOssMountDescs(String ossMountDescs) {
348358
}
349359
}
350360

361+
public String getBaseAppId() {
362+
return this.baseAppId;
363+
}
364+
365+
public void setBaseAppId(String baseAppId) {
366+
this.baseAppId = baseAppId;
367+
if(baseAppId != null){
368+
putBodyParameter("BaseAppId", baseAppId);
369+
}
370+
}
371+
351372
public String getImagePullSecrets() {
352373
return this.imagePullSecrets;
353374
}
@@ -502,6 +523,17 @@ public void setKafkaConfigs(String kafkaConfigs) {
502523
}
503524
}
504525

526+
public String getDotnet() {
527+
return this.dotnet;
528+
}
529+
530+
public void setDotnet(String dotnet) {
531+
this.dotnet = dotnet;
532+
if(dotnet != null){
533+
putQueryParameter("Dotnet", dotnet);
534+
}
535+
}
536+
505537
public String getCommandArgs() {
506538
return this.commandArgs;
507539
}
@@ -623,6 +655,17 @@ public void setEdasContainerVersion(String edasContainerVersion) {
623655
}
624656
}
625657

658+
public String getServiceTags() {
659+
return this.serviceTags;
660+
}
661+
662+
public void setServiceTags(String serviceTags) {
663+
this.serviceTags = serviceTags;
664+
if(serviceTags != null){
665+
putBodyParameter("ServiceTags", serviceTags);
666+
}
667+
}
668+
626669
public String getPackageUrl() {
627670
return this.packageUrl;
628671
}
@@ -634,6 +677,28 @@ public void setPackageUrl(String packageUrl) {
634677
}
635678
}
636679

680+
public Boolean getEnableNewArms() {
681+
return this.enableNewArms;
682+
}
683+
684+
public void setEnableNewArms(Boolean enableNewArms) {
685+
this.enableNewArms = enableNewArms;
686+
if(enableNewArms != null){
687+
putQueryParameter("EnableNewArms", enableNewArms.toString());
688+
}
689+
}
690+
691+
public String getMicroRegistrationConfig() {
692+
return this.microRegistrationConfig;
693+
}
694+
695+
public void setMicroRegistrationConfig(String microRegistrationConfig) {
696+
this.microRegistrationConfig = microRegistrationConfig;
697+
if(microRegistrationConfig != null){
698+
putBodyParameter("MicroRegistrationConfig", microRegistrationConfig);
699+
}
700+
}
701+
637702
public Integer getTerminationGracePeriodSeconds() {
638703
return this.terminationGracePeriodSeconds;
639704
}

aliyun-java-sdk-sae/src/main/java/com/aliyuncs/sae/model/v20190506/CreateApplicationScalingRuleRequest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class CreateApplicationScalingRuleRequest extends RoaAcsRequest<CreateApp
3535

3636
private String scalingRuleMetric;
3737

38+
private Boolean enableIdle;
39+
3840
private String appId;
3941

4042
private Integer minReadyInstanceRatio;
@@ -105,6 +107,17 @@ public void setScalingRuleMetric(String scalingRuleMetric) {
105107
}
106108
}
107109

110+
public Boolean getEnableIdle() {
111+
return this.enableIdle;
112+
}
113+
114+
public void setEnableIdle(Boolean enableIdle) {
115+
this.enableIdle = enableIdle;
116+
if(enableIdle != null){
117+
putQueryParameter("EnableIdle", enableIdle.toString());
118+
}
119+
}
120+
108121
public String getAppId() {
109122
return this.appId;
110123
}

aliyun-java-sdk-sae/src/main/java/com/aliyuncs/sae/model/v20190506/CreateApplicationScalingRuleResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,8 @@ public static class Data {
111111

112112
private String scaleRuleName;
113113

114+
private Boolean enableIdle;
115+
114116
private Timer timer;
115117

116118
private Metric metric;
@@ -171,6 +173,14 @@ public void setScaleRuleName(String scaleRuleName) {
171173
this.scaleRuleName = scaleRuleName;
172174
}
173175

176+
public Boolean getEnableIdle() {
177+
return this.enableIdle;
178+
}
179+
180+
public void setEnableIdle(Boolean enableIdle) {
181+
this.enableIdle = enableIdle;
182+
}
183+
174184
public Timer getTimer() {
175185
return this.timer;
176186
}

aliyun-java-sdk-sae/src/main/java/com/aliyuncs/sae/model/v20190506/CreateIngressRequest.java

Lines changed: 46 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class CreateIngressRequest extends RoaAcsRequest<CreateIngressResponse> {
2929

3030
private String slbId;
3131

32-
private String namespaceId;
32+
private Integer requestTimeout;
3333

3434
private String description;
3535

@@ -43,6 +43,12 @@ public class CreateIngressRequest extends RoaAcsRequest<CreateIngressResponse> {
4343

4444
private String listenerProtocol;
4545

46+
private String securityPolicyId;
47+
48+
private Integer idleTimeout;
49+
50+
private String namespaceId;
51+
4652
private String defaultRule;
4753
public CreateIngressRequest() {
4854
super("sae", "2019-05-06", "CreateIngress", "serverless");
@@ -76,14 +82,14 @@ public void setSlbId(String slbId) {
7682
}
7783
}
7884

79-
public String getNamespaceId() {
80-
return this.namespaceId;
85+
public Integer getRequestTimeout() {
86+
return this.requestTimeout;
8187
}
8288

83-
public void setNamespaceId(String namespaceId) {
84-
this.namespaceId = namespaceId;
85-
if(namespaceId != null){
86-
putQueryParameter("NamespaceId", namespaceId);
89+
public void setRequestTimeout(Integer requestTimeout) {
90+
this.requestTimeout = requestTimeout;
91+
if(requestTimeout != null){
92+
putQueryParameter("RequestTimeout", requestTimeout.toString());
8793
}
8894
}
8995

@@ -153,6 +159,39 @@ public void setListenerProtocol(String listenerProtocol) {
153159
}
154160
}
155161

162+
public String getSecurityPolicyId() {
163+
return this.securityPolicyId;
164+
}
165+
166+
public void setSecurityPolicyId(String securityPolicyId) {
167+
this.securityPolicyId = securityPolicyId;
168+
if(securityPolicyId != null){
169+
putQueryParameter("SecurityPolicyId", securityPolicyId);
170+
}
171+
}
172+
173+
public Integer getIdleTimeout() {
174+
return this.idleTimeout;
175+
}
176+
177+
public void setIdleTimeout(Integer idleTimeout) {
178+
this.idleTimeout = idleTimeout;
179+
if(idleTimeout != null){
180+
putQueryParameter("IdleTimeout", idleTimeout.toString());
181+
}
182+
}
183+
184+
public String getNamespaceId() {
185+
return this.namespaceId;
186+
}
187+
188+
public void setNamespaceId(String namespaceId) {
189+
this.namespaceId = namespaceId;
190+
if(namespaceId != null){
191+
putQueryParameter("NamespaceId", namespaceId);
192+
}
193+
}
194+
156195
public String getDefaultRule() {
157196
return this.defaultRule;
158197
}
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.sae.model.v20190506;
16+
17+
import com.aliyuncs.RoaAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.sae.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateWebApplicationRequest extends RoaAcsRequest<CreateWebApplicationResponse> {
26+
27+
28+
private String namespaceId;
29+
public CreateWebApplicationRequest() {
30+
super("sae", "2019-05-06", "CreateWebApplication", "serverless");
31+
setUriPattern("/pop/v2/api/web/applications");
32+
setMethod(MethodType.POST);
33+
try {
34+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
35+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
36+
} catch (Exception e) {}
37+
}
38+
39+
public String getNamespaceId() {
40+
return this.namespaceId;
41+
}
42+
43+
public void setNamespaceId(String namespaceId) {
44+
this.namespaceId = namespaceId;
45+
if(namespaceId != null){
46+
putQueryParameter("NamespaceId", namespaceId);
47+
}
48+
}
49+
50+
@Override
51+
public Class<CreateWebApplicationResponse> getResponseClass() {
52+
return CreateWebApplicationResponse.class;
53+
}
54+
55+
}

0 commit comments

Comments
 (0)