@alicloud/eiam20211201 2.17.3 → 2.17.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +2 -2
- package/dist/client.js +5 -2
- package/dist/client.js.map +1 -1
- package/dist/models/ListApplicationsRequest.d.ts +1 -0
- package/dist/models/ListApplicationsRequest.js +2 -0
- package/dist/models/ListApplicationsRequest.js.map +1 -1
- package/dist/models/ListApplicationsResponseBody.d.ts +2 -2
- package/package.json +2 -2
- package/src/client.ts +6 -2
- package/src/models/ListApplicationsRequest.ts +3 -0
- package/src/models/ListApplicationsResponseBody.ts +2 -2
package/dist/client.d.ts
CHANGED
|
@@ -3096,7 +3096,7 @@ export default class Client extends OpenApi {
|
|
|
3096
3096
|
*/
|
|
3097
3097
|
listApplicationTokens(request: $_model.ListApplicationTokensRequest): Promise<$_model.ListApplicationTokensResponse>;
|
|
3098
3098
|
/**
|
|
3099
|
-
*
|
|
3099
|
+
* Queries information about one or more EIAM applications by using paged query. Paging is supported.
|
|
3100
3100
|
*
|
|
3101
3101
|
* @param request - ListApplicationsRequest
|
|
3102
3102
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -3104,7 +3104,7 @@ export default class Client extends OpenApi {
|
|
|
3104
3104
|
*/
|
|
3105
3105
|
listApplicationsWithOptions(request: $_model.ListApplicationsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.ListApplicationsResponse>;
|
|
3106
3106
|
/**
|
|
3107
|
-
*
|
|
3107
|
+
* Queries information about one or more EIAM applications by using paged query. Paging is supported.
|
|
3108
3108
|
*
|
|
3109
3109
|
* @param request - ListApplicationsRequest
|
|
3110
3110
|
* @returns ListApplicationsResponse
|
package/dist/client.js
CHANGED
|
@@ -9222,7 +9222,7 @@ class Client extends openapi_core_1.default {
|
|
|
9222
9222
|
return await this.listApplicationTokensWithOptions(request, runtime);
|
|
9223
9223
|
}
|
|
9224
9224
|
/**
|
|
9225
|
-
*
|
|
9225
|
+
* Queries information about one or more EIAM applications by using paged query. Paging is supported.
|
|
9226
9226
|
*
|
|
9227
9227
|
* @param request - ListApplicationsRequest
|
|
9228
9228
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9243,6 +9243,9 @@ class Client extends openapi_core_1.default {
|
|
|
9243
9243
|
if (!$dara.isNull(request.applicationName)) {
|
|
9244
9244
|
query["ApplicationName"] = request.applicationName;
|
|
9245
9245
|
}
|
|
9246
|
+
if (!$dara.isNull(request.applicationTemplateId)) {
|
|
9247
|
+
query["ApplicationTemplateId"] = request.applicationTemplateId;
|
|
9248
|
+
}
|
|
9246
9249
|
if (!$dara.isNull(request.authorizationType)) {
|
|
9247
9250
|
query["AuthorizationType"] = request.authorizationType;
|
|
9248
9251
|
}
|
|
@@ -9293,7 +9296,7 @@ class Client extends openapi_core_1.default {
|
|
|
9293
9296
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListApplicationsResponse({}));
|
|
9294
9297
|
}
|
|
9295
9298
|
/**
|
|
9296
|
-
*
|
|
9299
|
+
* Queries information about one or more EIAM applications by using paged query. Paging is supported.
|
|
9297
9300
|
*
|
|
9298
9301
|
* @param request - ListApplicationsRequest
|
|
9299
9302
|
* @returns ListApplicationsResponse
|