Skip to content

Commit d3df17c

Browse files
committed
Supported MultiMedia Post scan.
1 parent 1c70fb8 commit d3df17c

33 files changed

+2747
-14
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-03-30 Version: 3.6.4
2+
- Supported MultiMedia Post scan.
3+
14
2021-03-30 Version: 1.15.0
25
- Support ListDDLPublishRecords API.
36
- Fixed GetMetaTableColumn, GetMetaTableDetailInfo API response param DataLength lack of precision.

aliyun-net-sdk-green/Green/Model/V20170823/CreateBizTypeRequest.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ public CreateBizTypeRequest()
4040
Method = MethodType.POST;
4141
}
4242

43+
private string description;
44+
4345
private string bizTypeImport;
4446

4547
private bool? citeTemplate;
@@ -48,6 +50,19 @@ public CreateBizTypeRequest()
4850

4951
private string bizTypeName;
5052

53+
public string Description
54+
{
55+
get
56+
{
57+
return description;
58+
}
59+
set
60+
{
61+
description = value;
62+
DictionaryUtil.Add(QueryParameters, "Description", value);
63+
}
64+
}
65+
5166
public string BizTypeImport
5267
{
5368
get

aliyun-net-sdk-green/Green/Model/V20170823/DescribeAuditCallbackResponse.cs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ public class DescribeAuditCallbackResponse : AcsResponse
3131

3232
private string callback;
3333

34+
private int? cryptType;
35+
3436
public string RequestId
3537
{
3638
get
@@ -66,5 +68,17 @@ public string Callback
6668
callback = value;
6769
}
6870
}
71+
72+
public int? CryptType
73+
{
74+
get
75+
{
76+
return cryptType;
77+
}
78+
set
79+
{
80+
cryptType = value;
81+
}
82+
}
6983
}
7084
}
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
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.Green.Transform;
26+
using Aliyun.Acs.Green.Transform.V20170823;
27+
28+
namespace Aliyun.Acs.Green.Model.V20170823
29+
{
30+
public class DescribeBizTypeImageLibRequest : RpcAcsRequest<DescribeBizTypeImageLibResponse>
31+
{
32+
public DescribeBizTypeImageLibRequest()
33+
: base("Green", "2017-08-23", "DescribeBizTypeImageLib", "green", "openAPI")
34+
{
35+
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
36+
{
37+
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Green.Endpoint.endpointMap, null);
38+
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Green.Endpoint.endpointRegionalType, null);
39+
}
40+
Method = MethodType.POST;
41+
}
42+
43+
private string resourceType;
44+
45+
private string scene;
46+
47+
private string bizTypeName;
48+
49+
public string ResourceType
50+
{
51+
get
52+
{
53+
return resourceType;
54+
}
55+
set
56+
{
57+
resourceType = value;
58+
DictionaryUtil.Add(QueryParameters, "ResourceType", value);
59+
}
60+
}
61+
62+
public string Scene
63+
{
64+
get
65+
{
66+
return scene;
67+
}
68+
set
69+
{
70+
scene = value;
71+
DictionaryUtil.Add(QueryParameters, "Scene", value);
72+
}
73+
}
74+
75+
public string BizTypeName
76+
{
77+
get
78+
{
79+
return bizTypeName;
80+
}
81+
set
82+
{
83+
bizTypeName = value;
84+
DictionaryUtil.Add(QueryParameters, "BizTypeName", value);
85+
}
86+
}
87+
88+
public override bool CheckShowJsonItemName()
89+
{
90+
return false;
91+
}
92+
93+
public override DescribeBizTypeImageLibResponse GetResponse(UnmarshallerContext unmarshallerContext)
94+
{
95+
return DescribeBizTypeImageLibResponseUnmarshaller.Unmarshall(unmarshallerContext);
96+
}
97+
}
98+
}

0 commit comments

Comments
 (0)