Skip to content

Commit 08a444f

Browse files
committed
Update API GetAllowedIpList: add response parameters Body.AllowedList.InternetList.$.BlackIPList.
1 parent 535090a commit 08a444f

File tree

4 files changed

+46
-3
lines changed

4 files changed

+46
-3
lines changed

alikafka-20190916/ChangeLog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2025-04-09 Version: 2.10.1
2+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.InternetList.$.BlackIPList.
3+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.InternetList.$.BlackIPMap.
4+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.InternetList.$.SecurityGroupId.
5+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.InternetList.$.UserDefinedSharedSecurityGroup.
6+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.VpcList.$.BlackIPList.
7+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.VpcList.$.BlackIPMap.
8+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.VpcList.$.SecurityGroupId.
9+
- Update API GetAllowedIpList: add response parameters Body.AllowedList.VpcList.$.UserDefinedSharedSecurityGroup.
10+
11+
112
2025-02-12 Version: 2.10.0
213
- Support API DescribeAclResourceName.
314

alikafka-20190916/core/Models/GetAllowedIpListResponseBody.cs

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,14 @@ public class GetAllowedIpListResponseBodyAllowedListInternetList : TeaModel {
5454
[Validation(Required=false)]
5555
public List<string> AllowedIpList { get; set; }
5656

57+
[NameInMap("BlackIPList")]
58+
[Validation(Required=false)]
59+
public List<string> BlackIPList { get; set; }
60+
61+
[NameInMap("BlackIPMap")]
62+
[Validation(Required=false)]
63+
public Dictionary<string, string> BlackIPMap { get; set; }
64+
5765
/// <summary>
5866
/// <para>The port range. Valid value:</para>
5967
/// <para><b>9093/9093</b>.</para>
@@ -65,6 +73,14 @@ public class GetAllowedIpListResponseBodyAllowedListInternetList : TeaModel {
6573
[Validation(Required=false)]
6674
public string PortRange { get; set; }
6775

76+
[NameInMap("SecurityGroupId")]
77+
[Validation(Required=false)]
78+
public string SecurityGroupId { get; set; }
79+
80+
[NameInMap("UserDefinedSharedSecurityGroup")]
81+
[Validation(Required=false)]
82+
public bool? UserDefinedSharedSecurityGroup { get; set; }
83+
6884
}
6985

7086
/// <summary>
@@ -88,6 +104,14 @@ public class GetAllowedIpListResponseBodyAllowedListVpcList : TeaModel {
88104
[Validation(Required=false)]
89105
public List<string> AllowedIpList { get; set; }
90106

107+
[NameInMap("BlackIPList")]
108+
[Validation(Required=false)]
109+
public List<string> BlackIPList { get; set; }
110+
111+
[NameInMap("BlackIPMap")]
112+
[Validation(Required=false)]
113+
public Dictionary<string, string> BlackIPMap { get; set; }
114+
91115
/// <summary>
92116
/// <para>The port range. Valid value:</para>
93117
/// <para><b>9092/9092</b>.</para>
@@ -99,6 +123,14 @@ public class GetAllowedIpListResponseBodyAllowedListVpcList : TeaModel {
99123
[Validation(Required=false)]
100124
public string PortRange { get; set; }
101125

126+
[NameInMap("SecurityGroupId")]
127+
[Validation(Required=false)]
128+
public string SecurityGroupId { get; set; }
129+
130+
[NameInMap("UserDefinedSharedSecurityGroup")]
131+
[Validation(Required=false)]
132+
public bool? UserDefinedSharedSecurityGroup { get; set; }
133+
102134
}
103135

104136
}

alikafka-20190916/core/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("37974a80-e91d-11ef-a011-4d7b03c7170e")]
23+
[assembly: Guid("462c6480-1565-11f0-b81b-a9adad2bc373")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//

alikafka-20190916/core/alikafka.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
88
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
99
<AssemblyName>AlibabaCloud.SDK.Alikafka20190916</AssemblyName>
10-
<Version>2.10.0</Version>
10+
<Version>2.10.1</Version>
1111
<LangVersion>5</LangVersion>
1212
<Authors>Alibaba Cloud</Authors>
1313
<Description>Alibaba Cloud MQ for Kafka (20190916) SDK Library for .NET</Description>
@@ -41,7 +41,7 @@
4141
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
4242
</PackageReference>
4343
<PackageReference Include="AlibabaCloud.TeaUtil" Version="0.1.19"/>
44-
<PackageReference Include="AlibabaCloud.OpenApiClient" Version="0.1.12"/>
44+
<PackageReference Include="AlibabaCloud.OpenApiClient" Version="0.1.13"/>
4545
<PackageReference Include="AlibabaCloud.OpenApiUtil" Version="1.1.2"/>
4646
<PackageReference Include="AlibabaCloud.EndpointUtil" Version="0.1.1"/>
4747
<PackageReference Include="Tea" Version="1.1.3"/>

0 commit comments

Comments
 (0)