@alicloud/sas20181203 2.7.1 → 2.7.2
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 -0
- package/dist/client.js +10 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +14 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -25208,6 +25208,8 @@ export class ExportVulRequest extends $tea.Model {
|
|
|
25208
25208
|
aliasName?: string;
|
|
25209
25209
|
attachTypes?: string;
|
|
25210
25210
|
containerName?: string;
|
|
25211
|
+
createTsEnd?: number;
|
|
25212
|
+
createTsStart?: number;
|
|
25211
25213
|
cveId?: string;
|
|
25212
25214
|
dealed?: string;
|
|
25213
25215
|
groupId?: string;
|
|
@@ -25224,6 +25226,8 @@ export class ExportVulRequest extends $tea.Model {
|
|
|
25224
25226
|
aliasName: 'AliasName',
|
|
25225
25227
|
attachTypes: 'AttachTypes',
|
|
25226
25228
|
containerName: 'ContainerName',
|
|
25229
|
+
createTsEnd: 'CreateTsEnd',
|
|
25230
|
+
createTsStart: 'CreateTsStart',
|
|
25227
25231
|
cveId: 'CveId',
|
|
25228
25232
|
dealed: 'Dealed',
|
|
25229
25233
|
groupId: 'GroupId',
|
|
@@ -25243,6 +25247,8 @@ export class ExportVulRequest extends $tea.Model {
|
|
|
25243
25247
|
aliasName: 'string',
|
|
25244
25248
|
attachTypes: 'string',
|
|
25245
25249
|
containerName: 'string',
|
|
25250
|
+
createTsEnd: 'number',
|
|
25251
|
+
createTsStart: 'number',
|
|
25246
25252
|
cveId: 'string',
|
|
25247
25253
|
dealed: 'string',
|
|
25248
25254
|
groupId: 'string',
|
|
@@ -78362,6 +78368,14 @@ export default class Client extends OpenApi {
|
|
|
78362
78368
|
query["ContainerName"] = request.containerName;
|
|
78363
78369
|
}
|
|
78364
78370
|
|
|
78371
|
+
if (!Util.isUnset(request.createTsEnd)) {
|
|
78372
|
+
query["CreateTsEnd"] = request.createTsEnd;
|
|
78373
|
+
}
|
|
78374
|
+
|
|
78375
|
+
if (!Util.isUnset(request.createTsStart)) {
|
|
78376
|
+
query["CreateTsStart"] = request.createTsStart;
|
|
78377
|
+
}
|
|
78378
|
+
|
|
78365
78379
|
if (!Util.isUnset(request.cveId)) {
|
|
78366
78380
|
query["CveId"] = request.cveId;
|
|
78367
78381
|
}
|