@alicloud/eiam20211201 2.15.3 → 2.15.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.js +15 -0
- package/dist/client.js.map +1 -1
- package/dist/models/CreateApplicationRequest.d.ts +30 -0
- package/dist/models/CreateApplicationRequest.js +59 -1
- package/dist/models/CreateApplicationRequest.js.map +1 -1
- package/dist/models/GetApplicationResponseBody.d.ts +30 -0
- package/dist/models/GetApplicationResponseBody.js +59 -1
- package/dist/models/GetApplicationResponseBody.js.map +1 -1
- package/dist/models/ListApplicationsRequest.d.ts +15 -0
- package/dist/models/ListApplicationsRequest.js +27 -1
- package/dist/models/ListApplicationsRequest.js.map +1 -1
- package/dist/models/UpdateApplicationInfoRequest.d.ts +31 -2
- package/dist/models/UpdateApplicationInfoRequest.js +61 -1
- package/dist/models/UpdateApplicationInfoRequest.js.map +1 -1
- package/dist/models/model.d.ts +7 -0
- package/dist/models/model.js +53 -39
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +20 -0
- package/src/models/CreateApplicationRequest.ts +70 -0
- package/src/models/GetApplicationResponseBody.ts +70 -0
- package/src/models/ListApplicationsRequest.ts +32 -0
- package/src/models/UpdateApplicationInfoRequest.ts +73 -2
- package/src/models/model.ts +7 -0
package/dist/client.js
CHANGED
|
@@ -1001,12 +1001,18 @@ class Client extends openapi_core_1.default {
|
|
|
1001
1001
|
if (!$dara.isNull(request.applicationName)) {
|
|
1002
1002
|
query["ApplicationName"] = request.applicationName;
|
|
1003
1003
|
}
|
|
1004
|
+
if (!$dara.isNull(request.applicationOwner)) {
|
|
1005
|
+
query["ApplicationOwner"] = request.applicationOwner;
|
|
1006
|
+
}
|
|
1004
1007
|
if (!$dara.isNull(request.applicationSourceType)) {
|
|
1005
1008
|
query["ApplicationSourceType"] = request.applicationSourceType;
|
|
1006
1009
|
}
|
|
1007
1010
|
if (!$dara.isNull(request.applicationTemplateId)) {
|
|
1008
1011
|
query["ApplicationTemplateId"] = request.applicationTemplateId;
|
|
1009
1012
|
}
|
|
1013
|
+
if (!$dara.isNull(request.customFields)) {
|
|
1014
|
+
query["CustomFields"] = request.customFields;
|
|
1015
|
+
}
|
|
1010
1016
|
if (!$dara.isNull(request.description)) {
|
|
1011
1017
|
query["Description"] = request.description;
|
|
1012
1018
|
}
|
|
@@ -9106,6 +9112,9 @@ class Client extends openapi_core_1.default {
|
|
|
9106
9112
|
if (!$dara.isNull(request.authorizationType)) {
|
|
9107
9113
|
query["AuthorizationType"] = request.authorizationType;
|
|
9108
9114
|
}
|
|
9115
|
+
if (!$dara.isNull(request.customFields)) {
|
|
9116
|
+
query["CustomFields"] = request.customFields;
|
|
9117
|
+
}
|
|
9109
9118
|
if (!$dara.isNull(request.instanceId)) {
|
|
9110
9119
|
query["InstanceId"] = request.instanceId;
|
|
9111
9120
|
}
|
|
@@ -14347,12 +14356,18 @@ class Client extends openapi_core_1.default {
|
|
|
14347
14356
|
if (!$dara.isNull(request.applicationName)) {
|
|
14348
14357
|
query["ApplicationName"] = request.applicationName;
|
|
14349
14358
|
}
|
|
14359
|
+
if (!$dara.isNull(request.applicationOwner)) {
|
|
14360
|
+
query["ApplicationOwner"] = request.applicationOwner;
|
|
14361
|
+
}
|
|
14350
14362
|
if (!$dara.isNull(request.applicationVisibility)) {
|
|
14351
14363
|
query["ApplicationVisibility"] = request.applicationVisibility;
|
|
14352
14364
|
}
|
|
14353
14365
|
if (!$dara.isNull(request.clientToken)) {
|
|
14354
14366
|
query["ClientToken"] = request.clientToken;
|
|
14355
14367
|
}
|
|
14368
|
+
if (!$dara.isNull(request.customFields)) {
|
|
14369
|
+
query["CustomFields"] = request.customFields;
|
|
14370
|
+
}
|
|
14356
14371
|
if (!$dara.isNull(request.instanceId)) {
|
|
14357
14372
|
query["InstanceId"] = request.instanceId;
|
|
14358
14373
|
}
|