Skip to content

Commit

Permalink
SubmitSnapshotJob suport timeArray.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 11, 2024
1 parent f75e548 commit 3f75937
Show file tree
Hide file tree
Showing 5 changed files with 209 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-mts/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-11 Version: 3.3.62
- SubmitSnapshotJob suport timeArray.

2024-07-10 Version: 3.3.61
- SubmitSnapshotJob suport timeArray.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-mts/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-mts</artifactId>
<packaging>jar</packaging>
<version>3.3.61</version>
<version>3.3.62</version>
<name>aliyun-java-sdk-mts</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,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.mts.model.v20140618;

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

/**
* @author auto create
* @version
*/
public class SubmitImageCopyrightRequest extends RpcAcsRequest<SubmitImageCopyrightResponse> {


private String message;

private String params;

private String output;
public SubmitImageCopyrightRequest() {
super("Mts", "2014-06-18", "SubmitImageCopyright", "mts");
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 getMessage() {
return this.message;
}

public void setMessage(String message) {
this.message = message;
if(message != null){
putQueryParameter("Message", message);
}
}

public String getParams() {
return this.params;
}

public void setParams(String params) {
this.params = params;
if(params != null){
putQueryParameter("Params", params);
}
}

public String getOutput() {
return this.output;
}

public void setOutput(String output) {
this.output = output;
if(output != null){
putQueryParameter("Output", output);
}
}

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

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

import com.aliyuncs.AcsResponse;
import com.aliyuncs.mts.transform.v20140618.SubmitImageCopyrightResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

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

private String requestId;

private String message;

private Long statusCode;

private Data data;

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

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

public String getMessage() {
return this.message;
}

public void setMessage(String message) {
this.message = message;
}

public Long getStatusCode() {
return this.statusCode;
}

public void setStatusCode(Long statusCode) {
this.statusCode = statusCode;
}

public Data getData() {
return this.data;
}

public void setData(Data data) {
this.data = data;
}

public static class Data {

private String jobId;

public String getJobId() {
return this.jobId;
}

public void setJobId(String jobId) {
this.jobId = jobId;
}
}

@Override
public SubmitImageCopyrightResponse getInstance(UnmarshallerContext context) {
return SubmitImageCopyrightResponseUnmarshaller.unmarshall(this, context);
}

@Override
public boolean checkShowJsonItemName() {
return false;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/*
* 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.mts.transform.v20140618;

import com.aliyuncs.mts.model.v20140618.SubmitImageCopyrightResponse;
import com.aliyuncs.mts.model.v20140618.SubmitImageCopyrightResponse.Data;
import com.aliyuncs.transform.UnmarshallerContext;


public class SubmitImageCopyrightResponseUnmarshaller {

public static SubmitImageCopyrightResponse unmarshall(SubmitImageCopyrightResponse submitImageCopyrightResponse, UnmarshallerContext _ctx) {

submitImageCopyrightResponse.setRequestId(_ctx.stringValue("SubmitImageCopyrightResponse.RequestId"));
submitImageCopyrightResponse.setMessage(_ctx.stringValue("SubmitImageCopyrightResponse.Message"));
submitImageCopyrightResponse.setStatusCode(_ctx.longValue("SubmitImageCopyrightResponse.StatusCode"));

Data data = new Data();
data.setJobId(_ctx.stringValue("SubmitImageCopyrightResponse.Data.JobId"));
submitImageCopyrightResponse.setData(data);

return submitImageCopyrightResponse;
}
}

0 comments on commit 3f75937

Please sign in to comment.