Skip to content

Commit cb29ce0

Browse files
committed
Update API GetInstance: add response parameters Body.data.networkInfo.endpoints.$.endpointId.
1 parent 8c74d78 commit cb29ce0

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

rocketmq-20220801/package.json

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

rocketmq-20220801/src/models/GetInstanceResponseBody.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,11 @@ export class GetInstanceResponseBodyDataInstanceQuotas extends $dara.Model {
320320
}
321321

322322
export class GetInstanceResponseBodyDataNetworkInfoEndpoints extends $dara.Model {
323+
/**
324+
* @example
325+
* ep-bpxxx
326+
*/
327+
endpointId?: string;
323328
/**
324329
* @remarks
325330
* The type of the endpoint that is used to access the instance.
@@ -356,6 +361,7 @@ export class GetInstanceResponseBodyDataNetworkInfoEndpoints extends $dara.Model
356361
ipWhitelist?: string[];
357362
static names(): { [key: string]: string } {
358363
return {
364+
endpointId: 'endpointId',
359365
endpointType: 'endpointType',
360366
endpointUrl: 'endpointUrl',
361367
ipWhitelist: 'ipWhitelist',
@@ -364,6 +370,7 @@ export class GetInstanceResponseBodyDataNetworkInfoEndpoints extends $dara.Model
364370

365371
static types(): { [key: string]: any } {
366372
return {
373+
endpointId: 'string',
367374
endpointType: 'string',
368375
endpointUrl: 'string',
369376
ipWhitelist: { 'type': 'array', 'itemType': 'string' },

0 commit comments

Comments
 (0)