@alicloud/eiam20211201 2.17.2 → 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 +17 -2
- package/dist/client.js.map +1 -1
- package/dist/models/GenerateOauthTokenRequest.d.ts +4 -0
- package/dist/models/GenerateOauthTokenRequest.js +8 -0
- package/dist/models/GenerateOauthTokenRequest.js.map +1 -1
- package/dist/models/GenerateOauthTokenResponseBody.d.ts +2 -1
- package/dist/models/GenerateOauthTokenResponseBody.js +2 -0
- package/dist/models/GenerateOauthTokenResponseBody.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 +22 -2
- package/src/models/GenerateOauthTokenRequest.ts +12 -0
- package/src/models/GenerateOauthTokenResponseBody.ts +4 -1
- 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
|
@@ -6474,12 +6474,24 @@ class Client extends openapi_core_1.default {
|
|
|
6474
6474
|
if (!$dara.isNull(request.audience)) {
|
|
6475
6475
|
query["Audience"] = request.audience;
|
|
6476
6476
|
}
|
|
6477
|
+
if (!$dara.isNull(request.grantType)) {
|
|
6478
|
+
query["GrantType"] = request.grantType;
|
|
6479
|
+
}
|
|
6477
6480
|
if (!$dara.isNull(request.instanceId)) {
|
|
6478
6481
|
query["InstanceId"] = request.instanceId;
|
|
6479
6482
|
}
|
|
6483
|
+
if (!$dara.isNull(request.requestedTokenType)) {
|
|
6484
|
+
query["RequestedTokenType"] = request.requestedTokenType;
|
|
6485
|
+
}
|
|
6480
6486
|
if (!$dara.isNull(request.scopeValues)) {
|
|
6481
6487
|
query["ScopeValues"] = request.scopeValues;
|
|
6482
6488
|
}
|
|
6489
|
+
if (!$dara.isNull(request.subjectToken)) {
|
|
6490
|
+
query["SubjectToken"] = request.subjectToken;
|
|
6491
|
+
}
|
|
6492
|
+
if (!$dara.isNull(request.subjectTokenType)) {
|
|
6493
|
+
query["SubjectTokenType"] = request.subjectTokenType;
|
|
6494
|
+
}
|
|
6483
6495
|
let req = new openapi_core_2.$OpenApiUtil.OpenApiRequest({
|
|
6484
6496
|
query: openapi_core_2.OpenApiUtil.query(query),
|
|
6485
6497
|
});
|
|
@@ -9210,7 +9222,7 @@ class Client extends openapi_core_1.default {
|
|
|
9210
9222
|
return await this.listApplicationTokensWithOptions(request, runtime);
|
|
9211
9223
|
}
|
|
9212
9224
|
/**
|
|
9213
|
-
*
|
|
9225
|
+
* Queries information about one or more EIAM applications by using paged query. Paging is supported.
|
|
9214
9226
|
*
|
|
9215
9227
|
* @param request - ListApplicationsRequest
|
|
9216
9228
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9231,6 +9243,9 @@ class Client extends openapi_core_1.default {
|
|
|
9231
9243
|
if (!$dara.isNull(request.applicationName)) {
|
|
9232
9244
|
query["ApplicationName"] = request.applicationName;
|
|
9233
9245
|
}
|
|
9246
|
+
if (!$dara.isNull(request.applicationTemplateId)) {
|
|
9247
|
+
query["ApplicationTemplateId"] = request.applicationTemplateId;
|
|
9248
|
+
}
|
|
9234
9249
|
if (!$dara.isNull(request.authorizationType)) {
|
|
9235
9250
|
query["AuthorizationType"] = request.authorizationType;
|
|
9236
9251
|
}
|
|
@@ -9281,7 +9296,7 @@ class Client extends openapi_core_1.default {
|
|
|
9281
9296
|
return $dara.cast(await this.callApi(params, req, runtime), new $_model.ListApplicationsResponse({}));
|
|
9282
9297
|
}
|
|
9283
9298
|
/**
|
|
9284
|
-
*
|
|
9299
|
+
* Queries information about one or more EIAM applications by using paged query. Paging is supported.
|
|
9285
9300
|
*
|
|
9286
9301
|
* @param request - ListApplicationsRequest
|
|
9287
9302
|
* @returns ListApplicationsResponse
|