Skip to content

Commit 395123f

Browse files
committed
-Release GetJobDetail, ListJobInfo.
1 parent 19e1d9e commit 395123f

11 files changed

+1424
-46
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-12-06 Version: 2.16.29
2+
-Release GetJobDetail, ListJobInfo.
3+
-Modify GetTranscodeTask.
4+
15
2024-12-02 Version: 1.0.0
26
- Add LabelPriorityLevel in UpdateModelFeature API.
37

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
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+
using System.Collections.Generic;
20+
21+
using Aliyun.Acs.Core;
22+
using Aliyun.Acs.Core.Http;
23+
using Aliyun.Acs.Core.Transform;
24+
using Aliyun.Acs.Core.Utils;
25+
using Aliyun.Acs.vod.Transform;
26+
using Aliyun.Acs.vod.Transform.V20170321;
27+
28+
namespace Aliyun.Acs.vod.Model.V20170321
29+
{
30+
public class GetJobDetailRequest : RpcAcsRequest<GetJobDetailResponse>
31+
{
32+
public GetJobDetailRequest()
33+
: base("vod", "2017-03-21", "GetJobDetail", "vod", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.vod.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.vod.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string jobType;
44+
45+
private string jobId;
46+
47+
public string JobType
48+
{
49+
get
50+
{
51+
return jobType;
52+
}
53+
set
54+
{
55+
jobType = value;
56+
DictionaryUtil.Add(QueryParameters, "JobType", value);
57+
}
58+
}
59+
60+
public string JobId
61+
{
62+
get
63+
{
64+
return jobId;
65+
}
66+
set
67+
{
68+
jobId = value;
69+
DictionaryUtil.Add(QueryParameters, "JobId", value);
70+
}
71+
}
72+
73+
public override bool CheckShowJsonItemName()
74+
{
75+
return false;
76+
}
77+
78+
public override GetJobDetailResponse GetResponse(UnmarshallerContext unmarshallerContext)
79+
{
80+
return GetJobDetailResponseUnmarshaller.Unmarshall(unmarshallerContext);
81+
}
82+
}
83+
}

0 commit comments

Comments
 (0)