Skip to content

Commit 6e627f5

Browse files
committed
Update API GetTopicAttributes: add response parameters Body.Data.TopicInnerUrl.
1 parent 01bb5d0 commit 6e627f5

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

mns-open-20220119/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-11-05 Version: 1.3.3
2+
- Update API GetTopicAttributes: add response parameters Body.Data.TopicInnerUrl.
3+
- Update API GetTopicAttributes: add response parameters Body.Data.TopicUrl.
4+
5+
16
2025-09-12 Version: 1.3.2
27
- Update API SetSubscriptionAttributes: add request parameters StsRoleArn.
38

mns-open-20220119/core/Models/GetTopicAttributesResponseBody.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,14 @@ public class GetTopicAttributesResponseBodyDataTags : TeaModel {
119119

120120
}
121121

122+
/// <summary>
123+
/// <b>Example:</b>
124+
/// <para>http:// 111111111****.mns.us-west-1-internal.aliyuncs.com/topics/testTopic</para>
125+
/// </summary>
126+
[NameInMap("TopicInnerUrl")]
127+
[Validation(Required=false)]
128+
public string TopicInnerUrl { get; set; }
129+
122130
/// <summary>
123131
/// <para>The name of the topic.</para>
124132
///
@@ -133,6 +141,14 @@ public class GetTopicAttributesResponseBodyDataTags : TeaModel {
133141
[Validation(Required=false)]
134142
public string TopicType { get; set; }
135143

144+
/// <summary>
145+
/// <b>Example:</b>
146+
/// <para>http:// 111111111****.mns.us-west-1.aliyuncs.com/topics/testTopic</para>
147+
/// </summary>
148+
[NameInMap("TopicUrl")]
149+
[Validation(Required=false)]
150+
public string TopicUrl { get; set; }
151+
136152
}
137153

138154
/// <summary>

mns-open-20220119/core/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
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("12f62590-8ffb-11f0-a681-2d76f34564dc")]
23+
[assembly: Guid("cd4cf2f0-ba69-11f0-a4c4-89986898f3e2")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//
@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("1.3.1.0")]
33-
[assembly: AssemblyFileVersion("1.3.2.0")]
32+
[assembly: AssemblyVersion("1.3.2.0")]
33+
[assembly: AssemblyFileVersion("1.3.3.0")]

mns-open-20220119/core/mns-open.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
88
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
99
<AssemblyName>AlibabaCloud.SDK.Mns-open20220119</AssemblyName>
10-
<Version>1.3.2</Version>
10+
<Version>1.3.3</Version>
1111
<LangVersion>5</LangVersion>
1212
<Authors>Alibaba Cloud</Authors>
1313
<Description>Alibaba Cloud Mns-open (20220119) SDK Library for .NET</Description>

0 commit comments

Comments
 (0)