Skip to content

Commit 4da87e2

Browse files
committed
Modify SubmitSmarttagJob.
1 parent b78e77c commit 4da87e2

22 files changed

Lines changed: 1511 additions & 1 deletion

aliyun-java-sdk-mts/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2020-04-16 Version: 2.7.4
2+
- Modify `SubmitSmarttagJob`.
3+
14
2019-11-20 Version: 2.7.3
25
- Generated 2014-06-18 for `Mts`.
36

aliyun-java-sdk-mts/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-mts</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.7.3</version>
7+
<version>2.7.4</version>
88
<name>aliyun-java-sdk-mts</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
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.mts.model.v20140618;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.mts.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateFpShotDBRequest extends RpcAcsRequest<CreateFpShotDBResponse> {
26+
27+
28+
private Long resourceOwnerId;
29+
30+
private String description;
31+
32+
private String resourceOwnerAccount;
33+
34+
private Integer modelId;
35+
36+
private String ownerAccount;
37+
38+
private Long ownerId;
39+
40+
private String name;
41+
42+
private String config;
43+
public CreateFpShotDBRequest() {
44+
super("Mts", "2014-06-18", "CreateFpShotDB", "mts");
45+
setMethod(MethodType.POST);
46+
try {
47+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
48+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
49+
} catch (Exception e) {}
50+
}
51+
52+
public Long getResourceOwnerId() {
53+
return this.resourceOwnerId;
54+
}
55+
56+
public void setResourceOwnerId(Long resourceOwnerId) {
57+
this.resourceOwnerId = resourceOwnerId;
58+
if(resourceOwnerId != null){
59+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
60+
}
61+
}
62+
63+
public String getDescription() {
64+
return this.description;
65+
}
66+
67+
public void setDescription(String description) {
68+
this.description = description;
69+
if(description != null){
70+
putQueryParameter("Description", description);
71+
}
72+
}
73+
74+
public String getResourceOwnerAccount() {
75+
return this.resourceOwnerAccount;
76+
}
77+
78+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
79+
this.resourceOwnerAccount = resourceOwnerAccount;
80+
if(resourceOwnerAccount != null){
81+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
82+
}
83+
}
84+
85+
public Integer getModelId() {
86+
return this.modelId;
87+
}
88+
89+
public void setModelId(Integer modelId) {
90+
this.modelId = modelId;
91+
if(modelId != null){
92+
putQueryParameter("ModelId", modelId.toString());
93+
}
94+
}
95+
96+
public String getOwnerAccount() {
97+
return this.ownerAccount;
98+
}
99+
100+
public void setOwnerAccount(String ownerAccount) {
101+
this.ownerAccount = ownerAccount;
102+
if(ownerAccount != null){
103+
putQueryParameter("OwnerAccount", ownerAccount);
104+
}
105+
}
106+
107+
public Long getOwnerId() {
108+
return this.ownerId;
109+
}
110+
111+
public void setOwnerId(Long ownerId) {
112+
this.ownerId = ownerId;
113+
if(ownerId != null){
114+
putQueryParameter("OwnerId", ownerId.toString());
115+
}
116+
}
117+
118+
public String getName() {
119+
return this.name;
120+
}
121+
122+
public void setName(String name) {
123+
this.name = name;
124+
if(name != null){
125+
putQueryParameter("Name", name);
126+
}
127+
}
128+
129+
public String getConfig() {
130+
return this.config;
131+
}
132+
133+
public void setConfig(String config) {
134+
this.config = config;
135+
if(config != null){
136+
putQueryParameter("Config", config);
137+
}
138+
}
139+
140+
@Override
141+
public Class<CreateFpShotDBResponse> getResponseClass() {
142+
return CreateFpShotDBResponse.class;
143+
}
144+
145+
}
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.mts.model.v20140618;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.mts.transform.v20140618.CreateFpShotDBResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateFpShotDBResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private FpShotDB fpShotDB;
30+
31+
public String getRequestId() {
32+
return this.requestId;
33+
}
34+
35+
public void setRequestId(String requestId) {
36+
this.requestId = requestId;
37+
}
38+
39+
public FpShotDB getFpShotDB() {
40+
return this.fpShotDB;
41+
}
42+
43+
public void setFpShotDB(FpShotDB fpShotDB) {
44+
this.fpShotDB = fpShotDB;
45+
}
46+
47+
public static class FpShotDB {
48+
49+
private String fpDBId;
50+
51+
private String name;
52+
53+
private Integer modelId;
54+
55+
private String state;
56+
57+
private String config;
58+
59+
private String description;
60+
61+
public String getFpDBId() {
62+
return this.fpDBId;
63+
}
64+
65+
public void setFpDBId(String fpDBId) {
66+
this.fpDBId = fpDBId;
67+
}
68+
69+
public String getName() {
70+
return this.name;
71+
}
72+
73+
public void setName(String name) {
74+
this.name = name;
75+
}
76+
77+
public Integer getModelId() {
78+
return this.modelId;
79+
}
80+
81+
public void setModelId(Integer modelId) {
82+
this.modelId = modelId;
83+
}
84+
85+
public String getState() {
86+
return this.state;
87+
}
88+
89+
public void setState(String state) {
90+
this.state = state;
91+
}
92+
93+
public String getConfig() {
94+
return this.config;
95+
}
96+
97+
public void setConfig(String config) {
98+
this.config = config;
99+
}
100+
101+
public String getDescription() {
102+
return this.description;
103+
}
104+
105+
public void setDescription(String description) {
106+
this.description = description;
107+
}
108+
}
109+
110+
@Override
111+
public CreateFpShotDBResponse getInstance(UnmarshallerContext context) {
112+
return CreateFpShotDBResponseUnmarshaller.unmarshall(this, context);
113+
}
114+
}
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
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.mts.model.v20140618;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.mts.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ListFpShotDBRequest extends RpcAcsRequest<ListFpShotDBResponse> {
26+
27+
28+
private Long resourceOwnerId;
29+
30+
private String resourceOwnerAccount;
31+
32+
private String ownerAccount;
33+
34+
private Long ownerId;
35+
36+
private String fpDBIds;
37+
public ListFpShotDBRequest() {
38+
super("Mts", "2014-06-18", "ListFpShotDB", "mts");
39+
setMethod(MethodType.POST);
40+
try {
41+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
42+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
43+
} catch (Exception e) {}
44+
}
45+
46+
public Long getResourceOwnerId() {
47+
return this.resourceOwnerId;
48+
}
49+
50+
public void setResourceOwnerId(Long resourceOwnerId) {
51+
this.resourceOwnerId = resourceOwnerId;
52+
if(resourceOwnerId != null){
53+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
54+
}
55+
}
56+
57+
public String getResourceOwnerAccount() {
58+
return this.resourceOwnerAccount;
59+
}
60+
61+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
62+
this.resourceOwnerAccount = resourceOwnerAccount;
63+
if(resourceOwnerAccount != null){
64+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
65+
}
66+
}
67+
68+
public String getOwnerAccount() {
69+
return this.ownerAccount;
70+
}
71+
72+
public void setOwnerAccount(String ownerAccount) {
73+
this.ownerAccount = ownerAccount;
74+
if(ownerAccount != null){
75+
putQueryParameter("OwnerAccount", ownerAccount);
76+
}
77+
}
78+
79+
public Long getOwnerId() {
80+
return this.ownerId;
81+
}
82+
83+
public void setOwnerId(Long ownerId) {
84+
this.ownerId = ownerId;
85+
if(ownerId != null){
86+
putQueryParameter("OwnerId", ownerId.toString());
87+
}
88+
}
89+
90+
public String getFpDBIds() {
91+
return this.fpDBIds;
92+
}
93+
94+
public void setFpDBIds(String fpDBIds) {
95+
this.fpDBIds = fpDBIds;
96+
if(fpDBIds != null){
97+
putQueryParameter("FpDBIds", fpDBIds);
98+
}
99+
}
100+
101+
@Override
102+
public Class<ListFpShotDBResponse> getResponseClass() {
103+
return ListFpShotDBResponse.class;
104+
}
105+
106+
}

0 commit comments

Comments
 (0)