Skip to content

Commit 665c89f

Browse files
committed
Update API DescribeAuthorizedApps: update response param.
1 parent 9f40bf3 commit 665c89f

File tree

2 files changed

+57
-11
lines changed

2 files changed

+57
-11
lines changed

cloudapi-20160714/package.json

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

cloudapi-20160714/src/client.ts

Lines changed: 56 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21062,6 +21062,47 @@ export class DescribeAuthorizedApisResponseBodyAuthorizedApis extends $tea.Model
2106221062
}
2106321063
}
2106421064

21065+
export class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTagTagInfo extends $tea.Model {
21066+
key?: string;
21067+
value?: string;
21068+
static names(): { [key: string]: string } {
21069+
return {
21070+
key: 'Key',
21071+
value: 'Value',
21072+
};
21073+
}
21074+
21075+
static types(): { [key: string]: any } {
21076+
return {
21077+
key: 'string',
21078+
value: 'string',
21079+
};
21080+
}
21081+
21082+
constructor(map?: { [key: string]: any }) {
21083+
super(map);
21084+
}
21085+
}
21086+
21087+
export class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTag extends $tea.Model {
21088+
tagInfo?: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTagTagInfo[];
21089+
static names(): { [key: string]: string } {
21090+
return {
21091+
tagInfo: 'TagInfo',
21092+
};
21093+
}
21094+
21095+
static types(): { [key: string]: any } {
21096+
return {
21097+
tagInfo: { 'type': 'array', 'itemType': DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTagTagInfo },
21098+
};
21099+
}
21100+
21101+
constructor(map?: { [key: string]: any }) {
21102+
super(map);
21103+
}
21104+
}
21105+
2106521106
export class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp extends $tea.Model {
2106621107
appDescription?: string;
2106721108
appId?: number;
@@ -21073,6 +21114,7 @@ export class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp exten
2107321114
operator?: string;
2107421115
stageAlias?: string;
2107521116
stageName?: string;
21117+
tag?: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTag;
2107621118
static names(): { [key: string]: string } {
2107721119
return {
2107821120
appDescription: 'AppDescription',
@@ -21085,6 +21127,7 @@ export class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp exten
2108521127
operator: 'Operator',
2108621128
stageAlias: 'StageAlias',
2108721129
stageName: 'StageName',
21130+
tag: 'Tag',
2108821131
};
2108921132
}
2109021133

@@ -21100,6 +21143,7 @@ export class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp exten
2110021143
operator: 'string',
2110121144
stageAlias: 'string',
2110221145
stageName: 'string',
21146+
tag: DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedAppTag,
2110321147
};
2110421148
}
2110521149

@@ -27666,7 +27710,7 @@ export default class Client extends OpenApi {
2766627710
}
2766727711

2766827712
/**
27669-
* @summary 创建网关实例
27713+
* @summary Creates an API Gateway instance.
2767027714
*
2767127715
* @param request CreateInstanceRequest
2767227716
* @param runtime runtime options for this request RuntimeOptions
@@ -27749,7 +27793,7 @@ export default class Client extends OpenApi {
2774927793
}
2775027794

2775127795
/**
27752-
* @summary 创建网关实例
27796+
* @summary Creates an API Gateway instance.
2775327797
*
2775427798
* @param request CreateInstanceRequest
2775527799
* @return CreateInstanceResponse
@@ -30812,6 +30856,8 @@ export default class Client extends OpenApi {
3081230856
}
3081330857

3081430858
/**
30859+
* @summary Queries the APIs with which an application is associated.
30860+
*
3081530861
* @param request DescribeApisByAppRequest
3081630862
* @param runtime runtime options for this request RuntimeOptions
3081730863
* @return DescribeApisByAppResponse
@@ -30873,6 +30919,8 @@ export default class Client extends OpenApi {
3087330919
}
3087430920

3087530921
/**
30922+
* @summary Queries the APIs with which an application is associated.
30923+
*
3087630924
* @param request DescribeApisByAppRequest
3087730925
* @return DescribeApisByAppResponse
3087830926
*/
@@ -32476,6 +32524,8 @@ export default class Client extends OpenApi {
3247632524
}
3247732525

3247832526
/**
32527+
* @summary Queries the historical versions of an API.
32528+
*
3247932529
* @param request DescribeHistoryApisRequest
3248032530
* @param runtime runtime options for this request RuntimeOptions
3248132531
* @return DescribeHistoryApisResponse
@@ -32529,6 +32579,8 @@ export default class Client extends OpenApi {
3252932579
}
3253032580

3253132581
/**
32582+
* @summary Queries the historical versions of an API.
32583+
*
3253232584
* @param request DescribeHistoryApisRequest
3253332585
* @return DescribeHistoryApisResponse
3253432586
*/
@@ -33558,7 +33610,7 @@ export default class Client extends OpenApi {
3355833610
}
3355933611

3356033612
/**
33561-
* @summary 根据查询查询绑定的API列表
33613+
* @summary Queries the APIs to which a specified plug-in is bound.
3356233614
*
3356333615
* @param request DescribePluginApisRequest
3356433616
* @param runtime runtime options for this request RuntimeOptions
@@ -33625,7 +33677,7 @@ export default class Client extends OpenApi {
3362533677
}
3362633678

3362733679
/**
33628-
* @summary 根据查询查询绑定的API列表
33680+
* @summary Queries the APIs to which a specified plug-in is bound.
3362933681
*
3363033682
* @param request DescribePluginApisRequest
3363133683
* @return DescribePluginApisResponse
@@ -38441,9 +38493,6 @@ export default class Client extends OpenApi {
3844138493
/**
3844238494
* @summary Binds a signature key to APIs.
3844338495
*
38444-
* @description * This API is intended for API providers.
38445-
* * This operation allows you to bind a signature key to an API. You can bind signature keys for up to 100 APIs at a time.
38446-
*
3844738496
* @param request SetSignatureApisRequest
3844838497
* @param runtime runtime options for this request RuntimeOptions
3844938498
* @return SetSignatureApisResponse
@@ -38491,9 +38540,6 @@ export default class Client extends OpenApi {
3849138540
/**
3849238541
* @summary Binds a signature key to APIs.
3849338542
*
38494-
* @description * This API is intended for API providers.
38495-
* * This operation allows you to bind a signature key to an API. You can bind signature keys for up to 100 APIs at a time.
38496-
*
3849738543
* @param request SetSignatureApisRequest
3849838544
* @return SetSignatureApisResponse
3849938545
*/

0 commit comments

Comments
 (0)