Skip to content

Commit f3aed77

Browse files
committed
Update API GetTopicAttributes: add response parameters Body.Data.TopicInnerUrl.
1 parent e9c44cb commit f3aed77

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

mns-open-20220119/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alicloud/mns-open20220119",
3-
"version": "1.3.2",
3+
"version": "1.3.3",
44
"description": "",
55
"main": "dist/client.js",
66
"scripts": {

mns-open-20220119/src/models/GetTopicAttributesResponseBody.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ export class GetTopicAttributesResponseBodyData extends $dara.Model {
9999
* The tags added to the resources.
100100
*/
101101
tags?: GetTopicAttributesResponseBodyDataTags[];
102+
/**
103+
* @example
104+
* http:// 111111111****.mns.us-west-1-internal.aliyuncs.com/topics/testTopic
105+
*/
106+
topicInnerUrl?: string;
102107
/**
103108
* @remarks
104109
* The name of the topic.
@@ -108,6 +113,11 @@ export class GetTopicAttributesResponseBodyData extends $dara.Model {
108113
*/
109114
topicName?: string;
110115
topicType?: string;
116+
/**
117+
* @example
118+
* http:// 111111111****.mns.us-west-1.aliyuncs.com/topics/testTopic
119+
*/
120+
topicUrl?: string;
111121
static names(): { [key: string]: string } {
112122
return {
113123
createTime: 'CreateTime',
@@ -117,8 +127,10 @@ export class GetTopicAttributesResponseBodyData extends $dara.Model {
117127
messageCount: 'MessageCount',
118128
messageRetentionPeriod: 'MessageRetentionPeriod',
119129
tags: 'Tags',
130+
topicInnerUrl: 'TopicInnerUrl',
120131
topicName: 'TopicName',
121132
topicType: 'TopicType',
133+
topicUrl: 'TopicUrl',
122134
};
123135
}
124136

@@ -131,8 +143,10 @@ export class GetTopicAttributesResponseBodyData extends $dara.Model {
131143
messageCount: 'number',
132144
messageRetentionPeriod: 'number',
133145
tags: { 'type': 'array', 'itemType': GetTopicAttributesResponseBodyDataTags },
146+
topicInnerUrl: 'string',
134147
topicName: 'string',
135148
topicType: 'string',
149+
topicUrl: 'string',
136150
};
137151
}
138152

0 commit comments

Comments
 (0)