@alicloud/sas20181203 2.25.2 → 2.25.3
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 +1 -0
- package/dist/client.js +5 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -0
package/dist/client.d.ts
CHANGED
|
@@ -14506,6 +14506,7 @@ export declare class DescribeVulListRequest extends $tea.Model {
|
|
|
14506
14506
|
currentPage?: number;
|
|
14507
14507
|
dealed?: string;
|
|
14508
14508
|
groupId?: string;
|
|
14509
|
+
ids?: string;
|
|
14509
14510
|
lang?: string;
|
|
14510
14511
|
name?: string;
|
|
14511
14512
|
necessity?: string;
|
package/dist/client.js
CHANGED
|
@@ -20214,6 +20214,7 @@ class DescribeVulListRequest extends $tea.Model {
|
|
|
20214
20214
|
currentPage: 'CurrentPage',
|
|
20215
20215
|
dealed: 'Dealed',
|
|
20216
20216
|
groupId: 'GroupId',
|
|
20217
|
+
ids: 'Ids',
|
|
20217
20218
|
lang: 'Lang',
|
|
20218
20219
|
name: 'Name',
|
|
20219
20220
|
necessity: 'Necessity',
|
|
@@ -20235,6 +20236,7 @@ class DescribeVulListRequest extends $tea.Model {
|
|
|
20235
20236
|
currentPage: 'number',
|
|
20236
20237
|
dealed: 'string',
|
|
20237
20238
|
groupId: 'string',
|
|
20239
|
+
ids: 'string',
|
|
20238
20240
|
lang: 'string',
|
|
20239
20241
|
name: 'string',
|
|
20240
20242
|
necessity: 'string',
|
|
@@ -73522,6 +73524,9 @@ class Client extends openapi_client_1.default {
|
|
|
73522
73524
|
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
73523
73525
|
query["GroupId"] = request.groupId;
|
|
73524
73526
|
}
|
|
73527
|
+
if (!tea_util_1.default.isUnset(request.ids)) {
|
|
73528
|
+
query["Ids"] = request.ids;
|
|
73529
|
+
}
|
|
73525
73530
|
if (!tea_util_1.default.isUnset(request.lang)) {
|
|
73526
73531
|
query["Lang"] = request.lang;
|
|
73527
73532
|
}
|