Skip to content

Commit

Permalink
基于转移码的转出接口
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Oct 18, 2024
1 parent 04b57e1 commit a2f2d52
Show file tree
Hide file tree
Showing 439 changed files with 33,883 additions and 4,823 deletions.
5 changes: 5 additions & 0 deletions aliyun-java-sdk-domain/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024-10-18 Version: 3.15.10
- 基于转移码的转出接口
- SaveSingleTaskForTransferOutByAuthorizationCode
- SaveBatchTaskForTransferOutByAuthorizationCode

2024-10-17 Version: 3.15.9
- Supported query exchange rate.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-domain/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-domain</artifactId>
<packaging>jar</packaging>
<version>3.15.9</version>
<version>3.15.10</version>
<name>aliyun-java-sdk-domain</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
@@ -0,0 +1,83 @@
/*
* 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.domain.model.v20180129;

import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.domain.Endpoint;

/**
* @author auto create
* @version
*/
public class AcknowledgeTaskResultRequest extends RpcAcsRequest<AcknowledgeTaskResultResponse> {


private List<String> taskDetailNos;

private String userClientIp;

private String lang;
public AcknowledgeTaskResultRequest() {
super("Domain", "2018-01-29", "AcknowledgeTaskResult", "domain");
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 List<String> getTaskDetailNos() {
return this.taskDetailNos;
}

public void setTaskDetailNos(List<String> taskDetailNos) {
this.taskDetailNos = taskDetailNos;
if (taskDetailNos != null) {
for (int i = 0; i < taskDetailNos.size(); i++) {
putQueryParameter("TaskDetailNo." + (i + 1) , taskDetailNos.get(i));
}
}
}

public String getUserClientIp() {
return this.userClientIp;
}

public void setUserClientIp(String userClientIp) {
this.userClientIp = userClientIp;
if(userClientIp != null){
putQueryParameter("UserClientIp", userClientIp);
}
}

public String getLang() {
return this.lang;
}

public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}

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

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/*
* 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.domain.model.v20180129;

import com.aliyuncs.AcsResponse;
import com.aliyuncs.domain.transform.v20180129.AcknowledgeTaskResultResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class AcknowledgeTaskResultResponse extends AcsResponse {

private String requestId;

private Integer result;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

public Integer getResult() {
return this.result;
}

public void setResult(Integer result) {
this.result = result;
}

@Override
public AcknowledgeTaskResultResponse getInstance(UnmarshallerContext context) {
return AcknowledgeTaskResultResponseUnmarshaller.unmarshall(this, context);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
/*
* 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.domain.model.v20180129;

import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.domain.Endpoint;

/**
* @author auto create
* @version
*/
public class BatchFuzzyMatchDomainSensitiveWordRequest extends RpcAcsRequest<BatchFuzzyMatchDomainSensitiveWordResponse> {


private String userClientIp;

private String keyword;

private String lang;
public BatchFuzzyMatchDomainSensitiveWordRequest() {
super("Domain", "2018-01-29", "BatchFuzzyMatchDomainSensitiveWord", "domain");
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 getUserClientIp() {
return this.userClientIp;
}

public void setUserClientIp(String userClientIp) {
this.userClientIp = userClientIp;
if(userClientIp != null){
putQueryParameter("UserClientIp", userClientIp);
}
}

public String getKeyword() {
return this.keyword;
}

public void setKeyword(String keyword) {
this.keyword = keyword;
if(keyword != null){
putQueryParameter("Keyword", keyword);
}
}

public String getLang() {
return this.lang;
}

public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}

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

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/*
* 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.domain.model.v20180129;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.domain.transform.v20180129.BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class BatchFuzzyMatchDomainSensitiveWordResponse extends AcsResponse {

private String requestId;

private List<SensitiveWordMatchResult> sensitiveWordMatchResultList;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

public List<SensitiveWordMatchResult> getSensitiveWordMatchResultList() {
return this.sensitiveWordMatchResultList;
}

public void setSensitiveWordMatchResultList(List<SensitiveWordMatchResult> sensitiveWordMatchResultList) {
this.sensitiveWordMatchResultList = sensitiveWordMatchResultList;
}

public static class SensitiveWordMatchResult {

private String keyword;

private Boolean exist;

private List<MatchedSensitiveWord> matchedSentiveWords;

public String getKeyword() {
return this.keyword;
}

public void setKeyword(String keyword) {
this.keyword = keyword;
}

public Boolean getExist() {
return this.exist;
}

public void setExist(Boolean exist) {
this.exist = exist;
}

public List<MatchedSensitiveWord> getMatchedSentiveWords() {
return this.matchedSentiveWords;
}

public void setMatchedSentiveWords(List<MatchedSensitiveWord> matchedSentiveWords) {
this.matchedSentiveWords = matchedSentiveWords;
}

public static class MatchedSensitiveWord {

private String word;

public String getWord() {
return this.word;
}

public void setWord(String word) {
this.word = word;
}
}
}

@Override
public BatchFuzzyMatchDomainSensitiveWordResponse getInstance(UnmarshallerContext context) {
return BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller.unmarshall(this, context);
}
}
Loading

0 comments on commit a2f2d52

Please sign in to comment.