@alicloud/sas20181203 2.23.0 → 2.23.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 +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
|
@@ -15762,6 +15762,7 @@ export declare class ExportVulResponse extends $tea.Model {
|
|
|
15762
15762
|
export declare class ExportWarningRequest extends $tea.Model {
|
|
15763
15763
|
dealed?: string;
|
|
15764
15764
|
exportType?: string;
|
|
15765
|
+
groupId?: number;
|
|
15765
15766
|
isCleartextPwd?: number;
|
|
15766
15767
|
isSummaryExport?: number;
|
|
15767
15768
|
lang?: string;
|
package/dist/client.js
CHANGED
|
@@ -21909,6 +21909,7 @@ class ExportWarningRequest extends $tea.Model {
|
|
|
21909
21909
|
return {
|
|
21910
21910
|
dealed: 'Dealed',
|
|
21911
21911
|
exportType: 'ExportType',
|
|
21912
|
+
groupId: 'GroupId',
|
|
21912
21913
|
isCleartextPwd: 'IsCleartextPwd',
|
|
21913
21914
|
isSummaryExport: 'IsSummaryExport',
|
|
21914
21915
|
lang: 'Lang',
|
|
@@ -21928,6 +21929,7 @@ class ExportWarningRequest extends $tea.Model {
|
|
|
21928
21929
|
return {
|
|
21929
21930
|
dealed: 'string',
|
|
21930
21931
|
exportType: 'string',
|
|
21932
|
+
groupId: 'number',
|
|
21931
21933
|
isCleartextPwd: 'number',
|
|
21932
21934
|
isSummaryExport: 'number',
|
|
21933
21935
|
lang: 'string',
|
|
@@ -74337,6 +74339,9 @@ class Client extends openapi_client_1.default {
|
|
|
74337
74339
|
if (!tea_util_1.default.isUnset(request.exportType)) {
|
|
74338
74340
|
query["ExportType"] = request.exportType;
|
|
74339
74341
|
}
|
|
74342
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
74343
|
+
query["GroupId"] = request.groupId;
|
|
74344
|
+
}
|
|
74340
74345
|
if (!tea_util_1.default.isUnset(request.isCleartextPwd)) {
|
|
74341
74346
|
query["IsCleartextPwd"] = request.isCleartextPwd;
|
|
74342
74347
|
}
|