Skip to content

Commit

Permalink
Generated 2019-05-06 for sae.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 24, 2024
1 parent 1128e5f commit ae6bf02
Show file tree
Hide file tree
Showing 97 changed files with 17,637 additions and 23 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-sae/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-09-24 Version: 1.22.16
- Generated 2019-05-06 for `sae`.

2024-04-22 Version: 1.22.15
- Generated 2019-05-06 for `sae`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-sae/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-sae</artifactId>
<packaging>jar</packaging>
<version>1.22.15</version>
<version>1.22.16</version>
<name>aliyun-java-sdk-sae</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,14 @@ public class BindSlbRequest extends RoaAcsRequest<BindSlbResponse> {

private String intranetSlbId;

private String intranetSlbChargeType;

private String internetSlbId;

private String appId;

private String internetSlbChargeType;

private String internet;
public BindSlbRequest() {
super("sae", "2019-05-06", "BindSlb", "serverless");
Expand Down Expand Up @@ -66,6 +70,17 @@ public void setIntranetSlbId(String intranetSlbId) {
}
}

public String getIntranetSlbChargeType() {
return this.intranetSlbChargeType;
}

public void setIntranetSlbChargeType(String intranetSlbChargeType) {
this.intranetSlbChargeType = intranetSlbChargeType;
if(intranetSlbChargeType != null){
putQueryParameter("IntranetSlbChargeType", intranetSlbChargeType);
}
}

public String getInternetSlbId() {
return this.internetSlbId;
}
Expand All @@ -88,6 +103,17 @@ public void setAppId(String appId) {
}
}

public String getInternetSlbChargeType() {
return this.internetSlbChargeType;
}

public void setInternetSlbChargeType(String internetSlbChargeType) {
this.internetSlbChargeType = internetSlbChargeType;
if(internetSlbChargeType != null){
putQueryParameter("InternetSlbChargeType", internetSlbChargeType);
}
}

public String getInternet() {
return this.internet;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ public class CreateApplicationRequest extends RoaAcsRequest<CreateApplicationRes

private String ossMountDescs;

private String baseAppId;

private String imagePullSecrets;

private String preStop;
Expand Down Expand Up @@ -89,6 +91,8 @@ public class CreateApplicationRequest extends RoaAcsRequest<CreateApplicationRes

private String kafkaConfigs;

private String dotnet;

private String commandArgs;

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

private String edasContainerVersion;

private String serviceTags;

private String packageUrl;

private Boolean enableNewArms;

private String microRegistrationConfig;

private Integer terminationGracePeriodSeconds;

private String phpConfig;
Expand Down Expand Up @@ -348,6 +358,17 @@ public void setOssMountDescs(String ossMountDescs) {
}
}

public String getBaseAppId() {
return this.baseAppId;
}

public void setBaseAppId(String baseAppId) {
this.baseAppId = baseAppId;
if(baseAppId != null){
putBodyParameter("BaseAppId", baseAppId);
}
}

public String getImagePullSecrets() {
return this.imagePullSecrets;
}
Expand Down Expand Up @@ -502,6 +523,17 @@ public void setKafkaConfigs(String kafkaConfigs) {
}
}

public String getDotnet() {
return this.dotnet;
}

public void setDotnet(String dotnet) {
this.dotnet = dotnet;
if(dotnet != null){
putQueryParameter("Dotnet", dotnet);
}
}

public String getCommandArgs() {
return this.commandArgs;
}
Expand Down Expand Up @@ -623,6 +655,17 @@ public void setEdasContainerVersion(String edasContainerVersion) {
}
}

public String getServiceTags() {
return this.serviceTags;
}

public void setServiceTags(String serviceTags) {
this.serviceTags = serviceTags;
if(serviceTags != null){
putBodyParameter("ServiceTags", serviceTags);
}
}

public String getPackageUrl() {
return this.packageUrl;
}
Expand All @@ -634,6 +677,28 @@ public void setPackageUrl(String packageUrl) {
}
}

public Boolean getEnableNewArms() {
return this.enableNewArms;
}

public void setEnableNewArms(Boolean enableNewArms) {
this.enableNewArms = enableNewArms;
if(enableNewArms != null){
putQueryParameter("EnableNewArms", enableNewArms.toString());
}
}

public String getMicroRegistrationConfig() {
return this.microRegistrationConfig;
}

public void setMicroRegistrationConfig(String microRegistrationConfig) {
this.microRegistrationConfig = microRegistrationConfig;
if(microRegistrationConfig != null){
putBodyParameter("MicroRegistrationConfig", microRegistrationConfig);
}
}

public Integer getTerminationGracePeriodSeconds() {
return this.terminationGracePeriodSeconds;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public class CreateApplicationScalingRuleRequest extends RoaAcsRequest<CreateApp

private String scalingRuleMetric;

private Boolean enableIdle;

private String appId;

private Integer minReadyInstanceRatio;
Expand Down Expand Up @@ -105,6 +107,17 @@ public void setScalingRuleMetric(String scalingRuleMetric) {
}
}

public Boolean getEnableIdle() {
return this.enableIdle;
}

public void setEnableIdle(Boolean enableIdle) {
this.enableIdle = enableIdle;
if(enableIdle != null){
putQueryParameter("EnableIdle", enableIdle.toString());
}
}

public String getAppId() {
return this.appId;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ public static class Data {

private String scaleRuleName;

private Boolean enableIdle;

private Timer timer;

private Metric metric;
Expand Down Expand Up @@ -171,6 +173,14 @@ public void setScaleRuleName(String scaleRuleName) {
this.scaleRuleName = scaleRuleName;
}

public Boolean getEnableIdle() {
return this.enableIdle;
}

public void setEnableIdle(Boolean enableIdle) {
this.enableIdle = enableIdle;
}

public Timer getTimer() {
return this.timer;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class CreateIngressRequest extends RoaAcsRequest<CreateIngressResponse> {

private String slbId;

private String namespaceId;
private Integer requestTimeout;

private String description;

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

private String listenerProtocol;

private String securityPolicyId;

private Integer idleTimeout;

private String namespaceId;

private String defaultRule;
public CreateIngressRequest() {
super("sae", "2019-05-06", "CreateIngress", "serverless");
Expand Down Expand Up @@ -76,14 +82,14 @@ public void setSlbId(String slbId) {
}
}

public String getNamespaceId() {
return this.namespaceId;
public Integer getRequestTimeout() {
return this.requestTimeout;
}

public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
if(namespaceId != null){
putQueryParameter("NamespaceId", namespaceId);
public void setRequestTimeout(Integer requestTimeout) {
this.requestTimeout = requestTimeout;
if(requestTimeout != null){
putQueryParameter("RequestTimeout", requestTimeout.toString());
}
}

Expand Down Expand Up @@ -153,6 +159,39 @@ public void setListenerProtocol(String listenerProtocol) {
}
}

public String getSecurityPolicyId() {
return this.securityPolicyId;
}

public void setSecurityPolicyId(String securityPolicyId) {
this.securityPolicyId = securityPolicyId;
if(securityPolicyId != null){
putQueryParameter("SecurityPolicyId", securityPolicyId);
}
}

public Integer getIdleTimeout() {
return this.idleTimeout;
}

public void setIdleTimeout(Integer idleTimeout) {
this.idleTimeout = idleTimeout;
if(idleTimeout != null){
putQueryParameter("IdleTimeout", idleTimeout.toString());
}
}

public String getNamespaceId() {
return this.namespaceId;
}

public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
if(namespaceId != null){
putQueryParameter("NamespaceId", namespaceId);
}
}

public String getDefaultRule() {
return this.defaultRule;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.sae.model.v20190506;

import com.aliyuncs.RoaAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.sae.Endpoint;

/**
* @author auto create
* @version
*/
public class CreateWebApplicationRequest extends RoaAcsRequest<CreateWebApplicationResponse> {


private String namespaceId;
public CreateWebApplicationRequest() {
super("sae", "2019-05-06", "CreateWebApplication", "serverless");
setUriPattern("/pop/v2/api/web/applications");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}

public String getNamespaceId() {
return this.namespaceId;
}

public void setNamespaceId(String namespaceId) {
this.namespaceId = namespaceId;
if(namespaceId != null){
putQueryParameter("NamespaceId", namespaceId);
}
}

@Override
public Class<CreateWebApplicationResponse> getResponseClass() {
return CreateWebApplicationResponse.class;
}

}
Loading

0 comments on commit ae6bf02

Please sign in to comment.