@alicloud/sas20181203 2.5.0 → 2.5.1
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
|
@@ -14314,6 +14314,7 @@ export declare class ExportSuspEventsResponse extends $tea.Model {
|
|
|
14314
14314
|
export declare class ExportVulRequest extends $tea.Model {
|
|
14315
14315
|
aliasName?: string;
|
|
14316
14316
|
attachTypes?: string;
|
|
14317
|
+
cveId?: string;
|
|
14317
14318
|
dealed?: string;
|
|
14318
14319
|
groupId?: string;
|
|
14319
14320
|
lang?: string;
|
package/dist/client.js
CHANGED
|
@@ -19881,6 +19881,7 @@ class ExportVulRequest extends $tea.Model {
|
|
|
19881
19881
|
return {
|
|
19882
19882
|
aliasName: 'AliasName',
|
|
19883
19883
|
attachTypes: 'AttachTypes',
|
|
19884
|
+
cveId: 'CveId',
|
|
19884
19885
|
dealed: 'Dealed',
|
|
19885
19886
|
groupId: 'GroupId',
|
|
19886
19887
|
lang: 'Lang',
|
|
@@ -19895,6 +19896,7 @@ class ExportVulRequest extends $tea.Model {
|
|
|
19895
19896
|
return {
|
|
19896
19897
|
aliasName: 'string',
|
|
19897
19898
|
attachTypes: 'string',
|
|
19899
|
+
cveId: 'string',
|
|
19898
19900
|
dealed: 'string',
|
|
19899
19901
|
groupId: 'string',
|
|
19900
19902
|
lang: 'string',
|
|
@@ -62024,6 +62026,9 @@ class Client extends openapi_client_1.default {
|
|
|
62024
62026
|
if (!tea_util_1.default.isUnset(request.attachTypes)) {
|
|
62025
62027
|
query["AttachTypes"] = request.attachTypes;
|
|
62026
62028
|
}
|
|
62029
|
+
if (!tea_util_1.default.isUnset(request.cveId)) {
|
|
62030
|
+
query["CveId"] = request.cveId;
|
|
62031
|
+
}
|
|
62027
62032
|
if (!tea_util_1.default.isUnset(request.dealed)) {
|
|
62028
62033
|
query["Dealed"] = request.dealed;
|
|
62029
62034
|
}
|