Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 546e688

Browse files
committed
update mts sdk
1 parent 938fdc4 commit 546e688

14 files changed

+2435
-361
lines changed

aliyun-java-sdk-mts/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-mts</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.0.6</version>
6+
<version>2.0.7</version>
77
<name>aliyun-java-sdk-mts</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
package com.aliyuncs.mts.model.v20140618;
20+
21+
import com.aliyuncs.RpcAcsRequest;
22+
23+
/**
24+
* @author auto create
25+
* @version
26+
*/
27+
public class ListJobRequest extends RpcAcsRequest<ListJobResponse> {
28+
29+
public ListJobRequest() {
30+
super("Mts", "2014-06-18", "ListJob");
31+
}
32+
33+
private Long ownerId;
34+
35+
private String resourceOwnerAccount;
36+
37+
private Long resourceOwnerId;
38+
39+
private String nextPageToken;
40+
41+
private Long maximumPageSize;
42+
43+
private String state;
44+
45+
private String startOfJobCreatedTimeRange;
46+
47+
private String endOfJobCreatedTimeRange;
48+
49+
private String pipelineId;
50+
51+
private String ownerAccount;
52+
53+
public Long getOwnerId() {
54+
return this.ownerId;
55+
}
56+
57+
public void setOwnerId(Long ownerId) {
58+
this.ownerId = ownerId;
59+
putQueryParameter("OwnerId", ownerId);
60+
}
61+
62+
public String getResourceOwnerAccount() {
63+
return this.resourceOwnerAccount;
64+
}
65+
66+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
67+
this.resourceOwnerAccount = resourceOwnerAccount;
68+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
69+
}
70+
71+
public Long getResourceOwnerId() {
72+
return this.resourceOwnerId;
73+
}
74+
75+
public void setResourceOwnerId(Long resourceOwnerId) {
76+
this.resourceOwnerId = resourceOwnerId;
77+
putQueryParameter("ResourceOwnerId", resourceOwnerId);
78+
}
79+
80+
public String getNextPageToken() {
81+
return this.nextPageToken;
82+
}
83+
84+
public void setNextPageToken(String nextPageToken) {
85+
this.nextPageToken = nextPageToken;
86+
putQueryParameter("NextPageToken", nextPageToken);
87+
}
88+
89+
public Long getMaximumPageSize() {
90+
return this.maximumPageSize;
91+
}
92+
93+
public void setMaximumPageSize(Long maximumPageSize) {
94+
this.maximumPageSize = maximumPageSize;
95+
putQueryParameter("MaximumPageSize", maximumPageSize);
96+
}
97+
98+
public String getState() {
99+
return this.state;
100+
}
101+
102+
public void setState(String state) {
103+
this.state = state;
104+
putQueryParameter("State", state);
105+
}
106+
107+
public String getStartOfJobCreatedTimeRange() {
108+
return this.startOfJobCreatedTimeRange;
109+
}
110+
111+
public void setStartOfJobCreatedTimeRange(String startOfJobCreatedTimeRange) {
112+
this.startOfJobCreatedTimeRange = startOfJobCreatedTimeRange;
113+
putQueryParameter("StartOfJobCreatedTimeRange", startOfJobCreatedTimeRange);
114+
}
115+
116+
public String getEndOfJobCreatedTimeRange() {
117+
return this.endOfJobCreatedTimeRange;
118+
}
119+
120+
public void setEndOfJobCreatedTimeRange(String endOfJobCreatedTimeRange) {
121+
this.endOfJobCreatedTimeRange = endOfJobCreatedTimeRange;
122+
putQueryParameter("EndOfJobCreatedTimeRange", endOfJobCreatedTimeRange);
123+
}
124+
125+
public String getPipelineId() {
126+
return this.pipelineId;
127+
}
128+
129+
public void setPipelineId(String pipelineId) {
130+
this.pipelineId = pipelineId;
131+
putQueryParameter("PipelineId", pipelineId);
132+
}
133+
134+
public String getOwnerAccount() {
135+
return this.ownerAccount;
136+
}
137+
138+
public void setOwnerAccount(String ownerAccount) {
139+
this.ownerAccount = ownerAccount;
140+
putQueryParameter("OwnerAccount", ownerAccount);
141+
}
142+
143+
@Override
144+
public Class<ListJobResponse> getResponseClass() {
145+
return ListJobResponse.class;
146+
}
147+
148+
}

0 commit comments

Comments
 (0)