Skip to content

Commit

Permalink
Generated 2023-01-20 for csas.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Oct 30, 2024
1 parent 57652cb commit ad12be6
Show file tree
Hide file tree
Showing 11 changed files with 263 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-csas/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-10-30 Version: 1.0.11
- Generated 2023-01-20 for `csas`.

2024-07-03 Version: 1.0.10
- Generated 2023-01-20 for `csas`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-csas/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-csas</artifactId>
<packaging>jar</packaging>
<version>1.0.10</version>
<version>1.0.11</version>
<name>aliyun-java-sdk-csas</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 @@ -31,8 +31,14 @@ public class CreatePrivateAccessApplicationRequest extends RpcAcsRequest<CreateP

private String protocol;

private String l7ProxyDomainCustom;

private String browserAccessStatus;

private List<String> tagIds;

private String l7ProxyDomainAutomaticPrefix;

private List<PortRanges> portRanges;

private String name;
Expand Down Expand Up @@ -78,6 +84,28 @@ public void setBizProtocol(String protocol) {
}
}

public String getL7ProxyDomainCustom() {
return this.l7ProxyDomainCustom;
}

public void setL7ProxyDomainCustom(String l7ProxyDomainCustom) {
this.l7ProxyDomainCustom = l7ProxyDomainCustom;
if(l7ProxyDomainCustom != null){
putBodyParameter("L7ProxyDomainCustom", l7ProxyDomainCustom);
}
}

public String getBrowserAccessStatus() {
return this.browserAccessStatus;
}

public void setBrowserAccessStatus(String browserAccessStatus) {
this.browserAccessStatus = browserAccessStatus;
if(browserAccessStatus != null){
putBodyParameter("BrowserAccessStatus", browserAccessStatus);
}
}

public List<String> getTagIds() {
return this.tagIds;
}
Expand All @@ -91,6 +119,17 @@ public void setTagIds(List<String> tagIds) {
}
}

public String getL7ProxyDomainAutomaticPrefix() {
return this.l7ProxyDomainAutomaticPrefix;
}

public void setL7ProxyDomainAutomaticPrefix(String l7ProxyDomainAutomaticPrefix) {
this.l7ProxyDomainAutomaticPrefix = l7ProxyDomainAutomaticPrefix;
if(l7ProxyDomainAutomaticPrefix != null){
putBodyParameter("L7ProxyDomainAutomaticPrefix", l7ProxyDomainAutomaticPrefix);
}
}

public List<PortRanges> getPortRanges() {
return this.portRanges;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ public class CreateWmEmbedTaskRequest extends RpcAcsRequest<CreateWmEmbedTaskRes

private String wmInfoUint;

@SerializedName("csvControl")
private CsvControl csvControl;

private String filename;

private Long wmInfoSize;
Expand Down Expand Up @@ -119,6 +122,17 @@ public void setWmInfoUint(String wmInfoUint) {
}
}

public CsvControl getCsvControl() {
return this.csvControl;
}

public void setCsvControl(CsvControl csvControl) {
this.csvControl = csvControl;
if (csvControl != null) {
putQueryParameter("CsvControl" , new Gson().toJson(csvControl));
}
}

public String getFilename() {
return this.filename;
}
Expand Down Expand Up @@ -415,6 +429,42 @@ public void setOpacity(Long opacity) {
}
}
}
}

public static class CsvControl {

@SerializedName("Method")
private String method;

@SerializedName("EmbedColumn")
private Long embedColumn;

@SerializedName("EmbedPrecision")
private Long embedPrecision;

public String getBizMethod() {
return this.method;
}

public void setBizMethod(String method) {
this.method = method;
}

public Long getEmbedColumn() {
return this.embedColumn;
}

public void setEmbedColumn(Long embedColumn) {
this.embedColumn = embedColumn;
}

public Long getEmbedPrecision() {
return this.embedPrecision;
}

public void setEmbedPrecision(Long embedPrecision) {
this.embedPrecision = embedPrecision;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
package com.aliyuncs.csas.model.v20230120;

import com.aliyuncs.RpcAcsRequest;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;

/**
Expand All @@ -32,6 +34,9 @@ public class CreateWmExtractTaskRequest extends RpcAcsRequest<CreateWmExtractTas

private String wmType;

@SerializedName("csvControl")
private CsvControl csvControl;

private String filename;

private Long wmInfoSize;
Expand Down Expand Up @@ -86,6 +91,17 @@ public void setWmType(String wmType) {
}
}

public CsvControl getCsvControl() {
return this.csvControl;
}

public void setCsvControl(CsvControl csvControl) {
this.csvControl = csvControl;
if (csvControl != null) {
putQueryParameter("CsvControl" , new Gson().toJson(csvControl));
}
}

public String getFilename() {
return this.filename;
}
Expand Down Expand Up @@ -117,6 +133,42 @@ public void setFileUrl(String fileUrl) {
if(fileUrl != null){
putBodyParameter("FileUrl", fileUrl);
}
}

public static class CsvControl {

@SerializedName("Method")
private String method;

@SerializedName("EmbedColumn")
private Long embedColumn;

@SerializedName("EmbedPrecision")
private Long embedPrecision;

public String getBizMethod() {
return this.method;
}

public void setBizMethod(String method) {
this.method = method;
}

public Long getEmbedColumn() {
return this.embedColumn;
}

public void setEmbedColumn(Long embedColumn) {
this.embedColumn = embedColumn;
}

public Long getEmbedPrecision() {
return this.embedPrecision;
}

public void setEmbedPrecision(Long embedPrecision) {
this.embedPrecision = embedPrecision;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,12 @@ public static class Application {

private String createTime;

private String browserAccessStatus;

private String l7ProxyDomainAutomatic;

private String l7ProxyDomainCustom;

private List<PortRange> portRanges;

private List<String> addresses;
Expand Down Expand Up @@ -117,6 +123,30 @@ public void setCreateTime(String createTime) {
this.createTime = createTime;
}

public String getBrowserAccessStatus() {
return this.browserAccessStatus;
}

public void setBrowserAccessStatus(String browserAccessStatus) {
this.browserAccessStatus = browserAccessStatus;
}

public String getL7ProxyDomainAutomatic() {
return this.l7ProxyDomainAutomatic;
}

public void setL7ProxyDomainAutomatic(String l7ProxyDomainAutomatic) {
this.l7ProxyDomainAutomatic = l7ProxyDomainAutomatic;
}

public String getL7ProxyDomainCustom() {
return this.l7ProxyDomainCustom;
}

public void setL7ProxyDomainCustom(String l7ProxyDomainCustom) {
this.l7ProxyDomainCustom = l7ProxyDomainCustom;
}

public List<PortRange> getPortRanges() {
return this.portRanges;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ public class ListPrivateAccessApplicationsRequest extends RpcAcsRequest<ListPriv

private List<String> applicationIds;

private String accessModes;

private String name;

private String status;
Expand Down Expand Up @@ -126,6 +128,17 @@ public void setApplicationIds(List<String> applicationIds) {
}
}

public String getAccessModes() {
return this.accessModes;
}

public void setAccessModes(String accessModes) {
this.accessModes = accessModes;
if(accessModes != null){
putQueryParameter("AccessModes", accessModes);
}
}

public String getName() {
return this.name;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ public static class Application {

private String createTime;

private String browserAccessStatus;

private String l7ProxyDomainAutomatic;

private String l7ProxyDomainCustom;

private List<PortRange> portRanges;

private List<String> addresses;
Expand Down Expand Up @@ -127,6 +133,30 @@ public void setCreateTime(String createTime) {
this.createTime = createTime;
}

public String getBrowserAccessStatus() {
return this.browserAccessStatus;
}

public void setBrowserAccessStatus(String browserAccessStatus) {
this.browserAccessStatus = browserAccessStatus;
}

public String getL7ProxyDomainAutomatic() {
return this.l7ProxyDomainAutomatic;
}

public void setL7ProxyDomainAutomatic(String l7ProxyDomainAutomatic) {
this.l7ProxyDomainAutomatic = l7ProxyDomainAutomatic;
}

public String getL7ProxyDomainCustom() {
return this.l7ProxyDomainCustom;
}

public void setL7ProxyDomainCustom(String l7ProxyDomainCustom) {
this.l7ProxyDomainCustom = l7ProxyDomainCustom;
}

public List<PortRange> getPortRanges() {
return this.portRanges;
}
Expand Down
Loading

0 comments on commit ad12be6

Please sign in to comment.