-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
439 changed files
with
33,883 additions
and
4,823 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 83 additions & 0 deletions
83
...omain/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} |
51 changes: 51 additions & 0 deletions
51
...main/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
...n/java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} |
98 changes: 98 additions & 0 deletions
98
.../java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |
Oops, something went wrong.