Skip to content

Commit 265263b

Browse files
committed
Change version number.
1 parent b117d76 commit 265263b

14 files changed

+1368
-1
lines changed

aliyun-net-sdk-vcs/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2020-07-24 Version: 1.1.0
2+
- Change version number.
3+
14
2020-07-22 Version: 1.0.9.2
25
- Add SourceId for SearchFace.
36

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.Vcs.Transform;
26+
using Aliyun.Acs.Vcs.Transform.V20200515;
27+
28+
namespace Aliyun.Acs.Vcs.Model.V20200515
29+
{
30+
public class GetDeviceConfigRequest : RpcAcsRequest<GetDeviceConfigResponse>
31+
{
32+
public GetDeviceConfigRequest()
33+
: base("Vcs", "2020-05-15", "GetDeviceConfig", "vcs", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string deviceTimeStamp;
44+
45+
private string deviceSn;
46+
47+
public string DeviceTimeStamp
48+
{
49+
get
50+
{
51+
return deviceTimeStamp;
52+
}
53+
set
54+
{
55+
deviceTimeStamp = value;
56+
DictionaryUtil.Add(BodyParameters, "DeviceTimeStamp", value);
57+
}
58+
}
59+
60+
public string DeviceSn
61+
{
62+
get
63+
{
64+
return deviceSn;
65+
}
66+
set
67+
{
68+
deviceSn = value;
69+
DictionaryUtil.Add(BodyParameters, "DeviceSn", value);
70+
}
71+
}
72+
73+
public override bool CheckShowJsonItemName()
74+
{
75+
return false;
76+
}
77+
78+
public override GetDeviceConfigResponse GetResponse(UnmarshallerContext unmarshallerContext)
79+
{
80+
return GetDeviceConfigResponseUnmarshaller.Unmarshall(unmarshallerContext);
81+
}
82+
}
83+
}

0 commit comments

Comments
 (0)