Skip to content

Commit

Permalink
Support manual scan interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 4, 2020
1 parent e7e754d commit ddfaff4
Show file tree
Hide file tree
Showing 39 changed files with 1,587 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2020-12-04 Version: 3.6.3
- Support manual scan interface.

2020-12-03 Version: 2.1.1
- Update ModifyDcdnService.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public CreateKeywordRequest()

private string keywords;

private int? keywordLibId;
private long? keywordLibId;

private string sourceIp;

Expand All @@ -61,7 +61,7 @@ public string Keywords
}
}

public int? KeywordLibId
public long? KeywordLibId
{
get
{
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
using System.Collections.Generic;

using Aliyun.Acs.Core;
using Aliyun.Acs.Core.Http;
using Aliyun.Acs.Core.Transform;
using Aliyun.Acs.Core.Utils;
using Aliyun.Acs.Green.Transform;
using Aliyun.Acs.Green.Transform.V20170823;

namespace Aliyun.Acs.Green.Model.V20170823
{
public class DescribeCloudMonitorServicesRequest : RpcAcsRequest<DescribeCloudMonitorServicesResponse>
{
public DescribeCloudMonitorServicesRequest()
: base("Green", "2017-08-23", "DescribeCloudMonitorServices", "green", "openAPI")
{
if (this.GetType().GetProperty("ProductEndpointMap") != null && this.GetType().GetProperty("ProductEndpointType") != null)
{
this.GetType().GetProperty("ProductEndpointMap").SetValue(this, Aliyun.Acs.Green.Endpoint.endpointMap, null);
this.GetType().GetProperty("ProductEndpointType").SetValue(this, Aliyun.Acs.Green.Endpoint.endpointRegionalType, null);
}
Method = MethodType.POST;
}

private string sourceIp;

private string pageSize;

private string page;

public string SourceIp
{
get
{
return sourceIp;
}
set
{
sourceIp = value;
DictionaryUtil.Add(QueryParameters, "SourceIp", value);
}
}

public string PageSize
{
get
{
return pageSize;
}
set
{
pageSize = value;
DictionaryUtil.Add(QueryParameters, "PageSize", value);
}
}

public string Page
{
get
{
return page;
}
set
{
page = value;
DictionaryUtil.Add(QueryParameters, "Page", value);
}
}

public override bool CheckShowJsonItemName()
{
return false;
}

public override DescribeCloudMonitorServicesResponse GetResponse(UnmarshallerContext unmarshallerContext)
{
return DescribeCloudMonitorServicesResponseUnmarshaller.Unmarshall(unmarshallerContext);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
using System.Collections.Generic;

using Aliyun.Acs.Core;

namespace Aliyun.Acs.Green.Model.V20170823
{
public class DescribeCloudMonitorServicesResponse : AcsResponse
{

private string requestId;

private int? totalCount;

private List<string> items;

public string RequestId
{
get
{
return requestId;
}
set
{
requestId = value;
}
}

public int? TotalCount
{
get
{
return totalCount;
}
set
{
totalCount = value;
}
}

public List<string> Items
{
get
{
return items;
}
set
{
items = value;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ public class DescribeOssIncrementCheckSettingResponse : AcsResponse

private string callbackName;

private int? audioMaxSize;

private bool? audioAutoFreezeOpened;

private List<DescribeOssIncrementCheckSetting_BucketConfig> bucketConfigList;

private List<string> imageSceneList;
Expand All @@ -51,8 +55,12 @@ public class DescribeOssIncrementCheckSettingResponse : AcsResponse

private List<string> videoAutoFreezeSceneList;

private List<string> audioSceneList;

private DescribeOssIncrementCheckSetting_ImageAutoFreeze imageAutoFreeze;

private DescribeOssIncrementCheckSetting_AudioAntispamFreezeConfig audioAntispamFreezeConfig;

public string RequestId
{
get
Expand Down Expand Up @@ -161,6 +169,30 @@ public string CallbackName
}
}

public int? AudioMaxSize
{
get
{
return audioMaxSize;
}
set
{
audioMaxSize = value;
}
}

public bool? AudioAutoFreezeOpened
{
get
{
return audioAutoFreezeOpened;
}
set
{
audioAutoFreezeOpened = value;
}
}

public List<DescribeOssIncrementCheckSetting_BucketConfig> BucketConfigList
{
get
Expand Down Expand Up @@ -209,6 +241,18 @@ public List<string> VideoAutoFreezeSceneList
}
}

public List<string> AudioSceneList
{
get
{
return audioSceneList;
}
set
{
audioSceneList = value;
}
}

public DescribeOssIncrementCheckSetting_ImageAutoFreeze ImageAutoFreeze
{
get
Expand All @@ -221,6 +265,18 @@ public DescribeOssIncrementCheckSetting_ImageAutoFreeze ImageAutoFreeze
}
}

public DescribeOssIncrementCheckSetting_AudioAntispamFreezeConfig AudioAntispamFreezeConfig
{
get
{
return audioAntispamFreezeConfig;
}
set
{
audioAntispamFreezeConfig = value;
}
}

public class DescribeOssIncrementCheckSetting_BucketConfig
{

Expand Down Expand Up @@ -340,5 +396,37 @@ public string Live
}
}
}

public class DescribeOssIncrementCheckSetting_AudioAntispamFreezeConfig
{

private string type;

private string _value;

public string Type
{
get
{
return type;
}
set
{
type = value;
}
}

public string _Value
{
get
{
return _value;
}
set
{
_value = value;
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ public class DescribeOssIncrementOverviewResponse : AcsResponse

private int? voiceAntispamUnhandleCount;

private int? audioCount;

public string RequestId
{
get
Expand Down Expand Up @@ -150,5 +152,17 @@ public int? VoiceAntispamUnhandleCount
voiceAntispamUnhandleCount = value;
}
}

public int? AudioCount
{
get
{
return audioCount;
}
set
{
audioCount = value;
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,25 @@ public DescribeOssStockStatusRequest()
Method = MethodType.POST;
}

private long? stockTaskId;

private string sourceIp;

private string lang;

public long? StockTaskId
{
get
{
return stockTaskId;
}
set
{
stockTaskId = value;
DictionaryUtil.Add(QueryParameters, "StockTaskId", value.ToString());
}
}

public string SourceIp
{
get
Expand Down
Loading

0 comments on commit ddfaff4

Please sign in to comment.