@alicloud/sas20181203 1.1.8 → 1.1.9
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
|
@@ -2438,6 +2438,7 @@ export declare class DescribeGroupedTagsResponse extends $tea.Model {
|
|
|
2438
2438
|
}
|
|
2439
2439
|
export declare class DescribeGroupedVulRequest extends $tea.Model {
|
|
2440
2440
|
aliasName?: string;
|
|
2441
|
+
attachTypes?: string;
|
|
2441
2442
|
currentPage?: number;
|
|
2442
2443
|
dealed?: string;
|
|
2443
2444
|
groupId?: string;
|
package/dist/client.js
CHANGED
|
@@ -3338,6 +3338,7 @@ class DescribeGroupedVulRequest extends $tea.Model {
|
|
|
3338
3338
|
static names() {
|
|
3339
3339
|
return {
|
|
3340
3340
|
aliasName: 'AliasName',
|
|
3341
|
+
attachTypes: 'AttachTypes',
|
|
3341
3342
|
currentPage: 'CurrentPage',
|
|
3342
3343
|
dealed: 'Dealed',
|
|
3343
3344
|
groupId: 'GroupId',
|
|
@@ -3352,6 +3353,7 @@ class DescribeGroupedVulRequest extends $tea.Model {
|
|
|
3352
3353
|
static types() {
|
|
3353
3354
|
return {
|
|
3354
3355
|
aliasName: 'string',
|
|
3356
|
+
attachTypes: 'string',
|
|
3355
3357
|
currentPage: 'number',
|
|
3356
3358
|
dealed: 'string',
|
|
3357
3359
|
groupId: 'string',
|
|
@@ -17505,6 +17507,9 @@ class Client extends openapi_client_1.default {
|
|
|
17505
17507
|
if (!tea_util_1.default.isUnset(request.aliasName)) {
|
|
17506
17508
|
query["AliasName"] = request.aliasName;
|
|
17507
17509
|
}
|
|
17510
|
+
if (!tea_util_1.default.isUnset(request.attachTypes)) {
|
|
17511
|
+
query["AttachTypes"] = request.attachTypes;
|
|
17512
|
+
}
|
|
17508
17513
|
if (!tea_util_1.default.isUnset(request.currentPage)) {
|
|
17509
17514
|
query["CurrentPage"] = request.currentPage;
|
|
17510
17515
|
}
|