@alicloud/config20200907 3.0.11 → 3.0.13

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/src/client.ts CHANGED
@@ -519,7 +519,25 @@ export class CreateAggregateCompliancePackRequestExcludeTagsScope extends $dara.
519
519
  }
520
520
 
521
521
  export class CreateAggregateCompliancePackRequestTag extends $dara.Model {
522
+ /**
523
+ * @remarks
524
+ * The key of the tag that is added to the resource.
525
+ *
526
+ * You can add up to 20 tag keys to a resource.
527
+ *
528
+ * @example
529
+ * key-1
530
+ */
522
531
  key?: string;
532
+ /**
533
+ * @remarks
534
+ * The value of the tag that is added to the resource.
535
+ *
536
+ * You can add up to 20 tag values to a resource.
537
+ *
538
+ * @example
539
+ * value-1
540
+ */
523
541
  value?: string;
524
542
  static names(): { [key: string]: string } {
525
543
  return {
@@ -705,7 +723,29 @@ export class CreateAggregateConfigRuleRequestExcludeTagsScope extends $dara.Mode
705
723
  }
706
724
 
707
725
  export class CreateAggregateConfigRuleRequestTag extends $dara.Model {
726
+ /**
727
+ * @remarks
728
+ * The tag key.
729
+ *
730
+ * The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
731
+ *
732
+ * You can specify at most 20 tag keys.
733
+ *
734
+ * @example
735
+ * key-1
736
+ */
708
737
  key?: string;
738
+ /**
739
+ * @remarks
740
+ * The tag values.
741
+ *
742
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
743
+ *
744
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
745
+ *
746
+ * @example
747
+ * value-1
748
+ */
709
749
  value?: string;
710
750
  static names(): { [key: string]: string } {
711
751
  return {
@@ -901,7 +941,27 @@ export class CreateAggregatorRequestAggregatorAccounts extends $dara.Model {
901
941
  }
902
942
 
903
943
  export class CreateAggregatorRequestTag extends $dara.Model {
944
+ /**
945
+ * @remarks
946
+ * The tag key of the resource. You can specify up to 20 tag keys.
947
+ *
948
+ * The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
949
+ *
950
+ * @example
951
+ * key-1
952
+ */
904
953
  key?: string;
954
+ /**
955
+ * @remarks
956
+ * The tag values.
957
+ *
958
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
959
+ *
960
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
961
+ *
962
+ * @example
963
+ * value-1
964
+ */
905
965
  value?: string;
906
966
  static names(): { [key: string]: string } {
907
967
  return {
@@ -1099,192 +1159,6 @@ export class CreateCompliancePackRequestExcludeTagsScope extends $dara.Model {
1099
1159
  }
1100
1160
 
1101
1161
  export class CreateCompliancePackRequestTag extends $dara.Model {
1102
- key?: string;
1103
- value?: string;
1104
- static names(): { [key: string]: string } {
1105
- return {
1106
- key: 'Key',
1107
- value: 'Value',
1108
- };
1109
- }
1110
-
1111
- static types(): { [key: string]: any } {
1112
- return {
1113
- key: 'string',
1114
- value: 'string',
1115
- };
1116
- }
1117
-
1118
- validate() {
1119
- super.validate();
1120
- }
1121
-
1122
- constructor(map?: { [key: string]: any }) {
1123
- super(map);
1124
- }
1125
- }
1126
-
1127
- export class CreateCompliancePackRequestTagsScope extends $dara.Model {
1128
- /**
1129
- * @remarks
1130
- * Tagkey
1131
- *
1132
- * @example
1133
- * key-1
1134
- */
1135
- tagKey?: string;
1136
- /**
1137
- * @remarks
1138
- * TagValue
1139
- *
1140
- * @example
1141
- * value-1
1142
- */
1143
- tagValue?: string;
1144
- static names(): { [key: string]: string } {
1145
- return {
1146
- tagKey: 'TagKey',
1147
- tagValue: 'TagValue',
1148
- };
1149
- }
1150
-
1151
- static types(): { [key: string]: any } {
1152
- return {
1153
- tagKey: 'string',
1154
- tagValue: 'string',
1155
- };
1156
- }
1157
-
1158
- validate() {
1159
- super.validate();
1160
- }
1161
-
1162
- constructor(map?: { [key: string]: any }) {
1163
- super(map);
1164
- }
1165
- }
1166
-
1167
- export class CreateCompliancePackShrinkRequestExcludeTagsScope extends $dara.Model {
1168
- /**
1169
- * @remarks
1170
- * TagKey
1171
- *
1172
- * @example
1173
- * key-2
1174
- */
1175
- tagKey?: string;
1176
- /**
1177
- * @remarks
1178
- * TagValue
1179
- *
1180
- * @example
1181
- * value-2
1182
- */
1183
- tagValue?: string;
1184
- static names(): { [key: string]: string } {
1185
- return {
1186
- tagKey: 'TagKey',
1187
- tagValue: 'TagValue',
1188
- };
1189
- }
1190
-
1191
- static types(): { [key: string]: any } {
1192
- return {
1193
- tagKey: 'string',
1194
- tagValue: 'string',
1195
- };
1196
- }
1197
-
1198
- validate() {
1199
- super.validate();
1200
- }
1201
-
1202
- constructor(map?: { [key: string]: any }) {
1203
- super(map);
1204
- }
1205
- }
1206
-
1207
- export class CreateCompliancePackShrinkRequestTagsScope extends $dara.Model {
1208
- /**
1209
- * @remarks
1210
- * Tagkey
1211
- *
1212
- * @example
1213
- * key-1
1214
- */
1215
- tagKey?: string;
1216
- /**
1217
- * @remarks
1218
- * TagValue
1219
- *
1220
- * @example
1221
- * value-1
1222
- */
1223
- tagValue?: string;
1224
- static names(): { [key: string]: string } {
1225
- return {
1226
- tagKey: 'TagKey',
1227
- tagValue: 'TagValue',
1228
- };
1229
- }
1230
-
1231
- static types(): { [key: string]: any } {
1232
- return {
1233
- tagKey: 'string',
1234
- tagValue: 'string',
1235
- };
1236
- }
1237
-
1238
- validate() {
1239
- super.validate();
1240
- }
1241
-
1242
- constructor(map?: { [key: string]: any }) {
1243
- super(map);
1244
- }
1245
- }
1246
-
1247
- export class CreateConfigRuleRequestExcludeTagsScope extends $dara.Model {
1248
- /**
1249
- * @remarks
1250
- * TagKey
1251
- *
1252
- * @example
1253
- * key-2
1254
- */
1255
- tagKey?: string;
1256
- /**
1257
- * @remarks
1258
- * TagValue
1259
- *
1260
- * @example
1261
- * value-2
1262
- */
1263
- tagValue?: string;
1264
- static names(): { [key: string]: string } {
1265
- return {
1266
- tagKey: 'TagKey',
1267
- tagValue: 'TagValue',
1268
- };
1269
- }
1270
-
1271
- static types(): { [key: string]: any } {
1272
- return {
1273
- tagKey: 'string',
1274
- tagValue: 'string',
1275
- };
1276
- }
1277
-
1278
- validate() {
1279
- super.validate();
1280
- }
1281
-
1282
- constructor(map?: { [key: string]: any }) {
1283
- super(map);
1284
- }
1285
- }
1286
-
1287
- export class CreateConfigRuleRequestTag extends $dara.Model {
1288
1162
  /**
1289
1163
  * @remarks
1290
1164
  * The tag keys.
@@ -1299,9 +1173,11 @@ export class CreateConfigRuleRequestTag extends $dara.Model {
1299
1173
  key?: string;
1300
1174
  /**
1301
1175
  * @remarks
1302
- * The value of the tag. You can specify up to 20 tag values. The tag value can be an empty string.
1176
+ * The tag values.
1303
1177
  *
1304
- * The tag value can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. The tag value cannot contain `http://` or `https://`.
1178
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
1179
+ *
1180
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
1305
1181
  *
1306
1182
  * @example
1307
1183
  * value-1
@@ -1330,10 +1206,10 @@ export class CreateConfigRuleRequestTag extends $dara.Model {
1330
1206
  }
1331
1207
  }
1332
1208
 
1333
- export class CreateConfigRuleRequestTagsScope extends $dara.Model {
1209
+ export class CreateCompliancePackRequestTagsScope extends $dara.Model {
1334
1210
  /**
1335
1211
  * @remarks
1336
- * TagKey
1212
+ * Tagkey
1337
1213
  *
1338
1214
  * @example
1339
1215
  * key-1
@@ -1370,7 +1246,213 @@ export class CreateConfigRuleRequestTagsScope extends $dara.Model {
1370
1246
  }
1371
1247
  }
1372
1248
 
1373
- export class CreateConfigRuleShrinkRequestExcludeTagsScope extends $dara.Model {
1249
+ export class CreateCompliancePackShrinkRequestExcludeTagsScope extends $dara.Model {
1250
+ /**
1251
+ * @remarks
1252
+ * TagKey
1253
+ *
1254
+ * @example
1255
+ * key-2
1256
+ */
1257
+ tagKey?: string;
1258
+ /**
1259
+ * @remarks
1260
+ * TagValue
1261
+ *
1262
+ * @example
1263
+ * value-2
1264
+ */
1265
+ tagValue?: string;
1266
+ static names(): { [key: string]: string } {
1267
+ return {
1268
+ tagKey: 'TagKey',
1269
+ tagValue: 'TagValue',
1270
+ };
1271
+ }
1272
+
1273
+ static types(): { [key: string]: any } {
1274
+ return {
1275
+ tagKey: 'string',
1276
+ tagValue: 'string',
1277
+ };
1278
+ }
1279
+
1280
+ validate() {
1281
+ super.validate();
1282
+ }
1283
+
1284
+ constructor(map?: { [key: string]: any }) {
1285
+ super(map);
1286
+ }
1287
+ }
1288
+
1289
+ export class CreateCompliancePackShrinkRequestTagsScope extends $dara.Model {
1290
+ /**
1291
+ * @remarks
1292
+ * Tagkey
1293
+ *
1294
+ * @example
1295
+ * key-1
1296
+ */
1297
+ tagKey?: string;
1298
+ /**
1299
+ * @remarks
1300
+ * TagValue
1301
+ *
1302
+ * @example
1303
+ * value-1
1304
+ */
1305
+ tagValue?: string;
1306
+ static names(): { [key: string]: string } {
1307
+ return {
1308
+ tagKey: 'TagKey',
1309
+ tagValue: 'TagValue',
1310
+ };
1311
+ }
1312
+
1313
+ static types(): { [key: string]: any } {
1314
+ return {
1315
+ tagKey: 'string',
1316
+ tagValue: 'string',
1317
+ };
1318
+ }
1319
+
1320
+ validate() {
1321
+ super.validate();
1322
+ }
1323
+
1324
+ constructor(map?: { [key: string]: any }) {
1325
+ super(map);
1326
+ }
1327
+ }
1328
+
1329
+ export class CreateConfigRuleRequestExcludeTagsScope extends $dara.Model {
1330
+ /**
1331
+ * @remarks
1332
+ * TagKey
1333
+ *
1334
+ * @example
1335
+ * key-2
1336
+ */
1337
+ tagKey?: string;
1338
+ /**
1339
+ * @remarks
1340
+ * TagValue
1341
+ *
1342
+ * @example
1343
+ * value-2
1344
+ */
1345
+ tagValue?: string;
1346
+ static names(): { [key: string]: string } {
1347
+ return {
1348
+ tagKey: 'TagKey',
1349
+ tagValue: 'TagValue',
1350
+ };
1351
+ }
1352
+
1353
+ static types(): { [key: string]: any } {
1354
+ return {
1355
+ tagKey: 'string',
1356
+ tagValue: 'string',
1357
+ };
1358
+ }
1359
+
1360
+ validate() {
1361
+ super.validate();
1362
+ }
1363
+
1364
+ constructor(map?: { [key: string]: any }) {
1365
+ super(map);
1366
+ }
1367
+ }
1368
+
1369
+ export class CreateConfigRuleRequestTag extends $dara.Model {
1370
+ /**
1371
+ * @remarks
1372
+ * The tag keys.
1373
+ *
1374
+ * The tag keys cannot be an empty string. The tag keys can be up to 64 characters in length. The tag keys cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
1375
+ *
1376
+ * You can specify at most 20 tag keys in each call.
1377
+ *
1378
+ * @example
1379
+ * key-1
1380
+ */
1381
+ key?: string;
1382
+ /**
1383
+ * @remarks
1384
+ * The value of the tag. You can specify up to 20 tag values. The tag value can be an empty string.
1385
+ *
1386
+ * The tag value can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. The tag value cannot contain `http://` or `https://`.
1387
+ *
1388
+ * @example
1389
+ * value-1
1390
+ */
1391
+ value?: string;
1392
+ static names(): { [key: string]: string } {
1393
+ return {
1394
+ key: 'Key',
1395
+ value: 'Value',
1396
+ };
1397
+ }
1398
+
1399
+ static types(): { [key: string]: any } {
1400
+ return {
1401
+ key: 'string',
1402
+ value: 'string',
1403
+ };
1404
+ }
1405
+
1406
+ validate() {
1407
+ super.validate();
1408
+ }
1409
+
1410
+ constructor(map?: { [key: string]: any }) {
1411
+ super(map);
1412
+ }
1413
+ }
1414
+
1415
+ export class CreateConfigRuleRequestTagsScope extends $dara.Model {
1416
+ /**
1417
+ * @remarks
1418
+ * TagKey
1419
+ *
1420
+ * @example
1421
+ * key-1
1422
+ */
1423
+ tagKey?: string;
1424
+ /**
1425
+ * @remarks
1426
+ * TagValue
1427
+ *
1428
+ * @example
1429
+ * value-1
1430
+ */
1431
+ tagValue?: string;
1432
+ static names(): { [key: string]: string } {
1433
+ return {
1434
+ tagKey: 'TagKey',
1435
+ tagValue: 'TagValue',
1436
+ };
1437
+ }
1438
+
1439
+ static types(): { [key: string]: any } {
1440
+ return {
1441
+ tagKey: 'string',
1442
+ tagValue: 'string',
1443
+ };
1444
+ }
1445
+
1446
+ validate() {
1447
+ super.validate();
1448
+ }
1449
+
1450
+ constructor(map?: { [key: string]: any }) {
1451
+ super(map);
1452
+ }
1453
+ }
1454
+
1455
+ export class CreateConfigRuleShrinkRequestExcludeTagsScope extends $dara.Model {
1374
1456
  /**
1375
1457
  * @remarks
1376
1458
  * TagKey
@@ -2925,7 +3007,27 @@ export class GetAggregateAdvancedSearchFileResponseBodyResourceSearch extends $d
2925
3007
  }
2926
3008
 
2927
3009
  export class GetAggregateCompliancePackRequestTag extends $dara.Model {
3010
+ /**
3011
+ * @remarks
3012
+ * The tag key of the resource. You can specify up to 20 tag keys.
3013
+ *
3014
+ * The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
3015
+ *
3016
+ * @example
3017
+ * key-1
3018
+ */
2928
3019
  key?: string;
3020
+ /**
3021
+ * @remarks
3022
+ * The tag values.
3023
+ *
3024
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
3025
+ *
3026
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
3027
+ *
3028
+ * @example
3029
+ * value-1
3030
+ */
2929
3031
  value?: string;
2930
3032
  static names(): { [key: string]: string } {
2931
3033
  return {
@@ -3298,7 +3400,21 @@ export class GetAggregateCompliancePackResponseBodyCompliancePackScope extends $
3298
3400
  }
3299
3401
 
3300
3402
  export class GetAggregateCompliancePackResponseBodyCompliancePackTags extends $dara.Model {
3403
+ /**
3404
+ * @remarks
3405
+ * The tag keys of the resource.
3406
+ *
3407
+ * @example
3408
+ * key-1
3409
+ */
3301
3410
  tagKey?: string;
3411
+ /**
3412
+ * @remarks
3413
+ * The tag values of the resource.
3414
+ *
3415
+ * @example
3416
+ * value-1
3417
+ */
3302
3418
  tagValue?: string;
3303
3419
  static names(): { [key: string]: string } {
3304
3420
  return {
@@ -3413,6 +3529,10 @@ export class GetAggregateCompliancePackResponseBodyCompliancePack extends $dara.
3413
3529
  * ACTIVE
3414
3530
  */
3415
3531
  status?: string;
3532
+ /**
3533
+ * @remarks
3534
+ * The tags.
3535
+ */
3416
3536
  tags?: GetAggregateCompliancePackResponseBodyCompliancePackTags[];
3417
3537
  /**
3418
3538
  * @remarks
@@ -4859,6 +4979,17 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.Model {
4859
4979
  * eip-8vbf3x310fn56ijfd****
4860
4980
  */
4861
4981
  resourceIdsScope?: string;
4982
+ /**
4983
+ * @remarks
4984
+ * The names of the resource to which the rule applies.
4985
+ *
4986
+ * @example
4987
+ * i-xxx
4988
+ *
4989
+ * **if can be null:**
4990
+ * true
4991
+ */
4992
+ resourceNameScope?: string;
4862
4993
  /**
4863
4994
  * @remarks
4864
4995
  * The type of the resource evaluated by the rule.
@@ -4886,10 +5017,15 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.Model {
4886
5017
  source?: GetAggregateConfigRuleResponseBodyConfigRuleSource;
4887
5018
  /**
4888
5019
  * @remarks
4889
- * The logical relationship among the tag keys if you specify multiple tag keys by using the `TagKeyScope` parameter. For example, if the `TagKeyScope` parameter is set to `ECS,OSS` and the TagKeyLogicScope parameter is set to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
5020
+ * When retrieving details of rules created using the parameter `TagsScope`, this field will not be returned.
5021
+ *
5022
+ * To retrieve rules created using the deprecated field `TagKeyScope` (not recommended): for example, when the parameter `TagKeyScope` has a value of ECS,OSS, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels ECS and OSS.
4890
5023
  *
4891
- * * AND: the logical relationship of AND
4892
- * * OR: the logical relationship of OR
5024
+ * Values:
5025
+ *
5026
+ * - AND: And.
5027
+ *
5028
+ * - OR: Or.
4893
5029
  *
4894
5030
  * @example
4895
5031
  * AND
@@ -4897,18 +5033,26 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.Model {
4897
5033
  tagKeyLogicScope?: string;
4898
5034
  /**
4899
5035
  * @remarks
5036
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
5037
+ *
4900
5038
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
4901
5039
  *
4902
5040
  * @example
4903
5041
  * RAM
5042
+ *
5043
+ * @deprecated
4904
5044
  */
4905
5045
  tagKeyScope?: string;
4906
5046
  /**
4907
5047
  * @remarks
5048
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
5049
+ *
4908
5050
  * The tag value used to filter resources. The rule applies only to the resources with the specified tag value.
4909
5051
  *
4910
5052
  * @example
4911
5053
  * MFA
5054
+ *
5055
+ * @deprecated
4912
5056
  */
4913
5057
  tagValueScope?: string;
4914
5058
  /**
@@ -4950,6 +5094,7 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.Model {
4950
5094
  regionIdsScope: 'RegionIdsScope',
4951
5095
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
4952
5096
  resourceIdsScope: 'ResourceIdsScope',
5097
+ resourceNameScope: 'ResourceNameScope',
4953
5098
  resourceTypesScope: 'ResourceTypesScope',
4954
5099
  riskLevel: 'RiskLevel',
4955
5100
  source: 'Source',
@@ -4990,6 +5135,7 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.Model {
4990
5135
  regionIdsScope: 'string',
4991
5136
  resourceGroupIdsScope: 'string',
4992
5137
  resourceIdsScope: 'string',
5138
+ resourceNameScope: 'string',
4993
5139
  resourceTypesScope: 'string',
4994
5140
  riskLevel: 'number',
4995
5141
  source: GetAggregateConfigRuleResponseBodyConfigRuleSource,
@@ -5243,8 +5389,8 @@ export class GetAggregateConfigRulesReportResponseBodyConfigRulesReport extends
5243
5389
  * @remarks
5244
5390
  * The status of the compliance evaluation report. Valid values:
5245
5391
  *
5246
- * * NONE: The compliance evaluation report was not generated.
5247
- * * CREATING: The compliance evaluation report was being generated.
5392
+ * * NONE: The compliance evaluation report is not generated.
5393
+ * * CREATING: The compliance evaluation report is being generated.
5248
5394
  * * COMPLETE: The compliance evaluation report was generated.
5249
5395
  *
5250
5396
  * @example
@@ -5253,7 +5399,7 @@ export class GetAggregateConfigRulesReportResponseBodyConfigRulesReport extends
5253
5399
  reportStatus?: string;
5254
5400
  /**
5255
5401
  * @remarks
5256
- * The URL that is used to download the compliance evaluation report.
5402
+ * The URL used to download the compliance evaluation report.
5257
5403
  */
5258
5404
  reportUrl?: string;
5259
5405
  static names(): { [key: string]: string } {
@@ -6374,7 +6520,29 @@ export class GetAggregateResourceInventoryResponseBodyResourceInventory extends
6374
6520
  }
6375
6521
 
6376
6522
  export class GetAggregatorRequestTag extends $dara.Model {
6523
+ /**
6524
+ * @remarks
6525
+ * The tag key.
6526
+ *
6527
+ * The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
6528
+ *
6529
+ * You can specify at most 20 tag keys.
6530
+ *
6531
+ * @example
6532
+ * key-1
6533
+ */
6377
6534
  key?: string;
6535
+ /**
6536
+ * @remarks
6537
+ * The tag values.
6538
+ *
6539
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
6540
+ *
6541
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
6542
+ *
6543
+ * @example
6544
+ * value-1
6545
+ */
6378
6546
  value?: string;
6379
6547
  static names(): { [key: string]: string } {
6380
6548
  return {
@@ -6468,7 +6636,21 @@ export class GetAggregatorResponseBodyAggregatorAggregatorAccounts extends $dara
6468
6636
  }
6469
6637
 
6470
6638
  export class GetAggregatorResponseBodyAggregatorTags extends $dara.Model {
6639
+ /**
6640
+ * @remarks
6641
+ * The tag key.
6642
+ *
6643
+ * @example
6644
+ * key-1
6645
+ */
6471
6646
  tagKey?: string;
6647
+ /**
6648
+ * @remarks
6649
+ * The tag value.
6650
+ *
6651
+ * @example
6652
+ * value-1
6653
+ */
6472
6654
  tagValue?: string;
6473
6655
  static names(): { [key: string]: string } {
6474
6656
  return {
@@ -6580,6 +6762,10 @@ export class GetAggregatorResponseBodyAggregator extends $dara.Model {
6580
6762
  * fd-brHdgv****
6581
6763
  */
6582
6764
  folderId?: string;
6765
+ /**
6766
+ * @remarks
6767
+ * tags
6768
+ */
6583
6769
  tags?: GetAggregatorResponseBodyAggregatorTags[];
6584
6770
  static names(): { [key: string]: string } {
6585
6771
  return {
@@ -6629,7 +6815,25 @@ export class GetAggregatorResponseBodyAggregator extends $dara.Model {
6629
6815
  }
6630
6816
 
6631
6817
  export class GetCompliancePackRequestTag extends $dara.Model {
6818
+ /**
6819
+ * @remarks
6820
+ * The tag key.
6821
+ *
6822
+ * The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
6823
+ *
6824
+ * You can specify at most 20 tag keys.
6825
+ *
6826
+ * @example
6827
+ * key-1
6828
+ */
6632
6829
  key?: string;
6830
+ /**
6831
+ * @remarks
6832
+ * The tag value. The tag value can be up to 256 characters in length and cannot contain `http://` or `https://`.
6833
+ *
6834
+ * @example
6835
+ * value-1
6836
+ */
6633
6837
  value?: string;
6634
6838
  static names(): { [key: string]: string } {
6635
6839
  return {
@@ -6804,7 +7008,7 @@ export class GetCompliancePackResponseBodyCompliancePackConfigRules extends $dar
6804
7008
  export class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope extends $dara.Model {
6805
7009
  /**
6806
7010
  * @remarks
6807
- * The tag key.
7011
+ * The key of the tag.
6808
7012
  *
6809
7013
  * @example
6810
7014
  * key-2
@@ -6812,7 +7016,7 @@ export class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope ex
6812
7016
  tagKey?: string;
6813
7017
  /**
6814
7018
  * @remarks
6815
- * The tag value.
7019
+ * The value of the tag.
6816
7020
  *
6817
7021
  * @example
6818
7022
  * value-2
@@ -6844,7 +7048,7 @@ export class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope ex
6844
7048
  export class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $dara.Model {
6845
7049
  /**
6846
7050
  * @remarks
6847
- * The tag key.
7051
+ * The key of the tag.
6848
7052
  *
6849
7053
  * @example
6850
7054
  * key-1
@@ -6852,7 +7056,7 @@ export class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $
6852
7056
  tagKey?: string;
6853
7057
  /**
6854
7058
  * @remarks
6855
- * The tag value.
7059
+ * The value of the tag.
6856
7060
  *
6857
7061
  * @example
6858
7062
  * value-1
@@ -6884,7 +7088,7 @@ export class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $
6884
7088
  export class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Model {
6885
7089
  /**
6886
7090
  * @remarks
6887
- * Excluded region scope, multiple regions should be separated by commas.
7091
+ * The IDs of regions that are excluded. Separate multiple region IDs with commas (,).
6888
7092
  *
6889
7093
  * @example
6890
7094
  * cn-hangzhou
@@ -6892,7 +7096,7 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Mode
6892
7096
  excludeRegionIdsScope?: string;
6893
7097
  /**
6894
7098
  * @remarks
6895
- * Excluded resourceGroup scope, multiple resourceGroup should be separated by commas.
7099
+ * The IDs of the resource groups whose resources you do not want to evaluate by using the compliance package. Separate multiple resource group IDs with commas (,).
6896
7100
  *
6897
7101
  * @example
6898
7102
  * rg-aekzc7r7rhx****
@@ -6908,7 +7112,7 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Mode
6908
7112
  excludeResourceIdsScope?: string;
6909
7113
  /**
6910
7114
  * @remarks
6911
- * Exclude tag scope.
7115
+ * The scope of the tag that is excluded.
6912
7116
  *
6913
7117
  * This parameter is required.
6914
7118
  */
@@ -6931,7 +7135,7 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Mode
6931
7135
  resourceGroupIdsScope?: string;
6932
7136
  /**
6933
7137
  * @remarks
6934
- * Include ResourceId scope, multiple resourceIds should be separated by commas.
7138
+ * The IDs of the resources to which the rule applies. Separate multiple resource IDs with commas (,).
6935
7139
  *
6936
7140
  * @example
6937
7141
  * eip-8vbf3x310fn56ijfd****
@@ -6955,7 +7159,7 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Mode
6955
7159
  tagValueScope?: string;
6956
7160
  /**
6957
7161
  * @remarks
6958
- * Include tag scope.
7162
+ * The tag scope.
6959
7163
  *
6960
7164
  * This parameter is required.
6961
7165
  */
@@ -7006,7 +7210,21 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Mode
7006
7210
  }
7007
7211
 
7008
7212
  export class GetCompliancePackResponseBodyCompliancePackTags extends $dara.Model {
7213
+ /**
7214
+ * @remarks
7215
+ * The tag keys of the resource.
7216
+ *
7217
+ * @example
7218
+ * key-1
7219
+ */
7009
7220
  tagKey?: string;
7221
+ /**
7222
+ * @remarks
7223
+ * The tag values of the resource.
7224
+ *
7225
+ * @example
7226
+ * value-1
7227
+ */
7010
7228
  tagValue?: string;
7011
7229
  static names(): { [key: string]: string } {
7012
7230
  return {
@@ -7113,6 +7331,10 @@ export class GetCompliancePackResponseBodyCompliancePack extends $dara.Model {
7113
7331
  * ACTIVE
7114
7332
  */
7115
7333
  status?: string;
7334
+ /**
7335
+ * @remarks
7336
+ * The list of tags.
7337
+ */
7116
7338
  tags?: GetCompliancePackResponseBodyCompliancePackTags[];
7117
7339
  /**
7118
7340
  * @remarks
@@ -7120,35 +7342,55 @@ export class GetCompliancePackResponseBodyCompliancePack extends $dara.Model {
7120
7342
  *
7121
7343
  * @example
7122
7344
  * {
7123
- * "configRuleTemplates": [
7345
+ * "configRuleTemplates": [
7124
7346
  * {
7125
- * "configRuleName": "弹性IP实例带宽满足最低要求",
7126
- * "scope": {
7127
- * "complianceResourceTypes": [
7128
- * "ACS::EIP::EipAddress"
7129
- * ]
7130
- * },
7131
- * "description": "弹性IP实例可用带宽大于等于指定参数值,视为“合规”。默认值:10MB",
7132
- * "source": {
7133
- * "owner": "ALIYUN",
7134
- * "identifier": "eip-bandwidth-limit",
7135
- * "sourceDetails": [
7136
- * {
7137
- * "messageType": "ConfigurationItemChangeNotification"
7138
- * }
7139
- * ]
7140
- * },
7141
- * "inputParameters": {
7142
- * "bandwidth": "10"
7143
- * }
7347
+ * "configRuleName": "rule-example",
7348
+ * "scope": {
7349
+ * "complianceResourceTypes": [
7350
+ * "ACS::ECS::Instance"
7351
+ * ]
7352
+ * },
7353
+ * "description": "",
7354
+ * "source": {
7355
+ * "owner": "CUSTOM_CONFIGURATION",
7356
+ * "identifier": "acs-config-configuration",
7357
+ * "sourceDetails": [
7358
+ * {
7359
+ * "messageType": "ScheduledNotification",
7360
+ * "maximumExecutionFrequency": "Twelve_Hours"
7361
+ * },
7362
+ * {
7363
+ * "messageType": "ConfigurationItemChangeNotification"
7364
+ * }
7365
+ * ],
7366
+ * "conditions": "{\\"ComplianceConditions\\":\\"{\\\\\\"operator\\\\\\":\\\\\\"and\\\\\\",\\\\\\"children\\\\\\":[{\\\\\\"operator\\\\\\":\\\\\\"GreaterOrEquals\\\\\\",\\\\\\"featurePath\\\\\\":\\\\\\"$.Cpu\\\\\\",\\\\\\"featureSource\\\\\\":\\\\\\"CONFIGURATION\\\\\\",\\\\\\"desired\\\\\\":\\\\\\"2\\\\\\"}]}\\"}"
7367
+ * },
7368
+ * "inputParameters": {}
7369
+ * },
7370
+ * {
7371
+ * "configRuleName": "name",
7372
+ * "scope": {
7373
+ * "complianceResourceTypes": [
7374
+ * "ACS::OSS::Bucket"
7375
+ * ]
7376
+ * },
7377
+ * "description": "description-1",
7378
+ * "source": {
7379
+ * "owner": "ALIYUN",
7380
+ * "identifier": "oss-bucket-referer-limit",
7381
+ * "sourceDetails": [
7382
+ * {
7383
+ * "messageType": "ConfigurationItemChangeNotification"
7384
+ * }
7385
+ * ]
7386
+ * },
7387
+ * "inputParameters": {
7388
+ * "allowEmptyReferer": "true",
7389
+ * "allowReferers": "http://www.aliyun.com"
7390
+ * }
7144
7391
  * }
7145
- * ],
7146
- * "compliancePackTemplate": {
7147
- * "riskLevel": 2,
7148
- * "compliancePackName": "gy-test",
7149
- * "description": ""
7150
- * }
7151
- * }
7392
+ * ]
7393
+ * }
7152
7394
  */
7153
7395
  templateContent?: string;
7154
7396
  static names(): { [key: string]: string } {
@@ -8513,6 +8755,17 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
8513
8755
  * eip-8vbf3x310fn56ijfd****
8514
8756
  */
8515
8757
  resourceIdsScope?: string;
8758
+ /**
8759
+ * @remarks
8760
+ * The names of the resource to which the rule applies.
8761
+ *
8762
+ * @example
8763
+ * i-xxx
8764
+ *
8765
+ * **if can be null:**
8766
+ * true
8767
+ */
8768
+ resourceNameScope?: string;
8516
8769
  /**
8517
8770
  * @remarks
8518
8771
  * The type of the resource to be evaluated by the rule.
@@ -8545,9 +8798,15 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
8545
8798
  source?: GetConfigRuleResponseBodyConfigRuleSource;
8546
8799
  /**
8547
8800
  * @remarks
8548
- * The ID of the member account to which the rule does not apply, which means that the resources within the member account are not evaluated based on the rule.
8801
+ * When retrieving details of rules created using the parameter `TagsScope`, this field will not be returned.
8549
8802
  *
8550
- * > This parameter applies only to a managed rule.
8803
+ * To retrieve rules created using the deprecated field `TagKeyScope` (not recommended): for example, when the parameter `TagKeyScope` has a value of ECS,OSS, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels ECS and OSS.
8804
+ *
8805
+ * Values:
8806
+ *
8807
+ * - AND: And.
8808
+ *
8809
+ * - OR: Or.
8551
8810
  *
8552
8811
  * @example
8553
8812
  * 120886317861****
@@ -8555,22 +8814,30 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
8555
8814
  tagKeyLogicScope?: string;
8556
8815
  /**
8557
8816
  * @remarks
8817
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
8818
+ *
8558
8819
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
8559
8820
  *
8560
- * > The `TagKeyScope` and `TagValueScope` parameters are returned at the same time.
8821
+ * > The TagKeyScope and `TagValueScope` parameters are returned at the same time.``
8561
8822
  *
8562
8823
  * @example
8563
8824
  * RAM
8825
+ *
8826
+ * @deprecated
8564
8827
  */
8565
8828
  tagKeyScope?: string;
8566
8829
  /**
8567
8830
  * @remarks
8568
- * The tag value used to filter resources. The rule applies only to the resources with the specified tag value.
8831
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
8569
8832
  *
8570
- * > The `TagKeyScope` and `TagValueScope` parameters are returned at the same time.
8833
+ * The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
8834
+ *
8835
+ * > The TagKeyScope and `TagValueScope` parameters are returned at the same time.``
8571
8836
  *
8572
8837
  * @example
8573
8838
  * MFA
8839
+ *
8840
+ * @deprecated
8574
8841
  */
8575
8842
  tagValueScope?: string;
8576
8843
  /**
@@ -8608,6 +8875,7 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
8608
8875
  regionIdsScope: 'RegionIdsScope',
8609
8876
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
8610
8877
  resourceIdsScope: 'ResourceIdsScope',
8878
+ resourceNameScope: 'ResourceNameScope',
8611
8879
  resourceTypesScope: 'ResourceTypesScope',
8612
8880
  riskLevel: 'RiskLevel',
8613
8881
  scope: 'Scope',
@@ -8645,6 +8913,7 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
8645
8913
  regionIdsScope: 'string',
8646
8914
  resourceGroupIdsScope: 'string',
8647
8915
  resourceIdsScope: 'string',
8916
+ resourceNameScope: 'string',
8648
8917
  resourceTypesScope: 'string',
8649
8918
  riskLevel: 'number',
8650
8919
  scope: GetConfigRuleResponseBodyConfigRuleScope,
@@ -10545,7 +10814,27 @@ export class IgnoreEvaluationResultsRequestResources extends $dara.Model {
10545
10814
  }
10546
10815
 
10547
10816
  export class ListAggregateCompliancePacksRequestTag extends $dara.Model {
10817
+ /**
10818
+ * @remarks
10819
+ * The tag key of the resource. You can specify up to 20 tag keys.
10820
+ *
10821
+ * The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
10822
+ *
10823
+ * @example
10824
+ * key-1
10825
+ */
10548
10826
  key?: string;
10827
+ /**
10828
+ * @remarks
10829
+ * The tag values.
10830
+ *
10831
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
10832
+ *
10833
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
10834
+ *
10835
+ * @example
10836
+ * value-1
10837
+ */
10549
10838
  value?: string;
10550
10839
  static names(): { [key: string]: string } {
10551
10840
  return {
@@ -10571,7 +10860,21 @@ export class ListAggregateCompliancePacksRequestTag extends $dara.Model {
10571
10860
  }
10572
10861
 
10573
10862
  export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
10863
+ /**
10864
+ * @remarks
10865
+ * The tag key.
10866
+ *
10867
+ * @example
10868
+ * key-1
10869
+ */
10574
10870
  tagKey?: string;
10871
+ /**
10872
+ * @remarks
10873
+ * The tag value.
10874
+ *
10875
+ * @example
10876
+ * value-1
10877
+ */
10575
10878
  tagValue?: string;
10576
10879
  static names(): { [key: string]: string } {
10577
10880
  return {
@@ -10676,6 +10979,10 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
10676
10979
  * ACTIVE
10677
10980
  */
10678
10981
  status?: string;
10982
+ /**
10983
+ * @remarks
10984
+ * The tags.
10985
+ */
10679
10986
  tags?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
10680
10987
  static names(): { [key: string]: string } {
10681
10988
  return {
@@ -10722,7 +11029,7 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
10722
11029
  export class ListAggregateCompliancePacksResponseBodyCompliancePacksResult extends $dara.Model {
10723
11030
  /**
10724
11031
  * @remarks
10725
- * The details of the compliance package.
11032
+ * The compliance packages.
10726
11033
  */
10727
11034
  compliancePacks?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacks[];
10728
11035
  /**
@@ -11203,6 +11510,11 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
11203
11510
  * 1624869012713
11204
11511
  */
11205
11512
  configRuleInvokedTimestamp?: number;
11513
+ /**
11514
+ * @example
11515
+ * 00000089-4e0d-58b5-a96a-8e54112110f3
11516
+ */
11517
+ evaluationId?: string;
11206
11518
  /**
11207
11519
  * @remarks
11208
11520
  * The identifying information about the compliance evaluation result.
@@ -11219,6 +11531,11 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
11219
11531
  * ScheduledNotification
11220
11532
  */
11221
11533
  invokingEventMessageType?: string;
11534
+ /**
11535
+ * @example
11536
+ * 1744696393000
11537
+ */
11538
+ lastNonCompliantRecordTimestamp?: number;
11222
11539
  /**
11223
11540
  * @remarks
11224
11541
  * Indicates whether the remediation template is enabled. Valid values:
@@ -11255,8 +11572,10 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
11255
11572
  annotation: 'Annotation',
11256
11573
  complianceType: 'ComplianceType',
11257
11574
  configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
11575
+ evaluationId: 'EvaluationId',
11258
11576
  evaluationResultIdentifier: 'EvaluationResultIdentifier',
11259
11577
  invokingEventMessageType: 'InvokingEventMessageType',
11578
+ lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
11260
11579
  remediationEnabled: 'RemediationEnabled',
11261
11580
  resultRecordedTimestamp: 'ResultRecordedTimestamp',
11262
11581
  riskLevel: 'RiskLevel',
@@ -11268,8 +11587,10 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
11268
11587
  annotation: 'string',
11269
11588
  complianceType: 'string',
11270
11589
  configRuleInvokedTimestamp: 'number',
11590
+ evaluationId: 'string',
11271
11591
  evaluationResultIdentifier: ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
11272
11592
  invokingEventMessageType: 'string',
11593
+ lastNonCompliantRecordTimestamp: 'number',
11273
11594
  remediationEnabled: 'boolean',
11274
11595
  resultRecordedTimestamp: 'number',
11275
11596
  riskLevel: 'number',
@@ -11419,7 +11740,27 @@ export class ListAggregateConfigRuleEvaluationStatisticsResponseBodyEvaluationRe
11419
11740
  }
11420
11741
 
11421
11742
  export class ListAggregateConfigRulesRequestTag extends $dara.Model {
11743
+ /**
11744
+ * @remarks
11745
+ * The tag key.
11746
+ *
11747
+ * The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
11748
+ *
11749
+ * You can specify at most 20 tag keys.
11750
+ *
11751
+ * @example
11752
+ * key-1
11753
+ */
11422
11754
  key?: string;
11755
+ /**
11756
+ * @remarks
11757
+ * The value of the tag. You can specify up to 20 tag values. The tag value can be an empty string.
11758
+ *
11759
+ * The tag value can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. The tag value cannot contain `http://` or `https://`.
11760
+ *
11761
+ * @example
11762
+ * value-1
11763
+ */
11423
11764
  value?: string;
11424
11765
  static names(): { [key: string]: string } {
11425
11766
  return {
@@ -11949,6 +12290,13 @@ export class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfi
11949
12290
  * {\\"key1\\":[\\"value2\\"]}
11950
12291
  */
11951
12292
  tags?: string;
12293
+ /**
12294
+ * @remarks
12295
+ * The time when the resource was last updated. The value must be a timestamp in milliseconds.
12296
+ *
12297
+ * @example
12298
+ * 1722441600000
12299
+ */
11952
12300
  updateTime?: number;
11953
12301
  /**
11954
12302
  * @remarks
@@ -12006,7 +12354,7 @@ export class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfi
12006
12354
  export class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfiles extends $dara.Model {
12007
12355
  /**
12008
12356
  * @remarks
12009
- * The queried resource.
12357
+ * The details of the resources.
12010
12358
  */
12011
12359
  discoveredResourceProfileList?: ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfilesDiscoveredResourceProfileList[];
12012
12360
  /**
@@ -12526,6 +12874,11 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
12526
12874
  * 1624932227157
12527
12875
  */
12528
12876
  configRuleInvokedTimestamp?: number;
12877
+ /**
12878
+ * @example
12879
+ * 00000089-4e0d-58b5-a96a-8e54112110f3
12880
+ */
12881
+ evaluationId?: string;
12529
12882
  /**
12530
12883
  * @remarks
12531
12884
  * The identifying information about the compliance evaluation result.
@@ -12542,6 +12895,11 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
12542
12895
  * ScheduledNotification
12543
12896
  */
12544
12897
  invokingEventMessageType?: string;
12898
+ /**
12899
+ * @example
12900
+ * 1744696665000
12901
+ */
12902
+ lastNonCompliantRecordTimestamp?: number;
12545
12903
  /**
12546
12904
  * @remarks
12547
12905
  * Indicates whether the remediation template is enabled. Valid values:
@@ -12578,8 +12936,10 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
12578
12936
  annotation: 'Annotation',
12579
12937
  complianceType: 'ComplianceType',
12580
12938
  configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
12939
+ evaluationId: 'EvaluationId',
12581
12940
  evaluationResultIdentifier: 'EvaluationResultIdentifier',
12582
12941
  invokingEventMessageType: 'InvokingEventMessageType',
12942
+ lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
12583
12943
  remediationEnabled: 'RemediationEnabled',
12584
12944
  resultRecordedTimestamp: 'ResultRecordedTimestamp',
12585
12945
  riskLevel: 'RiskLevel',
@@ -12591,8 +12951,10 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
12591
12951
  annotation: 'string',
12592
12952
  complianceType: 'string',
12593
12953
  configRuleInvokedTimestamp: 'number',
12954
+ evaluationId: 'string',
12594
12955
  evaluationResultIdentifier: ListAggregateResourceEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
12595
12956
  invokingEventMessageType: 'string',
12957
+ lastNonCompliantRecordTimestamp: 'number',
12596
12958
  remediationEnabled: 'boolean',
12597
12959
  resultRecordedTimestamp: 'number',
12598
12960
  riskLevel: 'number',
@@ -12879,7 +13241,27 @@ export class ListAggregateResourcesByAdvancedSearchResponseBodyQueryResults exte
12879
13241
  }
12880
13242
 
12881
13243
  export class ListAggregatorsRequestTag extends $dara.Model {
13244
+ /**
13245
+ * @remarks
13246
+ * The tag key of the resource. You can specify up to 20 tag keys.
13247
+ *
13248
+ * The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
13249
+ *
13250
+ * @example
13251
+ * key-1
13252
+ */
12882
13253
  key?: string;
13254
+ /**
13255
+ * @remarks
13256
+ * The tag values.
13257
+ *
13258
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
13259
+ *
13260
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
13261
+ *
13262
+ * @example
13263
+ * value-1
13264
+ */
12883
13265
  value?: string;
12884
13266
  static names(): { [key: string]: string } {
12885
13267
  return {
@@ -12905,7 +13287,21 @@ export class ListAggregatorsRequestTag extends $dara.Model {
12905
13287
  }
12906
13288
 
12907
13289
  export class ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags extends $dara.Model {
13290
+ /**
13291
+ * @remarks
13292
+ * The tag keys of the resource.
13293
+ *
13294
+ * @example
13295
+ * key-1
13296
+ */
12908
13297
  tagKey?: string;
13298
+ /**
13299
+ * @remarks
13300
+ * The tag values of the resource.
13301
+ *
13302
+ * @example
13303
+ * value-1
13304
+ */
12909
13305
  tagValue?: string;
12910
13306
  static names(): { [key: string]: string } {
12911
13307
  return {
@@ -13010,6 +13406,10 @@ export class ListAggregatorsResponseBodyAggregatorsResultAggregators extends $da
13010
13406
  * r-BU****
13011
13407
  */
13012
13408
  folderId?: string;
13409
+ /**
13410
+ * @remarks
13411
+ * tags
13412
+ */
13013
13413
  tags?: ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags[];
13014
13414
  static names(): { [key: string]: string } {
13015
13415
  return {
@@ -13420,7 +13820,27 @@ export class ListCompliancePackTemplatesResponseBodyCompliancePackTemplatesResul
13420
13820
  }
13421
13821
 
13422
13822
  export class ListCompliancePacksRequestTag extends $dara.Model {
13823
+ /**
13824
+ * @remarks
13825
+ * The tag key of the resource. You can specify up to 20 tag keys.
13826
+ *
13827
+ * The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
13828
+ *
13829
+ * @example
13830
+ * key-1
13831
+ */
13423
13832
  key?: string;
13833
+ /**
13834
+ * @remarks
13835
+ * The tag values.
13836
+ *
13837
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
13838
+ *
13839
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
13840
+ *
13841
+ * @example
13842
+ * value-1
13843
+ */
13424
13844
  value?: string;
13425
13845
  static names(): { [key: string]: string } {
13426
13846
  return {
@@ -13446,7 +13866,21 @@ export class ListCompliancePacksRequestTag extends $dara.Model {
13446
13866
  }
13447
13867
 
13448
13868
  export class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
13869
+ /**
13870
+ * @remarks
13871
+ * tag key
13872
+ *
13873
+ * @example
13874
+ * key-1
13875
+ */
13449
13876
  tagKey?: string;
13877
+ /**
13878
+ * @remarks
13879
+ * tag value
13880
+ *
13881
+ * @example
13882
+ * value-1
13883
+ */
13450
13884
  tagValue?: string;
13451
13885
  static names(): { [key: string]: string } {
13452
13886
  return {
@@ -13543,6 +13977,10 @@ export class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacks
13543
13977
  * ACTIVE
13544
13978
  */
13545
13979
  status?: string;
13980
+ /**
13981
+ * @remarks
13982
+ * The tags.
13983
+ */
13546
13984
  tags?: ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
13547
13985
  static names(): { [key: string]: string } {
13548
13986
  return {
@@ -14056,6 +14494,11 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
14056
14494
  * 1622802307081
14057
14495
  */
14058
14496
  configRuleInvokedTimestamp?: number;
14497
+ /**
14498
+ * @example
14499
+ * 00000089-4e0d-58b5-a96a-8e54112110f3
14500
+ */
14501
+ evaluationId?: string;
14059
14502
  /**
14060
14503
  * @remarks
14061
14504
  * The identifying information about the compliance evaluation result.
@@ -14067,11 +14510,17 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
14067
14510
  *
14068
14511
  * * ConfigurationItemChangeNotification: The rule is triggered by configuration changes.
14069
14512
  * * ScheduledNotification: The rule is periodically triggered.
14513
+ * * Manual: The rule is manually triggered.
14070
14514
  *
14071
14515
  * @example
14072
14516
  * ConfigurationItemChangeNotification
14073
14517
  */
14074
14518
  invokingEventMessageType?: string;
14519
+ /**
14520
+ * @example
14521
+ * 1744696665000
14522
+ */
14523
+ lastNonCompliantRecordTimestamp?: number;
14075
14524
  /**
14076
14525
  * @remarks
14077
14526
  * Indicates whether the remediation template is enabled. Valid values:
@@ -14108,8 +14557,10 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
14108
14557
  annotation: 'Annotation',
14109
14558
  complianceType: 'ComplianceType',
14110
14559
  configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
14560
+ evaluationId: 'EvaluationId',
14111
14561
  evaluationResultIdentifier: 'EvaluationResultIdentifier',
14112
14562
  invokingEventMessageType: 'InvokingEventMessageType',
14563
+ lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
14113
14564
  remediationEnabled: 'RemediationEnabled',
14114
14565
  resultRecordedTimestamp: 'ResultRecordedTimestamp',
14115
14566
  riskLevel: 'RiskLevel',
@@ -14121,8 +14572,10 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
14121
14572
  annotation: 'string',
14122
14573
  complianceType: 'string',
14123
14574
  configRuleInvokedTimestamp: 'number',
14575
+ evaluationId: 'string',
14124
14576
  evaluationResultIdentifier: ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
14125
14577
  invokingEventMessageType: 'string',
14578
+ lastNonCompliantRecordTimestamp: 'number',
14126
14579
  remediationEnabled: 'boolean',
14127
14580
  resultRecordedTimestamp: 'number',
14128
14581
  riskLevel: 'number',
@@ -14754,6 +15207,13 @@ export class ListDiscoveredResourcesResponseBodyDiscoveredResourceProfilesDiscov
14754
15207
  * {\\"key1\\":[\\"value2\\"]}
14755
15208
  */
14756
15209
  tags?: string;
15210
+ /**
15211
+ * @remarks
15212
+ * The time when the resource was last updated. The value must be a timestamp in milliseconds.
15213
+ *
15214
+ * @example
15215
+ * 1722441600000
15216
+ */
14757
15217
  updateTime?: number;
14758
15218
  /**
14759
15219
  * @remarks
@@ -15821,6 +16281,11 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
15821
16281
  * 1624932227157
15822
16282
  */
15823
16283
  configRuleInvokedTimestamp?: number;
16284
+ /**
16285
+ * @example
16286
+ * 00000089-4e0d-58b5-a96a-8e54112110f3
16287
+ */
16288
+ evaluationId?: string;
15824
16289
  /**
15825
16290
  * @remarks
15826
16291
  * The identifying information about the compliance evaluation result.
@@ -15832,11 +16297,17 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
15832
16297
  *
15833
16298
  * * ConfigurationItemChangeNotification: The managed rule is triggered by configuration changes.
15834
16299
  * * ScheduledNotification: The managed rule is periodically triggered.
16300
+ * * Manual: The rule is manually triggered.
15835
16301
  *
15836
16302
  * @example
15837
16303
  * ScheduledNotification
15838
16304
  */
15839
16305
  invokingEventMessageType?: string;
16306
+ /**
16307
+ * @example
16308
+ * 1744696393000
16309
+ */
16310
+ lastNonCompliantRecordTimestamp?: number;
15840
16311
  /**
15841
16312
  * @remarks
15842
16313
  * Indicates whether the remediation template is enabled. Valid values:
@@ -15873,8 +16344,10 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
15873
16344
  annotation: 'Annotation',
15874
16345
  complianceType: 'ComplianceType',
15875
16346
  configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
16347
+ evaluationId: 'EvaluationId',
15876
16348
  evaluationResultIdentifier: 'EvaluationResultIdentifier',
15877
16349
  invokingEventMessageType: 'InvokingEventMessageType',
16350
+ lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
15878
16351
  remediationEnabled: 'RemediationEnabled',
15879
16352
  resultRecordedTimestamp: 'ResultRecordedTimestamp',
15880
16353
  riskLevel: 'RiskLevel',
@@ -15886,8 +16359,10 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
15886
16359
  annotation: 'string',
15887
16360
  complianceType: 'string',
15888
16361
  configRuleInvokedTimestamp: 'number',
16362
+ evaluationId: 'string',
15889
16363
  evaluationResultIdentifier: ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
15890
16364
  invokingEventMessageType: 'string',
16365
+ lastNonCompliantRecordTimestamp: 'number',
15891
16366
  remediationEnabled: 'boolean',
15892
16367
  resultRecordedTimestamp: 'number',
15893
16368
  riskLevel: 'number',
@@ -17257,7 +17732,27 @@ export class UpdateAggregatorRequestAggregatorAccounts extends $dara.Model {
17257
17732
  }
17258
17733
 
17259
17734
  export class UpdateAggregatorRequestTag extends $dara.Model {
17735
+ /**
17736
+ * @remarks
17737
+ * The tag key of the resource. You can specify up to 20 tag keys.
17738
+ *
17739
+ * The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
17740
+ *
17741
+ * @example
17742
+ * key-1
17743
+ */
17260
17744
  key?: string;
17745
+ /**
17746
+ * @remarks
17747
+ * The tag values.
17748
+ *
17749
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
17750
+ *
17751
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
17752
+ *
17753
+ * @example
17754
+ * value-1
17755
+ */
17261
17756
  value?: string;
17262
17757
  static names(): { [key: string]: string } {
17263
17758
  return {
@@ -17455,7 +17950,29 @@ export class UpdateCompliancePackRequestExcludeTagsScope extends $dara.Model {
17455
17950
  }
17456
17951
 
17457
17952
  export class UpdateCompliancePackRequestTag extends $dara.Model {
17953
+ /**
17954
+ * @remarks
17955
+ * The tag keys.
17956
+ *
17957
+ * The tag keys cannot be an empty string. The tag keys can be up to 64 characters in length. The tag keys cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
17958
+ *
17959
+ * You can specify at most 20 tag keys in each call.
17960
+ *
17961
+ * @example
17962
+ * key-1
17963
+ */
17458
17964
  key?: string;
17965
+ /**
17966
+ * @remarks
17967
+ * The tag values.
17968
+ *
17969
+ * The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
17970
+ *
17971
+ * Each key-value must be unique. You can specify at most 20 tag values in each call.
17972
+ *
17973
+ * @example
17974
+ * value-1
17975
+ */
17459
17976
  value?: string;
17460
17977
  static names(): { [key: string]: string } {
17461
17978
  return {
@@ -19004,6 +19521,12 @@ export class CreateAggregateCompliancePackRequest extends $dara.Model {
19004
19521
  * 1
19005
19522
  */
19006
19523
  riskLevel?: number;
19524
+ /**
19525
+ * @remarks
19526
+ * The tags of the resource.
19527
+ *
19528
+ * You can add up to 20 tags to a resource.
19529
+ */
19007
19530
  tag?: CreateAggregateCompliancePackRequestTag[];
19008
19531
  /**
19009
19532
  * @remarks
@@ -19241,6 +19764,12 @@ export class CreateAggregateCompliancePackShrinkRequest extends $dara.Model {
19241
19764
  * 1
19242
19765
  */
19243
19766
  riskLevel?: number;
19767
+ /**
19768
+ * @remarks
19769
+ * The tags of the resource.
19770
+ *
19771
+ * You can add up to 20 tags to a resource.
19772
+ */
19244
19773
  tagShrink?: string;
19245
19774
  /**
19246
19775
  * @remarks
@@ -19891,6 +20420,17 @@ export class CreateAggregateConfigRuleRequest extends $dara.Model {
19891
20420
  * lb-5cmbowstbkss9ta03****
19892
20421
  */
19893
20422
  resourceIdsScope?: string;
20423
+ /**
20424
+ * @remarks
20425
+ * The names of the resource to which the rule applies.
20426
+ *
20427
+ * @example
20428
+ * i-xxx
20429
+ *
20430
+ * **if can be null:**
20431
+ * true
20432
+ */
20433
+ resourceNameScope?: string;
19894
20434
  /**
19895
20435
  * @remarks
19896
20436
  * The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
@@ -19943,13 +20483,22 @@ export class CreateAggregateConfigRuleRequest extends $dara.Model {
19943
20483
  * ALIYUN
19944
20484
  */
19945
20485
  sourceOwner?: string;
20486
+ /**
20487
+ * @remarks
20488
+ * The tags.
20489
+ */
19946
20490
  tag?: CreateAggregateConfigRuleRequestTag[];
19947
20491
  /**
19948
20492
  * @remarks
19949
- * The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
20493
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
20494
+ *
20495
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
19950
20496
  *
19951
- * * AND
19952
- * * OR
20497
+ * Values:
20498
+ *
20499
+ * - AND: And.
20500
+ *
20501
+ * - OR: Or.
19953
20502
  *
19954
20503
  * @example
19955
20504
  * AND
@@ -19957,22 +20506,30 @@ export class CreateAggregateConfigRuleRequest extends $dara.Model {
19957
20506
  tagKeyLogicScope?: string;
19958
20507
  /**
19959
20508
  * @remarks
20509
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
20510
+ *
19960
20511
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key. Separate multiple parameter values with commas (,).
19961
20512
  *
19962
- * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
20513
+ * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
19963
20514
  *
19964
20515
  * @example
19965
20516
  * ECS
20517
+ *
20518
+ * @deprecated
19966
20519
  */
19967
20520
  tagKeyScope?: string;
19968
20521
  /**
19969
20522
  * @remarks
19970
- * The tag value used to filter resources. The rule applies only to the resources with the specified tag value.
20523
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
19971
20524
  *
19972
- * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
20525
+ * The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
20526
+ *
20527
+ * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
19973
20528
  *
19974
20529
  * @example
19975
20530
  * test
20531
+ *
20532
+ * @deprecated
19976
20533
  */
19977
20534
  tagValueScope?: string;
19978
20535
  /**
@@ -20001,6 +20558,7 @@ export class CreateAggregateConfigRuleRequest extends $dara.Model {
20001
20558
  regionIdsScope: 'RegionIdsScope',
20002
20559
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
20003
20560
  resourceIdsScope: 'ResourceIdsScope',
20561
+ resourceNameScope: 'ResourceNameScope',
20004
20562
  resourceTypesScope: 'ResourceTypesScope',
20005
20563
  riskLevel: 'RiskLevel',
20006
20564
  sourceIdentifier: 'SourceIdentifier',
@@ -20034,6 +20592,7 @@ export class CreateAggregateConfigRuleRequest extends $dara.Model {
20034
20592
  regionIdsScope: 'string',
20035
20593
  resourceGroupIdsScope: 'string',
20036
20594
  resourceIdsScope: 'string',
20595
+ resourceNameScope: 'string',
20037
20596
  resourceTypesScope: { 'type': 'array', 'itemType': 'string' },
20038
20597
  riskLevel: 'number',
20039
20598
  sourceIdentifier: 'string',
@@ -20259,6 +20818,17 @@ export class CreateAggregateConfigRuleShrinkRequest extends $dara.Model {
20259
20818
  * lb-5cmbowstbkss9ta03****
20260
20819
  */
20261
20820
  resourceIdsScope?: string;
20821
+ /**
20822
+ * @remarks
20823
+ * The names of the resource to which the rule applies.
20824
+ *
20825
+ * @example
20826
+ * i-xxx
20827
+ *
20828
+ * **if can be null:**
20829
+ * true
20830
+ */
20831
+ resourceNameScope?: string;
20262
20832
  /**
20263
20833
  * @remarks
20264
20834
  * The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
@@ -20311,13 +20881,22 @@ export class CreateAggregateConfigRuleShrinkRequest extends $dara.Model {
20311
20881
  * ALIYUN
20312
20882
  */
20313
20883
  sourceOwner?: string;
20884
+ /**
20885
+ * @remarks
20886
+ * The tags.
20887
+ */
20314
20888
  tagShrink?: string;
20315
20889
  /**
20316
20890
  * @remarks
20317
- * The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
20891
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
20318
20892
  *
20319
- * * AND
20320
- * * OR
20893
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
20894
+ *
20895
+ * Values:
20896
+ *
20897
+ * - AND: And.
20898
+ *
20899
+ * - OR: Or.
20321
20900
  *
20322
20901
  * @example
20323
20902
  * AND
@@ -20325,22 +20904,30 @@ export class CreateAggregateConfigRuleShrinkRequest extends $dara.Model {
20325
20904
  tagKeyLogicScope?: string;
20326
20905
  /**
20327
20906
  * @remarks
20907
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
20908
+ *
20328
20909
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key. Separate multiple parameter values with commas (,).
20329
20910
  *
20330
- * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
20911
+ * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
20331
20912
  *
20332
20913
  * @example
20333
20914
  * ECS
20915
+ *
20916
+ * @deprecated
20334
20917
  */
20335
20918
  tagKeyScope?: string;
20336
20919
  /**
20337
20920
  * @remarks
20338
- * The tag value used to filter resources. The rule applies only to the resources with the specified tag value.
20921
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
20339
20922
  *
20340
- * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
20923
+ * The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
20924
+ *
20925
+ * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
20341
20926
  *
20342
20927
  * @example
20343
20928
  * test
20929
+ *
20930
+ * @deprecated
20344
20931
  */
20345
20932
  tagValueScope?: string;
20346
20933
  /**
@@ -20369,6 +20956,7 @@ export class CreateAggregateConfigRuleShrinkRequest extends $dara.Model {
20369
20956
  regionIdsScope: 'RegionIdsScope',
20370
20957
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
20371
20958
  resourceIdsScope: 'ResourceIdsScope',
20959
+ resourceNameScope: 'ResourceNameScope',
20372
20960
  resourceTypesScopeShrink: 'ResourceTypesScope',
20373
20961
  riskLevel: 'RiskLevel',
20374
20962
  sourceIdentifier: 'SourceIdentifier',
@@ -20402,6 +20990,7 @@ export class CreateAggregateConfigRuleShrinkRequest extends $dara.Model {
20402
20990
  regionIdsScope: 'string',
20403
20991
  resourceGroupIdsScope: 'string',
20404
20992
  resourceIdsScope: 'string',
20993
+ resourceNameScope: 'string',
20405
20994
  resourceTypesScopeShrink: 'string',
20406
20995
  riskLevel: 'number',
20407
20996
  sourceIdentifier: 'string',
@@ -20775,12 +21364,18 @@ export class CreateAggregatorRequest extends $dara.Model {
20775
21364
  description?: string;
20776
21365
  /**
20777
21366
  * @remarks
20778
- * The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`.
21367
+ * The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`. Multiple resource folder IDs should be separated by commas (,).
20779
21368
  *
20780
21369
  * @example
20781
- * fd-brHdgv****
21370
+ * fd-brHdgv****,fd-brHdgk****
20782
21371
  */
20783
21372
  folderId?: string;
21373
+ /**
21374
+ * @remarks
21375
+ * The tags of the resource.
21376
+ *
21377
+ * You can add up to 20 tags to a resource.
21378
+ */
20784
21379
  tag?: CreateAggregatorRequestTag[];
20785
21380
  static names(): { [key: string]: string } {
20786
21381
  return {
@@ -20884,12 +21479,18 @@ export class CreateAggregatorShrinkRequest extends $dara.Model {
20884
21479
  description?: string;
20885
21480
  /**
20886
21481
  * @remarks
20887
- * The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`.
21482
+ * The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`. Multiple resource folder IDs should be separated by commas (,).
20888
21483
  *
20889
21484
  * @example
20890
- * fd-brHdgv****
21485
+ * fd-brHdgv****,fd-brHdgk****
20891
21486
  */
20892
21487
  folderId?: string;
21488
+ /**
21489
+ * @remarks
21490
+ * The tags of the resource.
21491
+ *
21492
+ * You can add up to 20 tags to a resource.
21493
+ */
20893
21494
  tagShrink?: string;
20894
21495
  static names(): { [key: string]: string } {
20895
21496
  return {
@@ -21120,6 +21721,12 @@ export class CreateCompliancePackRequest extends $dara.Model {
21120
21721
  * 1
21121
21722
  */
21122
21723
  riskLevel?: number;
21724
+ /**
21725
+ * @remarks
21726
+ * The tags of the resource.
21727
+ *
21728
+ * You can add up to 20 tags to a resource.
21729
+ */
21123
21730
  tag?: CreateCompliancePackRequestTag[];
21124
21731
  /**
21125
21732
  * @remarks
@@ -21342,6 +21949,12 @@ export class CreateCompliancePackShrinkRequest extends $dara.Model {
21342
21949
  * 1
21343
21950
  */
21344
21951
  riskLevel?: number;
21952
+ /**
21953
+ * @remarks
21954
+ * The tags of the resource.
21955
+ *
21956
+ * You can add up to 20 tags to a resource.
21957
+ */
21345
21958
  tagShrink?: string;
21346
21959
  /**
21347
21960
  * @remarks
@@ -21560,25 +22173,34 @@ export class CreateConfigDeliveryChannelRequest extends $dara.Model {
21560
22173
  configurationSnapshot?: boolean;
21561
22174
  /**
21562
22175
  * @remarks
21563
- * The rule that you want to attach to the delivery channel. This parameter is available when you deliver data of all types to MNS or deliver snapshots to Log Service.
22176
+ * The rule that you want to attach to the delivery channel, used to specify subscription content filtering conditions.
21564
22177
  *
21565
- * * If the value of the DeliveryChannelType parameter is MNS, take note of the following settings of the lowest risk level and resource types of the events to which you subscribed:
22178
+ * * If you specify the minimum risk level and resource types for compliance events, it should be as follows:
21566
22179
  *
21567
22180
  * * The setting of the lowest risk level for the events to which you want to subscribe is in the following format: `{"filterType":"RuleRiskLevel","value":"1","multiple":false}`.
21568
22181
  *
21569
22182
  * The `value` field indicates the lowest risk level of the events to which you want to subscribe. Valid values: 1, 2, and 3. The value 1 indicates the high risk level, the value 2 indicates the medium risk level, and the value 3 indicates the low risk level.
21570
22183
  *
22184
+ * The `multiple` field indicates whether multiple values are supported for this group of filters. Risk levels only support single-value filtering, so the multiple field for compliance event type content can only be set to `false`.
22185
+ *
21571
22186
  * * The setting of the resource types of the events to which you want to subscribe is in the following format: `{"filterType":"ResourceType","values":["ACS::ACK::Cluster","ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage"],"multiple":true}`.
21572
22187
  *
21573
- * The `values` field indicates the resource types of the events to which you want to subscribe. The value of the field is a JSON array. Examples:
22188
+ * The `values` field indicates the resource types of the events to which you want to subscribe.
21574
22189
  *
21575
- * `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
22190
+ * The `multiple` field indicates whether multiple values are supported for this group of filters. Resource types support multi-value filtering; when selecting multiple resource types, the multiple field can be set to true.
22191
+ * The value of the field is a JSON array. Examples:
21576
22192
  *
21577
- * * If you set the DeliveryChannelType parameter to SLS, the setting of the resource types of the snapshots to which you want to deliver is in the following format: `{"filterType":"ResourceType","values":["ACS::ACK::Cluster","ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage"],"multiple":true}`.
22193
+ * `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
22194
+ *
22195
+ * * You can also simultaneously specify both risk levels and resource types, such as:
22196
+ *
22197
+ * `[{"filterType":"RuleRiskLevel","value":"2","multiple":false},{"filterType":"ResourceType","values":["ACS::CDN::Domain","ACS::ActionTrail::Trail"],"multiple":true}]`
22198
+ *
22199
+ * * If you specify the resource types for delivering configurations, the resource types are specified by: `{"filterType":"ResourceType","values":["ACS::ACK::Cluster","ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage"],"multiple":true}`.
21578
22200
  *
21579
22201
  * The `values` field specifies the resource types of the snapshots to which you want to deliver. The value of the field is a JSON array. Examples:
21580
22202
  *
21581
- * `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
22203
+ * `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
21582
22204
  *
21583
22205
  * @example
21584
22206
  * [{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]
@@ -21918,6 +22540,17 @@ export class CreateConfigRuleRequest extends $dara.Model {
21918
22540
  * lb-5cmbowstbkss9ta03****
21919
22541
  */
21920
22542
  resourceIdsScope?: string;
22543
+ /**
22544
+ * @remarks
22545
+ * The names of the resource to which the rule applies.
22546
+ *
22547
+ * @example
22548
+ * i-xxx
22549
+ *
22550
+ * **if can be null:**
22551
+ * true
22552
+ */
22553
+ resourceNameScope?: string;
21921
22554
  /**
21922
22555
  * @remarks
21923
22556
  * The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
@@ -21977,10 +22610,15 @@ export class CreateConfigRuleRequest extends $dara.Model {
21977
22610
  tag?: CreateConfigRuleRequestTag[];
21978
22611
  /**
21979
22612
  * @remarks
21980
- * The logical relationship among the tag keys if you specify multiple tag keys for `TagKeyScope`. For example, if you set `TagKeyScope` to `ECS,OSS` and set TagKeyLogicScope to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
22613
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
22614
+ *
22615
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
22616
+ *
22617
+ * Values:
21981
22618
  *
21982
- * * AND
21983
- * * OR
22619
+ * - AND: And.
22620
+ *
22621
+ * - OR: Or.
21984
22622
  *
21985
22623
  * @example
21986
22624
  * AND
@@ -21994,6 +22632,8 @@ export class CreateConfigRuleRequest extends $dara.Model {
21994
22632
  *
21995
22633
  * @example
21996
22634
  * ECS
22635
+ *
22636
+ * @deprecated
21997
22637
  */
21998
22638
  tagKeyScope?: string;
21999
22639
  /**
@@ -22004,6 +22644,8 @@ export class CreateConfigRuleRequest extends $dara.Model {
22004
22644
  *
22005
22645
  * @example
22006
22646
  * test
22647
+ *
22648
+ * @deprecated
22007
22649
  */
22008
22650
  tagValueScope?: string;
22009
22651
  /**
@@ -22027,6 +22669,7 @@ export class CreateConfigRuleRequest extends $dara.Model {
22027
22669
  regionIdsScope: 'RegionIdsScope',
22028
22670
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
22029
22671
  resourceIdsScope: 'ResourceIdsScope',
22672
+ resourceNameScope: 'ResourceNameScope',
22030
22673
  resourceTypesScope: 'ResourceTypesScope',
22031
22674
  riskLevel: 'RiskLevel',
22032
22675
  sourceIdentifier: 'SourceIdentifier',
@@ -22055,6 +22698,7 @@ export class CreateConfigRuleRequest extends $dara.Model {
22055
22698
  regionIdsScope: 'string',
22056
22699
  resourceGroupIdsScope: 'string',
22057
22700
  resourceIdsScope: 'string',
22701
+ resourceNameScope: 'string',
22058
22702
  resourceTypesScope: { 'type': 'array', 'itemType': 'string' },
22059
22703
  riskLevel: 'number',
22060
22704
  sourceIdentifier: 'string',
@@ -22224,6 +22868,17 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
22224
22868
  * lb-5cmbowstbkss9ta03****
22225
22869
  */
22226
22870
  resourceIdsScope?: string;
22871
+ /**
22872
+ * @remarks
22873
+ * The names of the resource to which the rule applies.
22874
+ *
22875
+ * @example
22876
+ * i-xxx
22877
+ *
22878
+ * **if can be null:**
22879
+ * true
22880
+ */
22881
+ resourceNameScope?: string;
22227
22882
  /**
22228
22883
  * @remarks
22229
22884
  * The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
@@ -22283,10 +22938,15 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
22283
22938
  tagShrink?: string;
22284
22939
  /**
22285
22940
  * @remarks
22286
- * The logical relationship among the tag keys if you specify multiple tag keys for `TagKeyScope`. For example, if you set `TagKeyScope` to `ECS,OSS` and set TagKeyLogicScope to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
22941
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
22942
+ *
22943
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
22944
+ *
22945
+ * Values:
22287
22946
  *
22288
- * * AND
22289
- * * OR
22947
+ * - AND: And.
22948
+ *
22949
+ * - OR: Or.
22290
22950
  *
22291
22951
  * @example
22292
22952
  * AND
@@ -22300,6 +22960,8 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
22300
22960
  *
22301
22961
  * @example
22302
22962
  * ECS
22963
+ *
22964
+ * @deprecated
22303
22965
  */
22304
22966
  tagKeyScope?: string;
22305
22967
  /**
@@ -22310,6 +22972,8 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
22310
22972
  *
22311
22973
  * @example
22312
22974
  * test
22975
+ *
22976
+ * @deprecated
22313
22977
  */
22314
22978
  tagValueScope?: string;
22315
22979
  /**
@@ -22333,6 +22997,7 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
22333
22997
  regionIdsScope: 'RegionIdsScope',
22334
22998
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
22335
22999
  resourceIdsScope: 'ResourceIdsScope',
23000
+ resourceNameScope: 'ResourceNameScope',
22336
23001
  resourceTypesScopeShrink: 'ResourceTypesScope',
22337
23002
  riskLevel: 'RiskLevel',
22338
23003
  sourceIdentifier: 'SourceIdentifier',
@@ -22361,6 +23026,7 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
22361
23026
  regionIdsScope: 'string',
22362
23027
  resourceGroupIdsScope: 'string',
22363
23028
  resourceIdsScope: 'string',
23029
+ resourceNameScope: 'string',
22364
23030
  resourceTypesScopeShrink: 'string',
22365
23031
  riskLevel: 'number',
22366
23032
  sourceIdentifier: 'string',
@@ -25916,6 +26582,12 @@ export class GetAggregateCompliancePackRequest extends $dara.Model {
25916
26582
  * cp-fdc8626622af00f9****
25917
26583
  */
25918
26584
  compliancePackId?: string;
26585
+ /**
26586
+ * @remarks
26587
+ * The tags of the resource.
26588
+ *
26589
+ * You can add up to 20 tags to a resource.
26590
+ */
25919
26591
  tag?: GetAggregateCompliancePackRequestTag[];
25920
26592
  static names(): { [key: string]: string } {
25921
26593
  return {
@@ -25970,6 +26642,12 @@ export class GetAggregateCompliancePackShrinkRequest extends $dara.Model {
25970
26642
  * cp-fdc8626622af00f9****
25971
26643
  */
25972
26644
  compliancePackId?: string;
26645
+ /**
26646
+ * @remarks
26647
+ * The tags of the resource.
26648
+ *
26649
+ * You can add up to 20 tags to a resource.
26650
+ */
25973
26651
  tagShrink?: string;
25974
26652
  static names(): { [key: string]: string } {
25975
26653
  return {
@@ -26547,7 +27225,7 @@ export class GetAggregateConfigRuleShrinkRequest extends $dara.Model {
26547
27225
  export class GetAggregateConfigRuleResponseBody extends $dara.Model {
26548
27226
  /**
26549
27227
  * @remarks
26550
- * The rules.
27228
+ * The information about the rules.
26551
27229
  */
26552
27230
  configRule?: GetAggregateConfigRuleResponseBodyConfigRule;
26553
27231
  /**
@@ -26898,7 +27576,7 @@ export class GetAggregateConfigRulesReportRequest extends $dara.Model {
26898
27576
  export class GetAggregateConfigRulesReportResponseBody extends $dara.Model {
26899
27577
  /**
26900
27578
  * @remarks
26901
- * The information about the compliance evaluation report.
27579
+ * The compliance evaluation report.
26902
27580
  */
26903
27581
  configRulesReport?: GetAggregateConfigRulesReportResponseBodyConfigRulesReport;
26904
27582
  /**
@@ -27008,7 +27686,7 @@ export class GetAggregateDiscoveredResourceRequest extends $dara.Model {
27008
27686
  region?: string;
27009
27687
  /**
27010
27688
  * @remarks
27011
- * The ID of the Alibaba Cloud account to which the specified resource belongs in the account group.
27689
+ * Required. The ID of the Alibaba Cloud account to which the specified resource belongs in the account group.
27012
27690
  *
27013
27691
  * @example
27014
27692
  * 100931896542****
@@ -27923,7 +28601,7 @@ export class GetAggregateResourceConfigurationTimelineRequest extends $dara.Mode
27923
28601
  region?: string;
27924
28602
  /**
27925
28603
  * @remarks
27926
- * The ID of the Alibaba Cloud account to which the resource in the account group belongs.
28604
+ * Required. The ID of the Alibaba Cloud account to which the specified resource belongs in the account group.
27927
28605
  *
27928
28606
  * @example
27929
28607
  * 100931896542****
@@ -28497,6 +29175,12 @@ export class GetAggregatorRequest extends $dara.Model {
28497
29175
  * ca-88ea626622af0055****
28498
29176
  */
28499
29177
  aggregatorId?: string;
29178
+ /**
29179
+ * @remarks
29180
+ * The tags of the resource.
29181
+ *
29182
+ * You can add up to 20 tags to a resource.
29183
+ */
28500
29184
  tag?: GetAggregatorRequestTag[];
28501
29185
  static names(): { [key: string]: string } {
28502
29186
  return {
@@ -28535,6 +29219,12 @@ export class GetAggregatorShrinkRequest extends $dara.Model {
28535
29219
  * ca-88ea626622af0055****
28536
29220
  */
28537
29221
  aggregatorId?: string;
29222
+ /**
29223
+ * @remarks
29224
+ * The tags of the resource.
29225
+ *
29226
+ * You can add up to 20 tags to a resource.
29227
+ */
28538
29228
  tagShrink?: string;
28539
29229
  static names(): { [key: string]: string } {
28540
29230
  return {
@@ -28647,6 +29337,12 @@ export class GetCompliancePackRequest extends $dara.Model {
28647
29337
  * cp-a8a8626622af0082****
28648
29338
  */
28649
29339
  compliancePackId?: string;
29340
+ /**
29341
+ * @remarks
29342
+ * The tags of the resource.
29343
+ *
29344
+ * You can add up to 20 tags to a resource.
29345
+ */
28650
29346
  tag?: GetCompliancePackRequestTag[];
28651
29347
  static names(): { [key: string]: string } {
28652
29348
  return {
@@ -28687,6 +29383,12 @@ export class GetCompliancePackShrinkRequest extends $dara.Model {
28687
29383
  * cp-a8a8626622af0082****
28688
29384
  */
28689
29385
  compliancePackId?: string;
29386
+ /**
29387
+ * @remarks
29388
+ * The tags of the resource.
29389
+ *
29390
+ * You can add up to 20 tags to a resource.
29391
+ */
28690
29392
  tagShrink?: string;
28691
29393
  static names(): { [key: string]: string } {
28692
29394
  return {
@@ -31766,6 +32468,10 @@ export class ListAggregateCompliancePacksRequest extends $dara.Model {
31766
32468
  * ACTIVE
31767
32469
  */
31768
32470
  status?: string;
32471
+ /**
32472
+ * @remarks
32473
+ * The tags.
32474
+ */
31769
32475
  tag?: ListAggregateCompliancePacksRequestTag[];
31770
32476
  static names(): { [key: string]: string } {
31771
32477
  return {
@@ -31843,6 +32549,10 @@ export class ListAggregateCompliancePacksShrinkRequest extends $dara.Model {
31843
32549
  * ACTIVE
31844
32550
  */
31845
32551
  status?: string;
32552
+ /**
32553
+ * @remarks
32554
+ * The tags.
32555
+ */
31846
32556
  tagShrink?: string;
31847
32557
  static names(): { [key: string]: string } {
31848
32558
  return {
@@ -31876,7 +32586,7 @@ export class ListAggregateCompliancePacksShrinkRequest extends $dara.Model {
31876
32586
  export class ListAggregateCompliancePacksResponseBody extends $dara.Model {
31877
32587
  /**
31878
32588
  * @remarks
31879
- * The information about the compliance packages.
32589
+ * The compliance packages returned.
31880
32590
  */
31881
32591
  compliancePacksResult?: ListAggregateCompliancePacksResponseBodyCompliancePacksResult;
31882
32592
  /**
@@ -32496,6 +33206,12 @@ export class ListAggregateConfigRulesRequest extends $dara.Model {
32496
33206
  * 1
32497
33207
  */
32498
33208
  riskLevel?: number;
33209
+ /**
33210
+ * @remarks
33211
+ * The tags of the resource.
33212
+ *
33213
+ * You can add up to 20 tags to a resource.
33214
+ */
32499
33215
  tag?: ListAggregateConfigRulesRequestTag[];
32500
33216
  static names(): { [key: string]: string } {
32501
33217
  return {
@@ -32646,6 +33362,12 @@ export class ListAggregateConfigRulesShrinkRequest extends $dara.Model {
32646
33362
  * 1
32647
33363
  */
32648
33364
  riskLevel?: number;
33365
+ /**
33366
+ * @remarks
33367
+ * The tags of the resource.
33368
+ *
33369
+ * You can add up to 20 tags to a resource.
33370
+ */
32649
33371
  tagShrink?: string;
32650
33372
  static names(): { [key: string]: string } {
32651
33373
  return {
@@ -32776,7 +33498,25 @@ export class ListAggregateDiscoveredResourcesRequest extends $dara.Model {
32776
33498
  * ca-c560626622af0005****
32777
33499
  */
32778
33500
  aggregatorId?: string;
33501
+ /**
33502
+ * @remarks
33503
+ * The end time of the time range for querying resources. The value is a timestamp in the UTC format. When you specify this parameter, take note of the following limits:
33504
+ *
33505
+ * * The value must be a timestamp in milliseconds.
33506
+ * * The value cannot be less than the value of the StartUpdateTimestamp parameter. The interval between the value and the value of the StartUpdateTimestamp parameter must be less than or equal to 30 days.
33507
+ * * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left empty at the same time.
33508
+ *
33509
+ * @example
33510
+ * 1724947200000
33511
+ */
32779
33512
  endUpdateTimestamp?: number;
33513
+ /**
33514
+ * @remarks
33515
+ * The types of resources that are excluded. Separate multiple values with commas (,). If this parameter conflicts with the ResourceTypes parameter, this parameter prevails.
33516
+ *
33517
+ * @example
33518
+ * ACS::ECS::Instance,ACS::ECS::NetworkInterface
33519
+ */
32780
33520
  excludeResourceTypes?: string;
32781
33521
  /**
32782
33522
  * @remarks
@@ -32846,6 +33586,17 @@ export class ListAggregateDiscoveredResourcesRequest extends $dara.Model {
32846
33586
  * ACS::ECS::NetworkInterface
32847
33587
  */
32848
33588
  resourceTypes?: string;
33589
+ /**
33590
+ * @remarks
33591
+ * The start time of the time range for querying resources. The value is a timestamp in the Coordinated Universal Time (UTC) format. When you specify this parameter, take note of the following limits:
33592
+ *
33593
+ * * The value must be a timestamp in milliseconds.
33594
+ * * The value cannot be greater than the value of the EndUpdateTimestamp parameter. The interval between the value and the value of the EndUpdateTimestamp parameter must be less than or equal to 30 days.
33595
+ * * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left empty at the same time.
33596
+ *
33597
+ * @example
33598
+ * 1722441600000
33599
+ */
32849
33600
  startUpdateTimestamp?: number;
32850
33601
  static names(): { [key: string]: string } {
32851
33602
  return {
@@ -32893,7 +33644,7 @@ export class ListAggregateDiscoveredResourcesRequest extends $dara.Model {
32893
33644
  export class ListAggregateDiscoveredResourcesResponseBody extends $dara.Model {
32894
33645
  /**
32895
33646
  * @remarks
32896
- * The queried resources.
33647
+ * The information about the resources.
32897
33648
  */
32898
33649
  discoveredResourceProfiles?: ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfiles;
32899
33650
  /**
@@ -33785,6 +34536,12 @@ export class ListAggregatorsRequest extends $dara.Model {
33785
34536
  * TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
33786
34537
  */
33787
34538
  nextToken?: string;
34539
+ /**
34540
+ * @remarks
34541
+ * The tags of the resource.
34542
+ *
34543
+ * You can add up to 20 tags to a resource.
34544
+ */
33788
34545
  tag?: ListAggregatorsRequestTag[];
33789
34546
  static names(): { [key: string]: string } {
33790
34547
  return {
@@ -33833,6 +34590,12 @@ export class ListAggregatorsShrinkRequest extends $dara.Model {
33833
34590
  * TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
33834
34591
  */
33835
34592
  nextToken?: string;
34593
+ /**
34594
+ * @remarks
34595
+ * The tags of the resource.
34596
+ *
34597
+ * You can add up to 20 tags to a resource.
34598
+ */
33836
34599
  tagShrink?: string;
33837
34600
  static names(): { [key: string]: string } {
33838
34601
  return {
@@ -34105,6 +34868,12 @@ export class ListCompliancePacksRequest extends $dara.Model {
34105
34868
  * ACTIVE
34106
34869
  */
34107
34870
  status?: string;
34871
+ /**
34872
+ * @remarks
34873
+ * The tags of the resource.
34874
+ *
34875
+ * You can add up to 20 tags to a resource.
34876
+ */
34108
34877
  tag?: ListCompliancePacksRequestTag[];
34109
34878
  static names(): { [key: string]: string } {
34110
34879
  return {
@@ -34168,6 +34937,12 @@ export class ListCompliancePacksShrinkRequest extends $dara.Model {
34168
34937
  * ACTIVE
34169
34938
  */
34170
34939
  status?: string;
34940
+ /**
34941
+ * @remarks
34942
+ * The tags of the resource.
34943
+ *
34944
+ * You can add up to 20 tags to a resource.
34945
+ */
34171
34946
  tagShrink?: string;
34172
34947
  static names(): { [key: string]: string } {
34173
34948
  return {
@@ -34416,7 +35191,7 @@ export class ListConfigRuleEvaluationResultsRequest extends $dara.Model {
34416
35191
  configRuleId?: string;
34417
35192
  /**
34418
35193
  * @remarks
34419
- * The maximum number of entries to return for a single request. Valid values: 1 to 100.
35194
+ * The maximum number of entries to return in a request. Valid values: 1 to 100.
34420
35195
  *
34421
35196
  * @example
34422
35197
  * 10
@@ -35004,7 +35779,25 @@ export class ListConfigRulesResponse extends $dara.Model {
35004
35779
  }
35005
35780
 
35006
35781
  export class ListDiscoveredResourcesRequest extends $dara.Model {
35782
+ /**
35783
+ * @remarks
35784
+ * The end time of the time range for querying resources. The value is a timestamp in the UTC format. When you specify this parameter, take note of the following limits:
35785
+ *
35786
+ * * The value must be a timestamp in milliseconds.
35787
+ * * The value cannot be less than the value of the StartUpdateTimestamp parameter. The interval between the value and the value of the StartUpdateTimestamp parameter must be less than or equal to 30 days.
35788
+ * * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left empty at the same time.
35789
+ *
35790
+ * @example
35791
+ * 1724947200000
35792
+ */
35007
35793
  endUpdateTimestamp?: number;
35794
+ /**
35795
+ * @remarks
35796
+ * The types of resources that are excluded. Separate multiple values with commas (,). If this parameter conflicts with the ResourceTypes parameter, this parameter prevails.
35797
+ *
35798
+ * @example
35799
+ * ACS::ECS::Instance,ACS::ECS::NetworkInterface
35800
+ */
35008
35801
  excludeResourceTypes?: string;
35009
35802
  /**
35010
35803
  * @remarks
@@ -35062,6 +35855,17 @@ export class ListDiscoveredResourcesRequest extends $dara.Model {
35062
35855
  * ACS::ECS::NetworkInterface
35063
35856
  */
35064
35857
  resourceTypes?: string;
35858
+ /**
35859
+ * @remarks
35860
+ * The start time of the time range for querying resources. The value is a timestamp in the UTC format. When you specify this parameter, take note of the following limits:
35861
+ *
35862
+ * * The value must be a timestamp in milliseconds.
35863
+ * * The value cannot be greater than the value of the EndUpdateTimestamp parameter. The interval between the value and the value of the EndUpdateTimestamp parameter must be less than or equal to 30 days.
35864
+ * * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left blank at the same time.
35865
+ *
35866
+ * @example
35867
+ * 1722441600000
35868
+ */
35065
35869
  startUpdateTimestamp?: number;
35066
35870
  static names(): { [key: string]: string } {
35067
35871
  return {
@@ -35251,6 +36055,18 @@ export class ListIntegratedServiceResponse extends $dara.Model {
35251
36055
  }
35252
36056
 
35253
36057
  export class ListManagedRulesRequest extends $dara.Model {
36058
+ /**
36059
+ * @remarks
36060
+ * The scope for filtering managed rules allows you to filter out managed rules without resource coverage. The possible values are:
36061
+ *
36062
+ * - ALL: All rules.
36063
+ *
36064
+ * - UNCOVERED_RESOURCE: Filters managed rules where some resources are not covered.
36065
+ *
36066
+ * @example
36067
+ * ALL
36068
+ */
36069
+ filterType?: string;
35254
36070
  /**
35255
36071
  * @remarks
35256
36072
  * The keyword of the managed rule.
@@ -35301,6 +36117,7 @@ export class ListManagedRulesRequest extends $dara.Model {
35301
36117
  riskLevel?: number;
35302
36118
  static names(): { [key: string]: string } {
35303
36119
  return {
36120
+ filterType: 'FilterType',
35304
36121
  keyword: 'Keyword',
35305
36122
  pageNumber: 'PageNumber',
35306
36123
  pageSize: 'PageSize',
@@ -35311,6 +36128,7 @@ export class ListManagedRulesRequest extends $dara.Model {
35311
36128
 
35312
36129
  static types(): { [key: string]: any } {
35313
36130
  return {
36131
+ filterType: 'string',
35314
36132
  keyword: 'string',
35315
36133
  pageNumber: 'number',
35316
36134
  pageSize: 'number',
@@ -39421,13 +40239,13 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
39421
40239
  inputParameters?: { [key: string]: any };
39422
40240
  /**
39423
40241
  * @remarks
39424
- * The intervals at which the rule is triggered. Valid values:
40242
+ * The interval at which the rule is triggered. Valid values:
39425
40243
  *
39426
- * * One_Hour: 1 hour
39427
- * * Three_Hours: 3 hours
39428
- * * Six_Hours: 6 hours
39429
- * * Twelve_Hours: 12 hours
39430
- * * TwentyFour_Hours: 24 hours
40244
+ * * One_Hour
40245
+ * * Three_Hours
40246
+ * * Six_Hours
40247
+ * * Twelve_Hours
40248
+ * * TwentyFour_Hours
39431
40249
  *
39432
40250
  * > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
39433
40251
  *
@@ -39463,6 +40281,17 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
39463
40281
  * lb-5cmbowstbkss9ta03****
39464
40282
  */
39465
40283
  resourceIdsScope?: string;
40284
+ /**
40285
+ * @remarks
40286
+ * The names of the resource to which the rule applies.
40287
+ *
40288
+ * @example
40289
+ * i-xxx
40290
+ *
40291
+ * **if can be null:**
40292
+ * true
40293
+ */
40294
+ resourceNameScope?: string;
39466
40295
  /**
39467
40296
  * @remarks
39468
40297
  * The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
@@ -39473,11 +40302,11 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
39473
40302
  resourceTypesScope?: string[];
39474
40303
  /**
39475
40304
  * @remarks
39476
- * The risk level of the resources that are not compliant with the rule. Valid values:
40305
+ * The risk level of the resources that do not comply with the rule. Valid values:
39477
40306
  *
39478
- * * 1: high risk level
39479
- * * 2: medium risk level
39480
- * * 3: low risk level
40307
+ * * 1: high
40308
+ * * 2: medium
40309
+ * * 3: low
39481
40310
  *
39482
40311
  * @example
39483
40312
  * 3
@@ -39492,10 +40321,15 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
39492
40321
  tag?: UpdateAggregateConfigRuleRequestTag[];
39493
40322
  /**
39494
40323
  * @remarks
39495
- * The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
40324
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
40325
+ *
40326
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
40327
+ *
40328
+ * Values:
40329
+ *
40330
+ * - AND: And.
39496
40331
  *
39497
- * * AND
39498
- * * OR
40332
+ * - OR: Or.
39499
40333
  *
39500
40334
  * @example
39501
40335
  * AND
@@ -39503,22 +40337,30 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
39503
40337
  tagKeyLogicScope?: string;
39504
40338
  /**
39505
40339
  * @remarks
40340
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
40341
+ *
39506
40342
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
39507
40343
  *
39508
40344
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
39509
40345
  *
39510
40346
  * @example
39511
40347
  * ECS
40348
+ *
40349
+ * @deprecated
39512
40350
  */
39513
40351
  tagKeyScope?: string;
39514
40352
  /**
39515
40353
  * @remarks
40354
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
40355
+ *
39516
40356
  * The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
39517
40357
  *
39518
40358
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
39519
40359
  *
39520
40360
  * @example
39521
40361
  * test
40362
+ *
40363
+ * @deprecated
39522
40364
  */
39523
40365
  tagValueScope?: string;
39524
40366
  /**
@@ -39547,6 +40389,7 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
39547
40389
  regionIdsScope: 'RegionIdsScope',
39548
40390
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
39549
40391
  resourceIdsScope: 'ResourceIdsScope',
40392
+ resourceNameScope: 'ResourceNameScope',
39550
40393
  resourceTypesScope: 'ResourceTypesScope',
39551
40394
  riskLevel: 'RiskLevel',
39552
40395
  tag: 'Tag',
@@ -39578,6 +40421,7 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
39578
40421
  regionIdsScope: 'string',
39579
40422
  resourceGroupIdsScope: 'string',
39580
40423
  resourceIdsScope: 'string',
40424
+ resourceNameScope: 'string',
39581
40425
  resourceTypesScope: { 'type': 'array', 'itemType': 'string' },
39582
40426
  riskLevel: 'number',
39583
40427
  tag: { 'type': 'array', 'itemType': UpdateAggregateConfigRuleRequestTag },
@@ -39763,13 +40607,13 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
39763
40607
  inputParametersShrink?: string;
39764
40608
  /**
39765
40609
  * @remarks
39766
- * The intervals at which the rule is triggered. Valid values:
40610
+ * The interval at which the rule is triggered. Valid values:
39767
40611
  *
39768
- * * One_Hour: 1 hour
39769
- * * Three_Hours: 3 hours
39770
- * * Six_Hours: 6 hours
39771
- * * Twelve_Hours: 12 hours
39772
- * * TwentyFour_Hours: 24 hours
40612
+ * * One_Hour
40613
+ * * Three_Hours
40614
+ * * Six_Hours
40615
+ * * Twelve_Hours
40616
+ * * TwentyFour_Hours
39773
40617
  *
39774
40618
  * > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
39775
40619
  *
@@ -39805,6 +40649,17 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
39805
40649
  * lb-5cmbowstbkss9ta03****
39806
40650
  */
39807
40651
  resourceIdsScope?: string;
40652
+ /**
40653
+ * @remarks
40654
+ * The names of the resource to which the rule applies.
40655
+ *
40656
+ * @example
40657
+ * i-xxx
40658
+ *
40659
+ * **if can be null:**
40660
+ * true
40661
+ */
40662
+ resourceNameScope?: string;
39808
40663
  /**
39809
40664
  * @remarks
39810
40665
  * The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
@@ -39815,11 +40670,11 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
39815
40670
  resourceTypesScopeShrink?: string;
39816
40671
  /**
39817
40672
  * @remarks
39818
- * The risk level of the resources that are not compliant with the rule. Valid values:
40673
+ * The risk level of the resources that do not comply with the rule. Valid values:
39819
40674
  *
39820
- * * 1: high risk level
39821
- * * 2: medium risk level
39822
- * * 3: low risk level
40675
+ * * 1: high
40676
+ * * 2: medium
40677
+ * * 3: low
39823
40678
  *
39824
40679
  * @example
39825
40680
  * 3
@@ -39834,10 +40689,15 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
39834
40689
  tagShrink?: string;
39835
40690
  /**
39836
40691
  * @remarks
39837
- * The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
40692
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
40693
+ *
40694
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
39838
40695
  *
39839
- * * AND
39840
- * * OR
40696
+ * Values:
40697
+ *
40698
+ * - AND: And.
40699
+ *
40700
+ * - OR: Or.
39841
40701
  *
39842
40702
  * @example
39843
40703
  * AND
@@ -39845,22 +40705,30 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
39845
40705
  tagKeyLogicScope?: string;
39846
40706
  /**
39847
40707
  * @remarks
40708
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
40709
+ *
39848
40710
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
39849
40711
  *
39850
40712
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
39851
40713
  *
39852
40714
  * @example
39853
40715
  * ECS
40716
+ *
40717
+ * @deprecated
39854
40718
  */
39855
40719
  tagKeyScope?: string;
39856
40720
  /**
39857
40721
  * @remarks
40722
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
40723
+ *
39858
40724
  * The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
39859
40725
  *
39860
40726
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
39861
40727
  *
39862
40728
  * @example
39863
40729
  * test
40730
+ *
40731
+ * @deprecated
39864
40732
  */
39865
40733
  tagValueScope?: string;
39866
40734
  /**
@@ -39889,6 +40757,7 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
39889
40757
  regionIdsScope: 'RegionIdsScope',
39890
40758
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
39891
40759
  resourceIdsScope: 'ResourceIdsScope',
40760
+ resourceNameScope: 'ResourceNameScope',
39892
40761
  resourceTypesScopeShrink: 'ResourceTypesScope',
39893
40762
  riskLevel: 'RiskLevel',
39894
40763
  tagShrink: 'Tag',
@@ -39920,6 +40789,7 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
39920
40789
  regionIdsScope: 'string',
39921
40790
  resourceGroupIdsScope: 'string',
39922
40791
  resourceIdsScope: 'string',
40792
+ resourceNameScope: 'string',
39923
40793
  resourceTypesScopeShrink: 'string',
39924
40794
  riskLevel: 'number',
39925
40795
  tagShrink: 'string',
@@ -40258,6 +41128,20 @@ export class UpdateAggregatorRequest extends $dara.Model {
40258
41128
  * Test_Aggregator_Description
40259
41129
  */
40260
41130
  description?: string;
41131
+ /**
41132
+ * @remarks
41133
+ * The folder ID. Separate multiple folder IDs with commas (,).
41134
+ *
41135
+ * @example
41136
+ * fd-brHdgv****,fd-brHdgk****
41137
+ */
41138
+ folderId?: string;
41139
+ /**
41140
+ * @remarks
41141
+ * The tags of the resource.
41142
+ *
41143
+ * You can add up to 20 tags to a resource.
41144
+ */
40261
41145
  tag?: UpdateAggregatorRequestTag[];
40262
41146
  static names(): { [key: string]: string } {
40263
41147
  return {
@@ -40266,6 +41150,7 @@ export class UpdateAggregatorRequest extends $dara.Model {
40266
41150
  aggregatorName: 'AggregatorName',
40267
41151
  clientToken: 'ClientToken',
40268
41152
  description: 'Description',
41153
+ folderId: 'FolderId',
40269
41154
  tag: 'Tag',
40270
41155
  };
40271
41156
  }
@@ -40277,6 +41162,7 @@ export class UpdateAggregatorRequest extends $dara.Model {
40277
41162
  aggregatorName: 'string',
40278
41163
  clientToken: 'string',
40279
41164
  description: 'string',
41165
+ folderId: 'string',
40280
41166
  tag: { 'type': 'array', 'itemType': UpdateAggregatorRequestTag },
40281
41167
  };
40282
41168
  }
@@ -40347,6 +41233,20 @@ export class UpdateAggregatorShrinkRequest extends $dara.Model {
40347
41233
  * Test_Aggregator_Description
40348
41234
  */
40349
41235
  description?: string;
41236
+ /**
41237
+ * @remarks
41238
+ * The folder ID. Separate multiple folder IDs with commas (,).
41239
+ *
41240
+ * @example
41241
+ * fd-brHdgv****,fd-brHdgk****
41242
+ */
41243
+ folderId?: string;
41244
+ /**
41245
+ * @remarks
41246
+ * The tags of the resource.
41247
+ *
41248
+ * You can add up to 20 tags to a resource.
41249
+ */
40350
41250
  tagShrink?: string;
40351
41251
  static names(): { [key: string]: string } {
40352
41252
  return {
@@ -40355,6 +41255,7 @@ export class UpdateAggregatorShrinkRequest extends $dara.Model {
40355
41255
  aggregatorName: 'AggregatorName',
40356
41256
  clientToken: 'ClientToken',
40357
41257
  description: 'Description',
41258
+ folderId: 'FolderId',
40358
41259
  tagShrink: 'Tag',
40359
41260
  };
40360
41261
  }
@@ -40366,6 +41267,7 @@ export class UpdateAggregatorShrinkRequest extends $dara.Model {
40366
41267
  aggregatorName: 'string',
40367
41268
  clientToken: 'string',
40368
41269
  description: 'string',
41270
+ folderId: 'string',
40369
41271
  tagShrink: 'string',
40370
41272
  };
40371
41273
  }
@@ -40565,6 +41467,12 @@ export class UpdateCompliancePackRequest extends $dara.Model {
40565
41467
  * 1
40566
41468
  */
40567
41469
  riskLevel?: number;
41470
+ /**
41471
+ * @remarks
41472
+ * The tags of the resource.
41473
+ *
41474
+ * You can add up to 20 tags to a resource.
41475
+ */
40568
41476
  tag?: UpdateCompliancePackRequestTag[];
40569
41477
  /**
40570
41478
  * @remarks
@@ -40765,6 +41673,12 @@ export class UpdateCompliancePackShrinkRequest extends $dara.Model {
40765
41673
  * 1
40766
41674
  */
40767
41675
  riskLevel?: number;
41676
+ /**
41677
+ * @remarks
41678
+ * The tags of the resource.
41679
+ *
41680
+ * You can add up to 20 tags to a resource.
41681
+ */
40768
41682
  tagShrink?: string;
40769
41683
  /**
40770
41684
  * @remarks
@@ -41361,6 +42275,17 @@ export class UpdateConfigRuleRequest extends $dara.Model {
41361
42275
  * lb-5cmbowstbkss9ta03****
41362
42276
  */
41363
42277
  resourceIdsScope?: string;
42278
+ /**
42279
+ * @remarks
42280
+ * The names of the resource to which the rule applies.
42281
+ *
42282
+ * @example
42283
+ * i-xxx
42284
+ *
42285
+ * **if can be null:**
42286
+ * true
42287
+ */
42288
+ resourceNameScope?: string;
41364
42289
  /**
41365
42290
  * @remarks
41366
42291
  * The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
@@ -41390,10 +42315,15 @@ export class UpdateConfigRuleRequest extends $dara.Model {
41390
42315
  tag?: UpdateConfigRuleRequestTag[];
41391
42316
  /**
41392
42317
  * @remarks
41393
- * The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
42318
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
41394
42319
  *
41395
- * * AND
41396
- * * OR
42320
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
42321
+ *
42322
+ * Values:
42323
+ *
42324
+ * - AND: And.
42325
+ *
42326
+ * - OR: Or.
41397
42327
  *
41398
42328
  * @example
41399
42329
  * AND
@@ -41401,22 +42331,30 @@ export class UpdateConfigRuleRequest extends $dara.Model {
41401
42331
  tagKeyLogicScope?: string;
41402
42332
  /**
41403
42333
  * @remarks
42334
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
42335
+ *
41404
42336
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
41405
42337
  *
41406
42338
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
41407
42339
  *
41408
42340
  * @example
41409
42341
  * ECS
42342
+ *
42343
+ * @deprecated
41410
42344
  */
41411
42345
  tagKeyScope?: string;
41412
42346
  /**
41413
42347
  * @remarks
42348
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
42349
+ *
41414
42350
  * The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
41415
42351
  *
41416
42352
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
41417
42353
  *
41418
42354
  * @example
41419
42355
  * test
42356
+ *
42357
+ * @deprecated
41420
42358
  */
41421
42359
  tagValueScope?: string;
41422
42360
  /**
@@ -41441,6 +42379,7 @@ export class UpdateConfigRuleRequest extends $dara.Model {
41441
42379
  regionIdsScope: 'RegionIdsScope',
41442
42380
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
41443
42381
  resourceIdsScope: 'ResourceIdsScope',
42382
+ resourceNameScope: 'ResourceNameScope',
41444
42383
  resourceTypesScope: 'ResourceTypesScope',
41445
42384
  riskLevel: 'RiskLevel',
41446
42385
  tag: 'Tag',
@@ -41468,6 +42407,7 @@ export class UpdateConfigRuleRequest extends $dara.Model {
41468
42407
  regionIdsScope: 'string',
41469
42408
  resourceGroupIdsScope: 'string',
41470
42409
  resourceIdsScope: 'string',
42410
+ resourceNameScope: 'string',
41471
42411
  resourceTypesScope: { 'type': 'array', 'itemType': 'string' },
41472
42412
  riskLevel: 'number',
41473
42413
  tag: { 'type': 'array', 'itemType': UpdateConfigRuleRequestTag },
@@ -41648,6 +42588,17 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
41648
42588
  * lb-5cmbowstbkss9ta03****
41649
42589
  */
41650
42590
  resourceIdsScope?: string;
42591
+ /**
42592
+ * @remarks
42593
+ * The names of the resource to which the rule applies.
42594
+ *
42595
+ * @example
42596
+ * i-xxx
42597
+ *
42598
+ * **if can be null:**
42599
+ * true
42600
+ */
42601
+ resourceNameScope?: string;
41651
42602
  /**
41652
42603
  * @remarks
41653
42604
  * The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
@@ -41677,10 +42628,15 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
41677
42628
  tagShrink?: string;
41678
42629
  /**
41679
42630
  * @remarks
41680
- * The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
42631
+ * The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
42632
+ *
42633
+ * It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
42634
+ *
42635
+ * Values:
42636
+ *
42637
+ * - AND: And.
41681
42638
  *
41682
- * * AND
41683
- * * OR
42639
+ * - OR: Or.
41684
42640
  *
41685
42641
  * @example
41686
42642
  * AND
@@ -41688,22 +42644,30 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
41688
42644
  tagKeyLogicScope?: string;
41689
42645
  /**
41690
42646
  * @remarks
42647
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
42648
+ *
41691
42649
  * The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
41692
42650
  *
41693
42651
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
41694
42652
  *
41695
42653
  * @example
41696
42654
  * ECS
42655
+ *
42656
+ * @deprecated
41697
42657
  */
41698
42658
  tagKeyScope?: string;
41699
42659
  /**
41700
42660
  * @remarks
42661
+ * This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
42662
+ *
41701
42663
  * The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
41702
42664
  *
41703
42665
  * > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
41704
42666
  *
41705
42667
  * @example
41706
42668
  * test
42669
+ *
42670
+ * @deprecated
41707
42671
  */
41708
42672
  tagValueScope?: string;
41709
42673
  /**
@@ -41728,6 +42692,7 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
41728
42692
  regionIdsScope: 'RegionIdsScope',
41729
42693
  resourceGroupIdsScope: 'ResourceGroupIdsScope',
41730
42694
  resourceIdsScope: 'ResourceIdsScope',
42695
+ resourceNameScope: 'ResourceNameScope',
41731
42696
  resourceTypesScopeShrink: 'ResourceTypesScope',
41732
42697
  riskLevel: 'RiskLevel',
41733
42698
  tagShrink: 'Tag',
@@ -41755,6 +42720,7 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
41755
42720
  regionIdsScope: 'string',
41756
42721
  resourceGroupIdsScope: 'string',
41757
42722
  resourceIdsScope: 'string',
42723
+ resourceNameScope: 'string',
41758
42724
  resourceTypesScopeShrink: 'string',
41759
42725
  riskLevel: 'number',
41760
42726
  tagShrink: 'string',
@@ -42613,12 +43579,7 @@ export default class Client extends OpenApi {
42613
43579
  reqBodyType: "formData",
42614
43580
  bodyType: "json",
42615
43581
  });
42616
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42617
- return $dara.cast<ActiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveAggregateConfigRulesResponse({}));
42618
- } else {
42619
- return $dara.cast<ActiveAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new ActiveAggregateConfigRulesResponse({}));
42620
- }
42621
-
43582
+ return $dara.cast<ActiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveAggregateConfigRulesResponse({}));
42622
43583
  }
42623
43584
 
42624
43585
  /**
@@ -42671,12 +43632,7 @@ export default class Client extends OpenApi {
42671
43632
  reqBodyType: "formData",
42672
43633
  bodyType: "json",
42673
43634
  });
42674
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42675
- return $dara.cast<ActiveConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveConfigRulesResponse({}));
42676
- } else {
42677
- return $dara.cast<ActiveConfigRulesResponse>(await this.execute(params, req, runtime), new ActiveConfigRulesResponse({}));
42678
- }
42679
-
43635
+ return $dara.cast<ActiveConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveConfigRulesResponse({}));
42680
43636
  }
42681
43637
 
42682
43638
  /**
@@ -42733,12 +43689,7 @@ export default class Client extends OpenApi {
42733
43689
  reqBodyType: "formData",
42734
43690
  bodyType: "json",
42735
43691
  });
42736
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42737
- return $dara.cast<AttachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachAggregateConfigRuleToCompliancePackResponse({}));
42738
- } else {
42739
- return $dara.cast<AttachAggregateConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new AttachAggregateConfigRuleToCompliancePackResponse({}));
42740
- }
42741
-
43692
+ return $dara.cast<AttachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachAggregateConfigRuleToCompliancePackResponse({}));
42742
43693
  }
42743
43694
 
42744
43695
  /**
@@ -42790,12 +43741,7 @@ export default class Client extends OpenApi {
42790
43741
  reqBodyType: "formData",
42791
43742
  bodyType: "json",
42792
43743
  });
42793
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42794
- return $dara.cast<AttachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachConfigRuleToCompliancePackResponse({}));
42795
- } else {
42796
- return $dara.cast<AttachConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new AttachConfigRuleToCompliancePackResponse({}));
42797
- }
42798
-
43744
+ return $dara.cast<AttachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachConfigRuleToCompliancePackResponse({}));
42799
43745
  }
42800
43746
 
42801
43747
  /**
@@ -42848,12 +43794,7 @@ export default class Client extends OpenApi {
42848
43794
  reqBodyType: "formData",
42849
43795
  bodyType: "json",
42850
43796
  });
42851
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42852
- return $dara.cast<CopyCompliancePacksResponse>(await this.callApi(params, req, runtime), new CopyCompliancePacksResponse({}));
42853
- } else {
42854
- return $dara.cast<CopyCompliancePacksResponse>(await this.execute(params, req, runtime), new CopyCompliancePacksResponse({}));
42855
- }
42856
-
43797
+ return $dara.cast<CopyCompliancePacksResponse>(await this.callApi(params, req, runtime), new CopyCompliancePacksResponse({}));
42857
43798
  }
42858
43799
 
42859
43800
  /**
@@ -42903,12 +43844,7 @@ export default class Client extends OpenApi {
42903
43844
  reqBodyType: "formData",
42904
43845
  bodyType: "json",
42905
43846
  });
42906
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42907
- return $dara.cast<CopyConfigRulesResponse>(await this.callApi(params, req, runtime), new CopyConfigRulesResponse({}));
42908
- } else {
42909
- return $dara.cast<CopyConfigRulesResponse>(await this.execute(params, req, runtime), new CopyConfigRulesResponse({}));
42910
- }
42911
-
43847
+ return $dara.cast<CopyConfigRulesResponse>(await this.callApi(params, req, runtime), new CopyConfigRulesResponse({}));
42912
43848
  }
42913
43849
 
42914
43850
  /**
@@ -42950,12 +43886,7 @@ export default class Client extends OpenApi {
42950
43886
  reqBodyType: "formData",
42951
43887
  bodyType: "json",
42952
43888
  });
42953
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
42954
- return $dara.cast<CreateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAdvancedSearchFileResponse({}));
42955
- } else {
42956
- return $dara.cast<CreateAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new CreateAdvancedSearchFileResponse({}));
42957
- }
42958
-
43889
+ return $dara.cast<CreateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAdvancedSearchFileResponse({}));
42959
43890
  }
42960
43891
 
42961
43892
  /**
@@ -43004,12 +43935,7 @@ export default class Client extends OpenApi {
43004
43935
  reqBodyType: "formData",
43005
43936
  bodyType: "json",
43006
43937
  });
43007
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43008
- return $dara.cast<CreateAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAggregateAdvancedSearchFileResponse({}));
43009
- } else {
43010
- return $dara.cast<CreateAggregateAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new CreateAggregateAdvancedSearchFileResponse({}));
43011
- }
43012
-
43938
+ return $dara.cast<CreateAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAggregateAdvancedSearchFileResponse({}));
43013
43939
  }
43014
43940
 
43015
43941
  /**
@@ -43150,12 +44076,7 @@ export default class Client extends OpenApi {
43150
44076
  reqBodyType: "formData",
43151
44077
  bodyType: "json",
43152
44078
  });
43153
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43154
- return $dara.cast<CreateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateAggregateCompliancePackResponse({}));
43155
- } else {
43156
- return $dara.cast<CreateAggregateCompliancePackResponse>(await this.execute(params, req, runtime), new CreateAggregateCompliancePackResponse({}));
43157
- }
43158
-
44079
+ return $dara.cast<CreateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateAggregateCompliancePackResponse({}));
43159
44080
  }
43160
44081
 
43161
44082
  /**
@@ -43251,12 +44172,7 @@ export default class Client extends OpenApi {
43251
44172
  reqBodyType: "formData",
43252
44173
  bodyType: "json",
43253
44174
  });
43254
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43255
- return $dara.cast<CreateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigDeliveryChannelResponse({}));
43256
- } else {
43257
- return $dara.cast<CreateAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new CreateAggregateConfigDeliveryChannelResponse({}));
43258
- }
43259
-
44175
+ return $dara.cast<CreateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigDeliveryChannelResponse({}));
43260
44176
  }
43261
44177
 
43262
44178
  /**
@@ -43303,6 +44219,10 @@ export default class Client extends OpenApi {
43303
44219
  }
43304
44220
 
43305
44221
  let query = { };
44222
+ if (!$dara.isNull(request.resourceNameScope)) {
44223
+ query["ResourceNameScope"] = request.resourceNameScope;
44224
+ }
44225
+
43306
44226
  if (!$dara.isNull(request.tagShrink)) {
43307
44227
  query["Tag"] = request.tagShrink;
43308
44228
  }
@@ -43436,12 +44356,7 @@ export default class Client extends OpenApi {
43436
44356
  reqBodyType: "formData",
43437
44357
  bodyType: "json",
43438
44358
  });
43439
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43440
- return $dara.cast<CreateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigRuleResponse({}));
43441
- } else {
43442
- return $dara.cast<CreateAggregateConfigRuleResponse>(await this.execute(params, req, runtime), new CreateAggregateConfigRuleResponse({}));
43443
- }
43444
-
44359
+ return $dara.cast<CreateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigRuleResponse({}));
43445
44360
  }
43446
44361
 
43447
44362
  /**
@@ -43520,12 +44435,7 @@ export default class Client extends OpenApi {
43520
44435
  reqBodyType: "formData",
43521
44436
  bodyType: "json",
43522
44437
  });
43523
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43524
- return $dara.cast<CreateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new CreateAggregateRemediationResponse({}));
43525
- } else {
43526
- return $dara.cast<CreateAggregateRemediationResponse>(await this.execute(params, req, runtime), new CreateAggregateRemediationResponse({}));
43527
- }
43528
-
44438
+ return $dara.cast<CreateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new CreateAggregateRemediationResponse({}));
43529
44439
  }
43530
44440
 
43531
44441
  /**
@@ -43615,12 +44525,7 @@ export default class Client extends OpenApi {
43615
44525
  reqBodyType: "formData",
43616
44526
  bodyType: "json",
43617
44527
  });
43618
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43619
- return $dara.cast<CreateAggregatorResponse>(await this.callApi(params, req, runtime), new CreateAggregatorResponse({}));
43620
- } else {
43621
- return $dara.cast<CreateAggregatorResponse>(await this.execute(params, req, runtime), new CreateAggregatorResponse({}));
43622
- }
43623
-
44528
+ return $dara.cast<CreateAggregatorResponse>(await this.callApi(params, req, runtime), new CreateAggregatorResponse({}));
43624
44529
  }
43625
44530
 
43626
44531
  /**
@@ -43764,12 +44669,7 @@ export default class Client extends OpenApi {
43764
44669
  reqBodyType: "formData",
43765
44670
  bodyType: "json",
43766
44671
  });
43767
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43768
- return $dara.cast<CreateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateCompliancePackResponse({}));
43769
- } else {
43770
- return $dara.cast<CreateCompliancePackResponse>(await this.execute(params, req, runtime), new CreateCompliancePackResponse({}));
43771
- }
43772
-
44672
+ return $dara.cast<CreateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateCompliancePackResponse({}));
43773
44673
  }
43774
44674
 
43775
44675
  /**
@@ -43862,12 +44762,7 @@ export default class Client extends OpenApi {
43862
44762
  reqBodyType: "formData",
43863
44763
  bodyType: "json",
43864
44764
  });
43865
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
43866
- return $dara.cast<CreateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateConfigDeliveryChannelResponse({}));
43867
- } else {
43868
- return $dara.cast<CreateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new CreateConfigDeliveryChannelResponse({}));
43869
- }
43870
-
44765
+ return $dara.cast<CreateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateConfigDeliveryChannelResponse({}));
43871
44766
  }
43872
44767
 
43873
44768
  /**
@@ -43974,6 +44869,10 @@ export default class Client extends OpenApi {
43974
44869
  body["ResourceIdsScope"] = request.resourceIdsScope;
43975
44870
  }
43976
44871
 
44872
+ if (!$dara.isNull(request.resourceNameScope)) {
44873
+ body["ResourceNameScope"] = request.resourceNameScope;
44874
+ }
44875
+
43977
44876
  if (!$dara.isNull(request.resourceTypesScopeShrink)) {
43978
44877
  body["ResourceTypesScope"] = request.resourceTypesScopeShrink;
43979
44878
  }
@@ -44025,12 +44924,7 @@ export default class Client extends OpenApi {
44025
44924
  reqBodyType: "formData",
44026
44925
  bodyType: "json",
44027
44926
  });
44028
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44029
- return $dara.cast<CreateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateConfigRuleResponse({}));
44030
- } else {
44031
- return $dara.cast<CreateConfigRuleResponse>(await this.execute(params, req, runtime), new CreateConfigRuleResponse({}));
44032
- }
44033
-
44927
+ return $dara.cast<CreateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateConfigRuleResponse({}));
44034
44928
  }
44035
44929
 
44036
44930
  /**
@@ -44122,12 +45016,7 @@ export default class Client extends OpenApi {
44122
45016
  reqBodyType: "formData",
44123
45017
  bodyType: "json",
44124
45018
  });
44125
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44126
- return $dara.cast<CreateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateDeliveryChannelResponse({}));
44127
- } else {
44128
- return $dara.cast<CreateDeliveryChannelResponse>(await this.execute(params, req, runtime), new CreateDeliveryChannelResponse({}));
44129
- }
44130
-
45019
+ return $dara.cast<CreateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateDeliveryChannelResponse({}));
44131
45020
  }
44132
45021
 
44133
45022
  /**
@@ -44202,12 +45091,7 @@ export default class Client extends OpenApi {
44202
45091
  reqBodyType: "formData",
44203
45092
  bodyType: "json",
44204
45093
  });
44205
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44206
- return $dara.cast<CreateRemediationResponse>(await this.callApi(params, req, runtime), new CreateRemediationResponse({}));
44207
- } else {
44208
- return $dara.cast<CreateRemediationResponse>(await this.execute(params, req, runtime), new CreateRemediationResponse({}));
44209
- }
44210
-
45094
+ return $dara.cast<CreateRemediationResponse>(await this.callApi(params, req, runtime), new CreateRemediationResponse({}));
44211
45095
  }
44212
45096
 
44213
45097
  /**
@@ -44266,12 +45150,7 @@ export default class Client extends OpenApi {
44266
45150
  reqBodyType: "formData",
44267
45151
  bodyType: "json",
44268
45152
  });
44269
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44270
- return $dara.cast<DeactiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveAggregateConfigRulesResponse({}));
44271
- } else {
44272
- return $dara.cast<DeactiveAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new DeactiveAggregateConfigRulesResponse({}));
44273
- }
44274
-
45153
+ return $dara.cast<DeactiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveAggregateConfigRulesResponse({}));
44275
45154
  }
44276
45155
 
44277
45156
  /**
@@ -44329,12 +45208,7 @@ export default class Client extends OpenApi {
44329
45208
  reqBodyType: "formData",
44330
45209
  bodyType: "json",
44331
45210
  });
44332
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44333
- return $dara.cast<DeactiveConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveConfigRulesResponse({}));
44334
- } else {
44335
- return $dara.cast<DeactiveConfigRulesResponse>(await this.execute(params, req, runtime), new DeactiveConfigRulesResponse({}));
44336
- }
44337
-
45211
+ return $dara.cast<DeactiveConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveConfigRulesResponse({}));
44338
45212
  }
44339
45213
 
44340
45214
  /**
@@ -44397,12 +45271,7 @@ export default class Client extends OpenApi {
44397
45271
  reqBodyType: "formData",
44398
45272
  bodyType: "json",
44399
45273
  });
44400
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44401
- return $dara.cast<DeleteAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteAggregateCompliancePacksResponse({}));
44402
- } else {
44403
- return $dara.cast<DeleteAggregateCompliancePacksResponse>(await this.execute(params, req, runtime), new DeleteAggregateCompliancePacksResponse({}));
44404
- }
44405
-
45274
+ return $dara.cast<DeleteAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteAggregateCompliancePacksResponse({}));
44406
45275
  }
44407
45276
 
44408
45277
  /**
@@ -44454,12 +45323,7 @@ export default class Client extends OpenApi {
44454
45323
  reqBodyType: "formData",
44455
45324
  bodyType: "json",
44456
45325
  });
44457
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44458
- return $dara.cast<DeleteAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigDeliveryChannelResponse({}));
44459
- } else {
44460
- return $dara.cast<DeleteAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new DeleteAggregateConfigDeliveryChannelResponse({}));
44461
- }
44462
-
45326
+ return $dara.cast<DeleteAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigDeliveryChannelResponse({}));
44463
45327
  }
44464
45328
 
44465
45329
  /**
@@ -44511,12 +45375,7 @@ export default class Client extends OpenApi {
44511
45375
  reqBodyType: "formData",
44512
45376
  bodyType: "json",
44513
45377
  });
44514
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44515
- return $dara.cast<DeleteAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigRulesResponse({}));
44516
- } else {
44517
- return $dara.cast<DeleteAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new DeleteAggregateConfigRulesResponse({}));
44518
- }
44519
-
45378
+ return $dara.cast<DeleteAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigRulesResponse({}));
44520
45379
  }
44521
45380
 
44522
45381
  /**
@@ -44568,12 +45427,7 @@ export default class Client extends OpenApi {
44568
45427
  reqBodyType: "formData",
44569
45428
  bodyType: "json",
44570
45429
  });
44571
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44572
- return $dara.cast<DeleteAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteAggregateRemediationsResponse({}));
44573
- } else {
44574
- return $dara.cast<DeleteAggregateRemediationsResponse>(await this.execute(params, req, runtime), new DeleteAggregateRemediationsResponse({}));
44575
- }
44576
-
45430
+ return $dara.cast<DeleteAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteAggregateRemediationsResponse({}));
44577
45431
  }
44578
45432
 
44579
45433
  /**
@@ -44632,12 +45486,7 @@ export default class Client extends OpenApi {
44632
45486
  reqBodyType: "formData",
44633
45487
  bodyType: "json",
44634
45488
  });
44635
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44636
- return $dara.cast<DeleteAggregatorsResponse>(await this.callApi(params, req, runtime), new DeleteAggregatorsResponse({}));
44637
- } else {
44638
- return $dara.cast<DeleteAggregatorsResponse>(await this.execute(params, req, runtime), new DeleteAggregatorsResponse({}));
44639
- }
44640
-
45489
+ return $dara.cast<DeleteAggregatorsResponse>(await this.callApi(params, req, runtime), new DeleteAggregatorsResponse({}));
44641
45490
  }
44642
45491
 
44643
45492
  /**
@@ -44700,12 +45549,7 @@ export default class Client extends OpenApi {
44700
45549
  reqBodyType: "formData",
44701
45550
  bodyType: "json",
44702
45551
  });
44703
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44704
- return $dara.cast<DeleteCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteCompliancePacksResponse({}));
44705
- } else {
44706
- return $dara.cast<DeleteCompliancePacksResponse>(await this.execute(params, req, runtime), new DeleteCompliancePacksResponse({}));
44707
- }
44708
-
45552
+ return $dara.cast<DeleteCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteCompliancePacksResponse({}));
44709
45553
  }
44710
45554
 
44711
45555
  /**
@@ -44753,12 +45597,7 @@ export default class Client extends OpenApi {
44753
45597
  reqBodyType: "formData",
44754
45598
  bodyType: "json",
44755
45599
  });
44756
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44757
- return $dara.cast<DeleteConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteConfigDeliveryChannelResponse({}));
44758
- } else {
44759
- return $dara.cast<DeleteConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new DeleteConfigDeliveryChannelResponse({}));
44760
- }
44761
-
45600
+ return $dara.cast<DeleteConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteConfigDeliveryChannelResponse({}));
44762
45601
  }
44763
45602
 
44764
45603
  /**
@@ -44806,12 +45645,7 @@ export default class Client extends OpenApi {
44806
45645
  reqBodyType: "formData",
44807
45646
  bodyType: "json",
44808
45647
  });
44809
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44810
- return $dara.cast<DeleteConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteConfigRulesResponse({}));
44811
- } else {
44812
- return $dara.cast<DeleteConfigRulesResponse>(await this.execute(params, req, runtime), new DeleteConfigRulesResponse({}));
44813
- }
44814
-
45648
+ return $dara.cast<DeleteConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteConfigRulesResponse({}));
44815
45649
  }
44816
45650
 
44817
45651
  /**
@@ -44859,12 +45693,7 @@ export default class Client extends OpenApi {
44859
45693
  reqBodyType: "formData",
44860
45694
  bodyType: "json",
44861
45695
  });
44862
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44863
- return $dara.cast<DeleteRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteRemediationsResponse({}));
44864
- } else {
44865
- return $dara.cast<DeleteRemediationsResponse>(await this.execute(params, req, runtime), new DeleteRemediationsResponse({}));
44866
- }
44867
-
45696
+ return $dara.cast<DeleteRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteRemediationsResponse({}));
44868
45697
  }
44869
45698
 
44870
45699
  /**
@@ -44905,12 +45734,7 @@ export default class Client extends OpenApi {
44905
45734
  reqBodyType: "formData",
44906
45735
  bodyType: "json",
44907
45736
  });
44908
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44909
- return $dara.cast<DescribeRemediationResponse>(await this.callApi(params, req, runtime), new DescribeRemediationResponse({}));
44910
- } else {
44911
- return $dara.cast<DescribeRemediationResponse>(await this.execute(params, req, runtime), new DescribeRemediationResponse({}));
44912
- }
44913
-
45737
+ return $dara.cast<DescribeRemediationResponse>(await this.callApi(params, req, runtime), new DescribeRemediationResponse({}));
44914
45738
  }
44915
45739
 
44916
45740
  /**
@@ -44966,12 +45790,7 @@ export default class Client extends OpenApi {
44966
45790
  reqBodyType: "formData",
44967
45791
  bodyType: "json",
44968
45792
  });
44969
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
44970
- return $dara.cast<DetachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachAggregateConfigRuleToCompliancePackResponse({}));
44971
- } else {
44972
- return $dara.cast<DetachAggregateConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new DetachAggregateConfigRuleToCompliancePackResponse({}));
44973
- }
44974
-
45793
+ return $dara.cast<DetachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachAggregateConfigRuleToCompliancePackResponse({}));
44975
45794
  }
44976
45795
 
44977
45796
  /**
@@ -45029,12 +45848,7 @@ export default class Client extends OpenApi {
45029
45848
  reqBodyType: "formData",
45030
45849
  bodyType: "json",
45031
45850
  });
45032
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45033
- return $dara.cast<DetachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachConfigRuleToCompliancePackResponse({}));
45034
- } else {
45035
- return $dara.cast<DetachConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new DetachConfigRuleToCompliancePackResponse({}));
45036
- }
45037
-
45851
+ return $dara.cast<DetachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachConfigRuleToCompliancePackResponse({}));
45038
45852
  }
45039
45853
 
45040
45854
  /**
@@ -45096,12 +45910,7 @@ export default class Client extends OpenApi {
45096
45910
  reqBodyType: "formData",
45097
45911
  bodyType: "json",
45098
45912
  });
45099
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45100
- return $dara.cast<EvaluatePreConfigRulesResponse>(await this.callApi(params, req, runtime), new EvaluatePreConfigRulesResponse({}));
45101
- } else {
45102
- return $dara.cast<EvaluatePreConfigRulesResponse>(await this.execute(params, req, runtime), new EvaluatePreConfigRulesResponse({}));
45103
- }
45104
-
45913
+ return $dara.cast<EvaluatePreConfigRulesResponse>(await this.callApi(params, req, runtime), new EvaluatePreConfigRulesResponse({}));
45105
45914
  }
45106
45915
 
45107
45916
  /**
@@ -45155,12 +45964,7 @@ export default class Client extends OpenApi {
45155
45964
  reqBodyType: "formData",
45156
45965
  bodyType: "json",
45157
45966
  });
45158
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45159
- return $dara.cast<GenerateAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateCompliancePackReportResponse({}));
45160
- } else {
45161
- return $dara.cast<GenerateAggregateCompliancePackReportResponse>(await this.execute(params, req, runtime), new GenerateAggregateCompliancePackReportResponse({}));
45162
- }
45163
-
45967
+ return $dara.cast<GenerateAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateCompliancePackReportResponse({}));
45164
45968
  }
45165
45969
 
45166
45970
  /**
@@ -45218,12 +46022,7 @@ export default class Client extends OpenApi {
45218
46022
  reqBodyType: "formData",
45219
46023
  bodyType: "json",
45220
46024
  });
45221
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45222
- return $dara.cast<GenerateAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateConfigRulesReportResponse({}));
45223
- } else {
45224
- return $dara.cast<GenerateAggregateConfigRulesReportResponse>(await this.execute(params, req, runtime), new GenerateAggregateConfigRulesReportResponse({}));
45225
- }
45226
-
46025
+ return $dara.cast<GenerateAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateConfigRulesReportResponse({}));
45227
46026
  }
45228
46027
 
45229
46028
  /**
@@ -45288,12 +46087,7 @@ export default class Client extends OpenApi {
45288
46087
  reqBodyType: "formData",
45289
46088
  bodyType: "json",
45290
46089
  });
45291
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45292
- return $dara.cast<GenerateAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateAggregateResourceInventoryResponse({}));
45293
- } else {
45294
- return $dara.cast<GenerateAggregateResourceInventoryResponse>(await this.execute(params, req, runtime), new GenerateAggregateResourceInventoryResponse({}));
45295
- }
45296
-
46090
+ return $dara.cast<GenerateAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateAggregateResourceInventoryResponse({}));
45297
46091
  }
45298
46092
 
45299
46093
  /**
@@ -45346,12 +46140,7 @@ export default class Client extends OpenApi {
45346
46140
  reqBodyType: "formData",
45347
46141
  bodyType: "json",
45348
46142
  });
45349
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45350
- return $dara.cast<GenerateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateCompliancePackReportResponse({}));
45351
- } else {
45352
- return $dara.cast<GenerateCompliancePackReportResponse>(await this.execute(params, req, runtime), new GenerateCompliancePackReportResponse({}));
45353
- }
45354
-
46143
+ return $dara.cast<GenerateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateCompliancePackReportResponse({}));
45355
46144
  }
45356
46145
 
45357
46146
  /**
@@ -45405,12 +46194,7 @@ export default class Client extends OpenApi {
45405
46194
  reqBodyType: "formData",
45406
46195
  bodyType: "json",
45407
46196
  });
45408
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45409
- return $dara.cast<GenerateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateConfigRulesReportResponse({}));
45410
- } else {
45411
- return $dara.cast<GenerateConfigRulesReportResponse>(await this.execute(params, req, runtime), new GenerateConfigRulesReportResponse({}));
45412
- }
45413
-
46197
+ return $dara.cast<GenerateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateConfigRulesReportResponse({}));
45414
46198
  }
45415
46199
 
45416
46200
  /**
@@ -45467,12 +46251,7 @@ export default class Client extends OpenApi {
45467
46251
  reqBodyType: "formData",
45468
46252
  bodyType: "json",
45469
46253
  });
45470
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45471
- return $dara.cast<GenerateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateResourceInventoryResponse({}));
45472
- } else {
45473
- return $dara.cast<GenerateResourceInventoryResponse>(await this.execute(params, req, runtime), new GenerateResourceInventoryResponse({}));
45474
- }
45475
-
46254
+ return $dara.cast<GenerateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateResourceInventoryResponse({}));
45476
46255
  }
45477
46256
 
45478
46257
  /**
@@ -45513,12 +46292,7 @@ export default class Client extends OpenApi {
45513
46292
  reqBodyType: "formData",
45514
46293
  bodyType: "json",
45515
46294
  });
45516
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45517
- return $dara.cast<GetAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAdvancedSearchFileResponse({}));
45518
- } else {
45519
- return $dara.cast<GetAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new GetAdvancedSearchFileResponse({}));
45520
- }
45521
-
46295
+ return $dara.cast<GetAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAdvancedSearchFileResponse({}));
45522
46296
  }
45523
46297
 
45524
46298
  /**
@@ -45561,12 +46335,7 @@ export default class Client extends OpenApi {
45561
46335
  reqBodyType: "formData",
45562
46336
  bodyType: "json",
45563
46337
  });
45564
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45565
- return $dara.cast<GetAggregateAccountComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateAccountComplianceByPackResponse({}));
45566
- } else {
45567
- return $dara.cast<GetAggregateAccountComplianceByPackResponse>(await this.execute(params, req, runtime), new GetAggregateAccountComplianceByPackResponse({}));
45568
- }
45569
-
46338
+ return $dara.cast<GetAggregateAccountComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateAccountComplianceByPackResponse({}));
45570
46339
  }
45571
46340
 
45572
46341
  /**
@@ -45611,12 +46380,7 @@ export default class Client extends OpenApi {
45611
46380
  reqBodyType: "formData",
45612
46381
  bodyType: "json",
45613
46382
  });
45614
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45615
- return $dara.cast<GetAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAggregateAdvancedSearchFileResponse({}));
45616
- } else {
45617
- return $dara.cast<GetAggregateAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new GetAggregateAdvancedSearchFileResponse({}));
45618
- }
45619
-
46383
+ return $dara.cast<GetAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAggregateAdvancedSearchFileResponse({}));
45620
46384
  }
45621
46385
 
45622
46386
  /**
@@ -45663,12 +46427,7 @@ export default class Client extends OpenApi {
45663
46427
  reqBodyType: "formData",
45664
46428
  bodyType: "json",
45665
46429
  });
45666
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45667
- return $dara.cast<GetAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackResponse({}));
45668
- } else {
45669
- return $dara.cast<GetAggregateCompliancePackResponse>(await this.execute(params, req, runtime), new GetAggregateCompliancePackResponse({}));
45670
- }
45671
-
46430
+ return $dara.cast<GetAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackResponse({}));
45672
46431
  }
45673
46432
 
45674
46433
  /**
@@ -45713,12 +46472,7 @@ export default class Client extends OpenApi {
45713
46472
  reqBodyType: "formData",
45714
46473
  bodyType: "json",
45715
46474
  });
45716
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45717
- return $dara.cast<GetAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackReportResponse({}));
45718
- } else {
45719
- return $dara.cast<GetAggregateCompliancePackReportResponse>(await this.execute(params, req, runtime), new GetAggregateCompliancePackReportResponse({}));
45720
- }
45721
-
46475
+ return $dara.cast<GetAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackReportResponse({}));
45722
46476
  }
45723
46477
 
45724
46478
  /**
@@ -45767,12 +46521,7 @@ export default class Client extends OpenApi {
45767
46521
  reqBodyType: "formData",
45768
46522
  bodyType: "json",
45769
46523
  });
45770
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45771
- return $dara.cast<GetAggregateComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetAggregateComplianceSummaryResponse({}));
45772
- } else {
45773
- return $dara.cast<GetAggregateComplianceSummaryResponse>(await this.execute(params, req, runtime), new GetAggregateComplianceSummaryResponse({}));
45774
- }
45775
-
46524
+ return $dara.cast<GetAggregateComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetAggregateComplianceSummaryResponse({}));
45776
46525
  }
45777
46526
 
45778
46527
  /**
@@ -45821,12 +46570,7 @@ export default class Client extends OpenApi {
45821
46570
  reqBodyType: "formData",
45822
46571
  bodyType: "json",
45823
46572
  });
45824
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45825
- return $dara.cast<GetAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigDeliveryChannelResponse({}));
45826
- } else {
45827
- return $dara.cast<GetAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new GetAggregateConfigDeliveryChannelResponse({}));
45828
- }
45829
-
46573
+ return $dara.cast<GetAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigDeliveryChannelResponse({}));
45830
46574
  }
45831
46575
 
45832
46576
  /**
@@ -45885,12 +46629,7 @@ export default class Client extends OpenApi {
45885
46629
  reqBodyType: "formData",
45886
46630
  bodyType: "json",
45887
46631
  });
45888
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45889
- return $dara.cast<GetAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleResponse({}));
45890
- } else {
45891
- return $dara.cast<GetAggregateConfigRuleResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRuleResponse({}));
45892
- }
45893
-
46632
+ return $dara.cast<GetAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleResponse({}));
45894
46633
  }
45895
46634
 
45896
46635
  /**
@@ -45934,12 +46673,7 @@ export default class Client extends OpenApi {
45934
46673
  reqBodyType: "formData",
45935
46674
  bodyType: "json",
45936
46675
  });
45937
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45938
- return $dara.cast<GetAggregateConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleComplianceByPackResponse({}));
45939
- } else {
45940
- return $dara.cast<GetAggregateConfigRuleComplianceByPackResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRuleComplianceByPackResponse({}));
45941
- }
45942
-
46676
+ return $dara.cast<GetAggregateConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleComplianceByPackResponse({}));
45943
46677
  }
45944
46678
 
45945
46679
  /**
@@ -45987,12 +46721,7 @@ export default class Client extends OpenApi {
45987
46721
  reqBodyType: "formData",
45988
46722
  bodyType: "json",
45989
46723
  });
45990
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
45991
- return $dara.cast<GetAggregateConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleSummaryByRiskLevelResponse({}));
45992
- } else {
45993
- return $dara.cast<GetAggregateConfigRuleSummaryByRiskLevelResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRuleSummaryByRiskLevelResponse({}));
45994
- }
45995
-
46724
+ return $dara.cast<GetAggregateConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleSummaryByRiskLevelResponse({}));
45996
46725
  }
45997
46726
 
45998
46727
  /**
@@ -46045,12 +46774,7 @@ export default class Client extends OpenApi {
46045
46774
  reqBodyType: "formData",
46046
46775
  bodyType: "json",
46047
46776
  });
46048
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46049
- return $dara.cast<GetAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRulesReportResponse({}));
46050
- } else {
46051
- return $dara.cast<GetAggregateConfigRulesReportResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRulesReportResponse({}));
46052
- }
46053
-
46777
+ return $dara.cast<GetAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRulesReportResponse({}));
46054
46778
  }
46055
46779
 
46056
46780
  /**
@@ -46123,12 +46847,7 @@ export default class Client extends OpenApi {
46123
46847
  reqBodyType: "formData",
46124
46848
  bodyType: "json",
46125
46849
  });
46126
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46127
- return $dara.cast<GetAggregateDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetAggregateDiscoveredResourceResponse({}));
46128
- } else {
46129
- return $dara.cast<GetAggregateDiscoveredResourceResponse>(await this.execute(params, req, runtime), new GetAggregateDiscoveredResourceResponse({}));
46130
- }
46131
-
46850
+ return $dara.cast<GetAggregateDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetAggregateDiscoveredResourceResponse({}));
46132
46851
  }
46133
46852
 
46134
46853
  /**
@@ -46192,12 +46911,7 @@ export default class Client extends OpenApi {
46192
46911
  reqBodyType: "formData",
46193
46912
  bodyType: "json",
46194
46913
  });
46195
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46196
- return $dara.cast<GetAggregateResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByConfigRuleResponse({}));
46197
- } else {
46198
- return $dara.cast<GetAggregateResourceComplianceByConfigRuleResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceByConfigRuleResponse({}));
46199
- }
46200
-
46914
+ return $dara.cast<GetAggregateResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByConfigRuleResponse({}));
46201
46915
  }
46202
46916
 
46203
46917
  /**
@@ -46241,12 +46955,7 @@ export default class Client extends OpenApi {
46241
46955
  reqBodyType: "formData",
46242
46956
  bodyType: "json",
46243
46957
  });
46244
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46245
- return $dara.cast<GetAggregateResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByPackResponse({}));
46246
- } else {
46247
- return $dara.cast<GetAggregateResourceComplianceByPackResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceByPackResponse({}));
46248
- }
46249
-
46958
+ return $dara.cast<GetAggregateResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByPackResponse({}));
46250
46959
  }
46251
46960
 
46252
46961
  /**
@@ -46295,12 +47004,7 @@ export default class Client extends OpenApi {
46295
47004
  reqBodyType: "formData",
46296
47005
  bodyType: "json",
46297
47006
  });
46298
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46299
- return $dara.cast<GetAggregateResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByRegionResponse({}));
46300
- } else {
46301
- return $dara.cast<GetAggregateResourceComplianceGroupByRegionResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceGroupByRegionResponse({}));
46302
- }
46303
-
47007
+ return $dara.cast<GetAggregateResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByRegionResponse({}));
46304
47008
  }
46305
47009
 
46306
47010
  /**
@@ -46346,12 +47050,7 @@ export default class Client extends OpenApi {
46346
47050
  reqBodyType: "formData",
46347
47051
  bodyType: "json",
46348
47052
  });
46349
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46350
- return $dara.cast<GetAggregateResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByResourceTypeResponse({}));
46351
- } else {
46352
- return $dara.cast<GetAggregateResourceComplianceGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceGroupByResourceTypeResponse({}));
46353
- }
46354
-
47053
+ return $dara.cast<GetAggregateResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByResourceTypeResponse({}));
46355
47054
  }
46356
47055
 
46357
47056
  /**
@@ -46392,12 +47091,7 @@ export default class Client extends OpenApi {
46392
47091
  reqBodyType: "formData",
46393
47092
  bodyType: "json",
46394
47093
  });
46395
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46396
- return $dara.cast<GetAggregateResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceTimelineResponse({}));
46397
- } else {
46398
- return $dara.cast<GetAggregateResourceComplianceTimelineResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceTimelineResponse({}));
46399
- }
46400
-
47094
+ return $dara.cast<GetAggregateResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceTimelineResponse({}));
46401
47095
  }
46402
47096
 
46403
47097
  /**
@@ -46441,12 +47135,7 @@ export default class Client extends OpenApi {
46441
47135
  reqBodyType: "formData",
46442
47136
  bodyType: "json",
46443
47137
  });
46444
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46445
- return $dara.cast<GetAggregateResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceConfigurationTimelineResponse({}));
46446
- } else {
46447
- return $dara.cast<GetAggregateResourceConfigurationTimelineResponse>(await this.execute(params, req, runtime), new GetAggregateResourceConfigurationTimelineResponse({}));
46448
- }
46449
-
47138
+ return $dara.cast<GetAggregateResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceConfigurationTimelineResponse({}));
46450
47139
  }
46451
47140
 
46452
47141
  /**
@@ -46510,12 +47199,7 @@ export default class Client extends OpenApi {
46510
47199
  reqBodyType: "formData",
46511
47200
  bodyType: "json",
46512
47201
  });
46513
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46514
- return $dara.cast<GetAggregateResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByRegionResponse({}));
46515
- } else {
46516
- return $dara.cast<GetAggregateResourceCountsGroupByRegionResponse>(await this.execute(params, req, runtime), new GetAggregateResourceCountsGroupByRegionResponse({}));
46517
- }
46518
-
47202
+ return $dara.cast<GetAggregateResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByRegionResponse({}));
46519
47203
  }
46520
47204
 
46521
47205
  /**
@@ -46579,12 +47263,7 @@ export default class Client extends OpenApi {
46579
47263
  reqBodyType: "formData",
46580
47264
  bodyType: "json",
46581
47265
  });
46582
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46583
- return $dara.cast<GetAggregateResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByResourceTypeResponse({}));
46584
- } else {
46585
- return $dara.cast<GetAggregateResourceCountsGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetAggregateResourceCountsGroupByResourceTypeResponse({}));
46586
- }
46587
-
47266
+ return $dara.cast<GetAggregateResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByResourceTypeResponse({}));
46588
47267
  }
46589
47268
 
46590
47269
  /**
@@ -46635,12 +47314,7 @@ export default class Client extends OpenApi {
46635
47314
  reqBodyType: "formData",
46636
47315
  bodyType: "json",
46637
47316
  });
46638
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46639
- return $dara.cast<GetAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceInventoryResponse({}));
46640
- } else {
46641
- return $dara.cast<GetAggregateResourceInventoryResponse>(await this.execute(params, req, runtime), new GetAggregateResourceInventoryResponse({}));
46642
- }
46643
-
47317
+ return $dara.cast<GetAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceInventoryResponse({}));
46644
47318
  }
46645
47319
 
46646
47320
  /**
@@ -46701,12 +47375,7 @@ export default class Client extends OpenApi {
46701
47375
  reqBodyType: "formData",
46702
47376
  bodyType: "json",
46703
47377
  });
46704
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46705
- return $dara.cast<GetAggregatorResponse>(await this.callApi(params, req, runtime), new GetAggregatorResponse({}));
46706
- } else {
46707
- return $dara.cast<GetAggregatorResponse>(await this.execute(params, req, runtime), new GetAggregatorResponse({}));
46708
- }
46709
-
47378
+ return $dara.cast<GetAggregatorResponse>(await this.callApi(params, req, runtime), new GetAggregatorResponse({}));
46710
47379
  }
46711
47380
 
46712
47381
  /**
@@ -46756,12 +47425,7 @@ export default class Client extends OpenApi {
46756
47425
  reqBodyType: "formData",
46757
47426
  bodyType: "json",
46758
47427
  });
46759
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46760
- return $dara.cast<GetCompliancePackResponse>(await this.callApi(params, req, runtime), new GetCompliancePackResponse({}));
46761
- } else {
46762
- return $dara.cast<GetCompliancePackResponse>(await this.execute(params, req, runtime), new GetCompliancePackResponse({}));
46763
- }
46764
-
47428
+ return $dara.cast<GetCompliancePackResponse>(await this.callApi(params, req, runtime), new GetCompliancePackResponse({}));
46765
47429
  }
46766
47430
 
46767
47431
  /**
@@ -46806,12 +47470,7 @@ export default class Client extends OpenApi {
46806
47470
  reqBodyType: "formData",
46807
47471
  bodyType: "json",
46808
47472
  });
46809
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46810
- return $dara.cast<GetCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetCompliancePackReportResponse({}));
46811
- } else {
46812
- return $dara.cast<GetCompliancePackReportResponse>(await this.execute(params, req, runtime), new GetCompliancePackReportResponse({}));
46813
- }
46814
-
47473
+ return $dara.cast<GetCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetCompliancePackReportResponse({}));
46815
47474
  }
46816
47475
 
46817
47476
  /**
@@ -46852,12 +47511,7 @@ export default class Client extends OpenApi {
46852
47511
  reqBodyType: "formData",
46853
47512
  bodyType: "json",
46854
47513
  });
46855
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46856
- return $dara.cast<GetComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetComplianceSummaryResponse({}));
46857
- } else {
46858
- return $dara.cast<GetComplianceSummaryResponse>(await this.execute(params, req, runtime), new GetComplianceSummaryResponse({}));
46859
- }
46860
-
47514
+ return $dara.cast<GetComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetComplianceSummaryResponse({}));
46861
47515
  }
46862
47516
 
46863
47517
  /**
@@ -46900,12 +47554,7 @@ export default class Client extends OpenApi {
46900
47554
  reqBodyType: "formData",
46901
47555
  bodyType: "json",
46902
47556
  });
46903
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46904
- return $dara.cast<GetConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetConfigDeliveryChannelResponse({}));
46905
- } else {
46906
- return $dara.cast<GetConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new GetConfigDeliveryChannelResponse({}));
46907
- }
46908
-
47557
+ return $dara.cast<GetConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetConfigDeliveryChannelResponse({}));
46909
47558
  }
46910
47559
 
46911
47560
  /**
@@ -46960,12 +47609,7 @@ export default class Client extends OpenApi {
46960
47609
  reqBodyType: "formData",
46961
47610
  bodyType: "json",
46962
47611
  });
46963
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
46964
- return $dara.cast<GetConfigRuleResponse>(await this.callApi(params, req, runtime), new GetConfigRuleResponse({}));
46965
- } else {
46966
- return $dara.cast<GetConfigRuleResponse>(await this.execute(params, req, runtime), new GetConfigRuleResponse({}));
46967
- }
46968
-
47612
+ return $dara.cast<GetConfigRuleResponse>(await this.callApi(params, req, runtime), new GetConfigRuleResponse({}));
46969
47613
  }
46970
47614
 
46971
47615
  /**
@@ -47009,12 +47653,7 @@ export default class Client extends OpenApi {
47009
47653
  reqBodyType: "formData",
47010
47654
  bodyType: "json",
47011
47655
  });
47012
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47013
- return $dara.cast<GetConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetConfigRuleComplianceByPackResponse({}));
47014
- } else {
47015
- return $dara.cast<GetConfigRuleComplianceByPackResponse>(await this.execute(params, req, runtime), new GetConfigRuleComplianceByPackResponse({}));
47016
- }
47017
-
47656
+ return $dara.cast<GetConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetConfigRuleComplianceByPackResponse({}));
47018
47657
  }
47019
47658
 
47020
47659
  /**
@@ -47054,12 +47693,7 @@ export default class Client extends OpenApi {
47054
47693
  reqBodyType: "formData",
47055
47694
  bodyType: "json",
47056
47695
  });
47057
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47058
- return $dara.cast<GetConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetConfigRuleSummaryByRiskLevelResponse({}));
47059
- } else {
47060
- return $dara.cast<GetConfigRuleSummaryByRiskLevelResponse>(await this.execute(params, req, runtime), new GetConfigRuleSummaryByRiskLevelResponse({}));
47061
- }
47062
-
47696
+ return $dara.cast<GetConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetConfigRuleSummaryByRiskLevelResponse({}));
47063
47697
  }
47064
47698
 
47065
47699
  /**
@@ -47106,12 +47740,7 @@ export default class Client extends OpenApi {
47106
47740
  reqBodyType: "formData",
47107
47741
  bodyType: "json",
47108
47742
  });
47109
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47110
- return $dara.cast<GetConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetConfigRulesReportResponse({}));
47111
- } else {
47112
- return $dara.cast<GetConfigRulesReportResponse>(await this.execute(params, req, runtime), new GetConfigRulesReportResponse({}));
47113
- }
47114
-
47743
+ return $dara.cast<GetConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetConfigRulesReportResponse({}));
47115
47744
  }
47116
47745
 
47117
47746
  /**
@@ -47152,12 +47781,7 @@ export default class Client extends OpenApi {
47152
47781
  reqBodyType: "formData",
47153
47782
  bodyType: "json",
47154
47783
  });
47155
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47156
- return $dara.cast<GetConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new GetConfigurationRecorderResponse({}));
47157
- } else {
47158
- return $dara.cast<GetConfigurationRecorderResponse>(await this.execute(params, req, runtime), new GetConfigurationRecorderResponse({}));
47159
- }
47160
-
47784
+ return $dara.cast<GetConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new GetConfigurationRecorderResponse({}));
47161
47785
  }
47162
47786
 
47163
47787
  /**
@@ -47215,12 +47839,7 @@ export default class Client extends OpenApi {
47215
47839
  reqBodyType: "formData",
47216
47840
  bodyType: "json",
47217
47841
  });
47218
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47219
- return $dara.cast<GetDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceResponse({}));
47220
- } else {
47221
- return $dara.cast<GetDiscoveredResourceResponse>(await this.execute(params, req, runtime), new GetDiscoveredResourceResponse({}));
47222
- }
47223
-
47842
+ return $dara.cast<GetDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceResponse({}));
47224
47843
  }
47225
47844
 
47226
47845
  /**
@@ -47268,12 +47887,7 @@ export default class Client extends OpenApi {
47268
47887
  reqBodyType: "formData",
47269
47888
  bodyType: "json",
47270
47889
  });
47271
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47272
- return $dara.cast<GetDiscoveredResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByRegionResponse({}));
47273
- } else {
47274
- return $dara.cast<GetDiscoveredResourceCountsGroupByRegionResponse>(await this.execute(params, req, runtime), new GetDiscoveredResourceCountsGroupByRegionResponse({}));
47275
- }
47276
-
47890
+ return $dara.cast<GetDiscoveredResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByRegionResponse({}));
47277
47891
  }
47278
47892
 
47279
47893
  /**
@@ -47321,12 +47935,7 @@ export default class Client extends OpenApi {
47321
47935
  reqBodyType: "formData",
47322
47936
  bodyType: "json",
47323
47937
  });
47324
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47325
- return $dara.cast<GetDiscoveredResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByResourceTypeResponse({}));
47326
- } else {
47327
- return $dara.cast<GetDiscoveredResourceCountsGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetDiscoveredResourceCountsGroupByResourceTypeResponse({}));
47328
- }
47329
-
47938
+ return $dara.cast<GetDiscoveredResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByResourceTypeResponse({}));
47330
47939
  }
47331
47940
 
47332
47941
  /**
@@ -47371,12 +47980,7 @@ export default class Client extends OpenApi {
47371
47980
  reqBodyType: "formData",
47372
47981
  bodyType: "json",
47373
47982
  });
47374
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47375
- return $dara.cast<GetIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new GetIntegratedServiceStatusResponse({}));
47376
- } else {
47377
- return $dara.cast<GetIntegratedServiceStatusResponse>(await this.execute(params, req, runtime), new GetIntegratedServiceStatusResponse({}));
47378
- }
47379
-
47983
+ return $dara.cast<GetIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new GetIntegratedServiceStatusResponse({}));
47380
47984
  }
47381
47985
 
47382
47986
  /**
@@ -47421,12 +48025,7 @@ export default class Client extends OpenApi {
47421
48025
  reqBodyType: "formData",
47422
48026
  bodyType: "json",
47423
48027
  });
47424
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47425
- return $dara.cast<GetManagedRuleResponse>(await this.callApi(params, req, runtime), new GetManagedRuleResponse({}));
47426
- } else {
47427
- return $dara.cast<GetManagedRuleResponse>(await this.execute(params, req, runtime), new GetManagedRuleResponse({}));
47428
- }
47429
-
48028
+ return $dara.cast<GetManagedRuleResponse>(await this.callApi(params, req, runtime), new GetManagedRuleResponse({}));
47430
48029
  }
47431
48030
 
47432
48031
  /**
@@ -47474,12 +48073,7 @@ export default class Client extends OpenApi {
47474
48073
  reqBodyType: "formData",
47475
48074
  bodyType: "json",
47476
48075
  });
47477
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47478
- return $dara.cast<GetRemediationTemplateResponse>(await this.callApi(params, req, runtime), new GetRemediationTemplateResponse({}));
47479
- } else {
47480
- return $dara.cast<GetRemediationTemplateResponse>(await this.execute(params, req, runtime), new GetRemediationTemplateResponse({}));
47481
- }
47482
-
48076
+ return $dara.cast<GetRemediationTemplateResponse>(await this.callApi(params, req, runtime), new GetRemediationTemplateResponse({}));
47483
48077
  }
47484
48078
 
47485
48079
  /**
@@ -47523,12 +48117,7 @@ export default class Client extends OpenApi {
47523
48117
  reqBodyType: "formData",
47524
48118
  bodyType: "json",
47525
48119
  });
47526
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47527
- return $dara.cast<GetResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByConfigRuleResponse({}));
47528
- } else {
47529
- return $dara.cast<GetResourceComplianceByConfigRuleResponse>(await this.execute(params, req, runtime), new GetResourceComplianceByConfigRuleResponse({}));
47530
- }
47531
-
48120
+ return $dara.cast<GetResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByConfigRuleResponse({}));
47532
48121
  }
47533
48122
 
47534
48123
  /**
@@ -47572,12 +48161,7 @@ export default class Client extends OpenApi {
47572
48161
  reqBodyType: "formData",
47573
48162
  bodyType: "json",
47574
48163
  });
47575
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47576
- return $dara.cast<GetResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByPackResponse({}));
47577
- } else {
47578
- return $dara.cast<GetResourceComplianceByPackResponse>(await this.execute(params, req, runtime), new GetResourceComplianceByPackResponse({}));
47579
- }
47580
-
48164
+ return $dara.cast<GetResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByPackResponse({}));
47581
48165
  }
47582
48166
 
47583
48167
  /**
@@ -47622,12 +48206,7 @@ export default class Client extends OpenApi {
47622
48206
  reqBodyType: "formData",
47623
48207
  bodyType: "json",
47624
48208
  });
47625
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47626
- return $dara.cast<GetResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByRegionResponse({}));
47627
- } else {
47628
- return $dara.cast<GetResourceComplianceGroupByRegionResponse>(await this.execute(params, req, runtime), new GetResourceComplianceGroupByRegionResponse({}));
47629
- }
47630
-
48209
+ return $dara.cast<GetResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByRegionResponse({}));
47631
48210
  }
47632
48211
 
47633
48212
  /**
@@ -47669,12 +48248,7 @@ export default class Client extends OpenApi {
47669
48248
  reqBodyType: "formData",
47670
48249
  bodyType: "json",
47671
48250
  });
47672
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47673
- return $dara.cast<GetResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByResourceTypeResponse({}));
47674
- } else {
47675
- return $dara.cast<GetResourceComplianceGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetResourceComplianceGroupByResourceTypeResponse({}));
47676
- }
47677
-
48251
+ return $dara.cast<GetResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByResourceTypeResponse({}));
47678
48252
  }
47679
48253
 
47680
48254
  /**
@@ -47716,12 +48290,7 @@ export default class Client extends OpenApi {
47716
48290
  reqBodyType: "formData",
47717
48291
  bodyType: "json",
47718
48292
  });
47719
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47720
- return $dara.cast<GetResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceTimelineResponse({}));
47721
- } else {
47722
- return $dara.cast<GetResourceComplianceTimelineResponse>(await this.execute(params, req, runtime), new GetResourceComplianceTimelineResponse({}));
47723
- }
47724
-
48293
+ return $dara.cast<GetResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceTimelineResponse({}));
47725
48294
  }
47726
48295
 
47727
48296
  /**
@@ -47766,12 +48335,7 @@ export default class Client extends OpenApi {
47766
48335
  reqBodyType: "formData",
47767
48336
  bodyType: "json",
47768
48337
  });
47769
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47770
- return $dara.cast<GetResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceConfigurationTimelineResponse({}));
47771
- } else {
47772
- return $dara.cast<GetResourceConfigurationTimelineResponse>(await this.execute(params, req, runtime), new GetResourceConfigurationTimelineResponse({}));
47773
- }
47774
-
48338
+ return $dara.cast<GetResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceConfigurationTimelineResponse({}));
47775
48339
  }
47776
48340
 
47777
48341
  /**
@@ -47814,12 +48378,7 @@ export default class Client extends OpenApi {
47814
48378
  reqBodyType: "formData",
47815
48379
  bodyType: "json",
47816
48380
  });
47817
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47818
- return $dara.cast<GetResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetResourceInventoryResponse({}));
47819
- } else {
47820
- return $dara.cast<GetResourceInventoryResponse>(await this.execute(params, req, runtime), new GetResourceInventoryResponse({}));
47821
- }
47822
-
48381
+ return $dara.cast<GetResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetResourceInventoryResponse({}));
47823
48382
  }
47824
48383
 
47825
48384
  /**
@@ -47868,12 +48427,7 @@ export default class Client extends OpenApi {
47868
48427
  reqBodyType: "formData",
47869
48428
  bodyType: "json",
47870
48429
  });
47871
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47872
- return $dara.cast<GetSupportedResourceRelationConfigResponse>(await this.callApi(params, req, runtime), new GetSupportedResourceRelationConfigResponse({}));
47873
- } else {
47874
- return $dara.cast<GetSupportedResourceRelationConfigResponse>(await this.execute(params, req, runtime), new GetSupportedResourceRelationConfigResponse({}));
47875
- }
47876
-
48430
+ return $dara.cast<GetSupportedResourceRelationConfigResponse>(await this.callApi(params, req, runtime), new GetSupportedResourceRelationConfigResponse({}));
47877
48431
  }
47878
48432
 
47879
48433
  /**
@@ -47944,12 +48498,7 @@ export default class Client extends OpenApi {
47944
48498
  reqBodyType: "formData",
47945
48499
  bodyType: "json",
47946
48500
  });
47947
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
47948
- return $dara.cast<IgnoreAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreAggregateEvaluationResultsResponse({}));
47949
- } else {
47950
- return $dara.cast<IgnoreAggregateEvaluationResultsResponse>(await this.execute(params, req, runtime), new IgnoreAggregateEvaluationResultsResponse({}));
47951
- }
47952
-
48501
+ return $dara.cast<IgnoreAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreAggregateEvaluationResultsResponse({}));
47953
48502
  }
47954
48503
 
47955
48504
  /**
@@ -48017,12 +48566,7 @@ export default class Client extends OpenApi {
48017
48566
  reqBodyType: "formData",
48018
48567
  bodyType: "json",
48019
48568
  });
48020
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48021
- return $dara.cast<IgnoreEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreEvaluationResultsResponse({}));
48022
- } else {
48023
- return $dara.cast<IgnoreEvaluationResultsResponse>(await this.execute(params, req, runtime), new IgnoreEvaluationResultsResponse({}));
48024
- }
48025
-
48569
+ return $dara.cast<IgnoreEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreEvaluationResultsResponse({}));
48026
48570
  }
48027
48571
 
48028
48572
  /**
@@ -48093,12 +48637,7 @@ export default class Client extends OpenApi {
48093
48637
  reqBodyType: "formData",
48094
48638
  bodyType: "json",
48095
48639
  });
48096
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48097
- return $dara.cast<ListAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListAggregateCompliancePacksResponse({}));
48098
- } else {
48099
- return $dara.cast<ListAggregateCompliancePacksResponse>(await this.execute(params, req, runtime), new ListAggregateCompliancePacksResponse({}));
48100
- }
48101
-
48640
+ return $dara.cast<ListAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListAggregateCompliancePacksResponse({}));
48102
48641
  }
48103
48642
 
48104
48643
  /**
@@ -48147,12 +48686,7 @@ export default class Client extends OpenApi {
48147
48686
  reqBodyType: "formData",
48148
48687
  bodyType: "json",
48149
48688
  });
48150
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48151
- return $dara.cast<ListAggregateConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigDeliveryChannelsResponse({}));
48152
- } else {
48153
- return $dara.cast<ListAggregateConfigDeliveryChannelsResponse>(await this.execute(params, req, runtime), new ListAggregateConfigDeliveryChannelsResponse({}));
48154
- }
48155
-
48689
+ return $dara.cast<ListAggregateConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigDeliveryChannelsResponse({}));
48156
48690
  }
48157
48691
 
48158
48692
  /**
@@ -48237,12 +48771,7 @@ export default class Client extends OpenApi {
48237
48771
  reqBodyType: "formData",
48238
48772
  bodyType: "json",
48239
48773
  });
48240
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48241
- return $dara.cast<ListAggregateConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationResultsResponse({}));
48242
- } else {
48243
- return $dara.cast<ListAggregateConfigRuleEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListAggregateConfigRuleEvaluationResultsResponse({}));
48244
- }
48245
-
48774
+ return $dara.cast<ListAggregateConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationResultsResponse({}));
48246
48775
  }
48247
48776
 
48248
48777
  /**
@@ -48290,12 +48819,7 @@ export default class Client extends OpenApi {
48290
48819
  reqBodyType: "formData",
48291
48820
  bodyType: "json",
48292
48821
  });
48293
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48294
- return $dara.cast<ListAggregateConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationStatisticsResponse({}));
48295
- } else {
48296
- return $dara.cast<ListAggregateConfigRuleEvaluationStatisticsResponse>(await this.execute(params, req, runtime), new ListAggregateConfigRuleEvaluationStatisticsResponse({}));
48297
- }
48298
-
48822
+ return $dara.cast<ListAggregateConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationStatisticsResponse({}));
48299
48823
  }
48300
48824
 
48301
48825
  /**
@@ -48389,12 +48913,7 @@ export default class Client extends OpenApi {
48389
48913
  reqBodyType: "formData",
48390
48914
  bodyType: "json",
48391
48915
  });
48392
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48393
- return $dara.cast<ListAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRulesResponse({}));
48394
- } else {
48395
- return $dara.cast<ListAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new ListAggregateConfigRulesResponse({}));
48396
- }
48397
-
48916
+ return $dara.cast<ListAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRulesResponse({}));
48398
48917
  }
48399
48918
 
48400
48919
  /**
@@ -48486,12 +49005,7 @@ export default class Client extends OpenApi {
48486
49005
  reqBodyType: "formData",
48487
49006
  bodyType: "json",
48488
49007
  });
48489
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48490
- return $dara.cast<ListAggregateDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListAggregateDiscoveredResourcesResponse({}));
48491
- } else {
48492
- return $dara.cast<ListAggregateDiscoveredResourcesResponse>(await this.execute(params, req, runtime), new ListAggregateDiscoveredResourcesResponse({}));
48493
- }
48494
-
49008
+ return $dara.cast<ListAggregateDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListAggregateDiscoveredResourcesResponse({}));
48495
49009
  }
48496
49010
 
48497
49011
  /**
@@ -48559,12 +49073,7 @@ export default class Client extends OpenApi {
48559
49073
  reqBodyType: "formData",
48560
49074
  bodyType: "json",
48561
49075
  });
48562
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48563
- return $dara.cast<ListAggregateRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationExecutionsResponse({}));
48564
- } else {
48565
- return $dara.cast<ListAggregateRemediationExecutionsResponse>(await this.execute(params, req, runtime), new ListAggregateRemediationExecutionsResponse({}));
48566
- }
48567
-
49076
+ return $dara.cast<ListAggregateRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationExecutionsResponse({}));
48568
49077
  }
48569
49078
 
48570
49079
  /**
@@ -48616,12 +49125,7 @@ export default class Client extends OpenApi {
48616
49125
  reqBodyType: "formData",
48617
49126
  bodyType: "json",
48618
49127
  });
48619
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48620
- return $dara.cast<ListAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationsResponse({}));
48621
- } else {
48622
- return $dara.cast<ListAggregateRemediationsResponse>(await this.execute(params, req, runtime), new ListAggregateRemediationsResponse({}));
48623
- }
48624
-
49128
+ return $dara.cast<ListAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationsResponse({}));
48625
49129
  }
48626
49130
 
48627
49131
  /**
@@ -48693,12 +49197,7 @@ export default class Client extends OpenApi {
48693
49197
  reqBodyType: "formData",
48694
49198
  bodyType: "json",
48695
49199
  });
48696
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48697
- return $dara.cast<ListAggregateResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceEvaluationResultsResponse({}));
48698
- } else {
48699
- return $dara.cast<ListAggregateResourceEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListAggregateResourceEvaluationResultsResponse({}));
48700
- }
48701
-
49200
+ return $dara.cast<ListAggregateResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceEvaluationResultsResponse({}));
48702
49201
  }
48703
49202
 
48704
49203
  /**
@@ -48782,12 +49281,7 @@ export default class Client extends OpenApi {
48782
49281
  reqBodyType: "formData",
48783
49282
  bodyType: "json",
48784
49283
  });
48785
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48786
- return $dara.cast<ListAggregateResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceRelationsResponse({}));
48787
- } else {
48788
- return $dara.cast<ListAggregateResourceRelationsResponse>(await this.execute(params, req, runtime), new ListAggregateResourceRelationsResponse({}));
48789
- }
48790
-
49284
+ return $dara.cast<ListAggregateResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceRelationsResponse({}));
48791
49285
  }
48792
49286
 
48793
49287
  /**
@@ -48843,12 +49337,7 @@ export default class Client extends OpenApi {
48843
49337
  reqBodyType: "formData",
48844
49338
  bodyType: "json",
48845
49339
  });
48846
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48847
- return $dara.cast<ListAggregateResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListAggregateResourcesByAdvancedSearchResponse({}));
48848
- } else {
48849
- return $dara.cast<ListAggregateResourcesByAdvancedSearchResponse>(await this.execute(params, req, runtime), new ListAggregateResourcesByAdvancedSearchResponse({}));
48850
- }
48851
-
49340
+ return $dara.cast<ListAggregateResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListAggregateResourcesByAdvancedSearchResponse({}));
48852
49341
  }
48853
49342
 
48854
49343
  /**
@@ -48914,12 +49403,7 @@ export default class Client extends OpenApi {
48914
49403
  reqBodyType: "formData",
48915
49404
  bodyType: "json",
48916
49405
  });
48917
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48918
- return $dara.cast<ListAggregatorsResponse>(await this.callApi(params, req, runtime), new ListAggregatorsResponse({}));
48919
- } else {
48920
- return $dara.cast<ListAggregatorsResponse>(await this.execute(params, req, runtime), new ListAggregatorsResponse({}));
48921
- }
48922
-
49406
+ return $dara.cast<ListAggregatorsResponse>(await this.callApi(params, req, runtime), new ListAggregatorsResponse({}));
48923
49407
  }
48924
49408
 
48925
49409
  /**
@@ -48979,12 +49463,7 @@ export default class Client extends OpenApi {
48979
49463
  reqBodyType: "formData",
48980
49464
  bodyType: "json",
48981
49465
  });
48982
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
48983
- return $dara.cast<ListCompliancePackTemplatesResponse>(await this.callApi(params, req, runtime), new ListCompliancePackTemplatesResponse({}));
48984
- } else {
48985
- return $dara.cast<ListCompliancePackTemplatesResponse>(await this.execute(params, req, runtime), new ListCompliancePackTemplatesResponse({}));
48986
- }
48987
-
49466
+ return $dara.cast<ListCompliancePackTemplatesResponse>(await this.callApi(params, req, runtime), new ListCompliancePackTemplatesResponse({}));
48988
49467
  }
48989
49468
 
48990
49469
  /**
@@ -49050,12 +49529,7 @@ export default class Client extends OpenApi {
49050
49529
  reqBodyType: "formData",
49051
49530
  bodyType: "json",
49052
49531
  });
49053
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49054
- return $dara.cast<ListCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListCompliancePacksResponse({}));
49055
- } else {
49056
- return $dara.cast<ListCompliancePacksResponse>(await this.execute(params, req, runtime), new ListCompliancePacksResponse({}));
49057
- }
49058
-
49532
+ return $dara.cast<ListCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListCompliancePacksResponse({}));
49059
49533
  }
49060
49534
 
49061
49535
  /**
@@ -49100,12 +49574,7 @@ export default class Client extends OpenApi {
49100
49574
  reqBodyType: "formData",
49101
49575
  bodyType: "json",
49102
49576
  });
49103
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49104
- return $dara.cast<ListConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListConfigDeliveryChannelsResponse({}));
49105
- } else {
49106
- return $dara.cast<ListConfigDeliveryChannelsResponse>(await this.execute(params, req, runtime), new ListConfigDeliveryChannelsResponse({}));
49107
- }
49108
-
49577
+ return $dara.cast<ListConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListConfigDeliveryChannelsResponse({}));
49109
49578
  }
49110
49579
 
49111
49580
  /**
@@ -49146,12 +49615,7 @@ export default class Client extends OpenApi {
49146
49615
  reqBodyType: "formData",
49147
49616
  bodyType: "json",
49148
49617
  });
49149
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49150
- return $dara.cast<ListConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationResultsResponse({}));
49151
- } else {
49152
- return $dara.cast<ListConfigRuleEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListConfigRuleEvaluationResultsResponse({}));
49153
- }
49154
-
49618
+ return $dara.cast<ListConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationResultsResponse({}));
49155
49619
  }
49156
49620
 
49157
49621
  /**
@@ -49188,12 +49652,7 @@ export default class Client extends OpenApi {
49188
49652
  reqBodyType: "formData",
49189
49653
  bodyType: "json",
49190
49654
  });
49191
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49192
- return $dara.cast<ListConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationStatisticsResponse({}));
49193
- } else {
49194
- return $dara.cast<ListConfigRuleEvaluationStatisticsResponse>(await this.execute(params, req, runtime), new ListConfigRuleEvaluationStatisticsResponse({}));
49195
- }
49196
-
49655
+ return $dara.cast<ListConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationStatisticsResponse({}));
49197
49656
  }
49198
49657
 
49199
49658
  /**
@@ -49278,12 +49737,7 @@ export default class Client extends OpenApi {
49278
49737
  reqBodyType: "formData",
49279
49738
  bodyType: "json",
49280
49739
  });
49281
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49282
- return $dara.cast<ListConfigRulesResponse>(await this.callApi(params, req, runtime), new ListConfigRulesResponse({}));
49283
- } else {
49284
- return $dara.cast<ListConfigRulesResponse>(await this.execute(params, req, runtime), new ListConfigRulesResponse({}));
49285
- }
49286
-
49740
+ return $dara.cast<ListConfigRulesResponse>(await this.callApi(params, req, runtime), new ListConfigRulesResponse({}));
49287
49741
  }
49288
49742
 
49289
49743
  /**
@@ -49363,12 +49817,7 @@ export default class Client extends OpenApi {
49363
49817
  reqBodyType: "formData",
49364
49818
  bodyType: "json",
49365
49819
  });
49366
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49367
- return $dara.cast<ListDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListDiscoveredResourcesResponse({}));
49368
- } else {
49369
- return $dara.cast<ListDiscoveredResourcesResponse>(await this.execute(params, req, runtime), new ListDiscoveredResourcesResponse({}));
49370
- }
49371
-
49820
+ return $dara.cast<ListDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListDiscoveredResourcesResponse({}));
49372
49821
  }
49373
49822
 
49374
49823
  /**
@@ -49408,12 +49857,7 @@ export default class Client extends OpenApi {
49408
49857
  reqBodyType: "formData",
49409
49858
  bodyType: "json",
49410
49859
  });
49411
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49412
- return $dara.cast<ListIntegratedServiceResponse>(await this.callApi(params, req, runtime), new ListIntegratedServiceResponse({}));
49413
- } else {
49414
- return $dara.cast<ListIntegratedServiceResponse>(await this.execute(params, req, runtime), new ListIntegratedServiceResponse({}));
49415
- }
49416
-
49860
+ return $dara.cast<ListIntegratedServiceResponse>(await this.callApi(params, req, runtime), new ListIntegratedServiceResponse({}));
49417
49861
  }
49418
49862
 
49419
49863
  /**
@@ -49444,6 +49888,10 @@ export default class Client extends OpenApi {
49444
49888
  async listManagedRulesWithOptions(request: ListManagedRulesRequest, runtime: $dara.RuntimeOptions): Promise<ListManagedRulesResponse> {
49445
49889
  request.validate();
49446
49890
  let query = { };
49891
+ if (!$dara.isNull(request.filterType)) {
49892
+ query["FilterType"] = request.filterType;
49893
+ }
49894
+
49447
49895
  if (!$dara.isNull(request.keyword)) {
49448
49896
  query["Keyword"] = request.keyword;
49449
49897
  }
@@ -49478,12 +49926,7 @@ export default class Client extends OpenApi {
49478
49926
  reqBodyType: "formData",
49479
49927
  bodyType: "json",
49480
49928
  });
49481
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49482
- return $dara.cast<ListManagedRulesResponse>(await this.callApi(params, req, runtime), new ListManagedRulesResponse({}));
49483
- } else {
49484
- return $dara.cast<ListManagedRulesResponse>(await this.execute(params, req, runtime), new ListManagedRulesResponse({}));
49485
- }
49486
-
49929
+ return $dara.cast<ListManagedRulesResponse>(await this.callApi(params, req, runtime), new ListManagedRulesResponse({}));
49487
49930
  }
49488
49931
 
49489
49932
  /**
@@ -49549,12 +49992,7 @@ export default class Client extends OpenApi {
49549
49992
  reqBodyType: "formData",
49550
49993
  bodyType: "json",
49551
49994
  });
49552
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49553
- return $dara.cast<ListPreManagedRulesResponse>(await this.callApi(params, req, runtime), new ListPreManagedRulesResponse({}));
49554
- } else {
49555
- return $dara.cast<ListPreManagedRulesResponse>(await this.execute(params, req, runtime), new ListPreManagedRulesResponse({}));
49556
- }
49557
-
49995
+ return $dara.cast<ListPreManagedRulesResponse>(await this.callApi(params, req, runtime), new ListPreManagedRulesResponse({}));
49558
49996
  }
49559
49997
 
49560
49998
  /**
@@ -49615,12 +50053,7 @@ export default class Client extends OpenApi {
49615
50053
  reqBodyType: "formData",
49616
50054
  bodyType: "json",
49617
50055
  });
49618
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49619
- return $dara.cast<ListRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListRemediationExecutionsResponse({}));
49620
- } else {
49621
- return $dara.cast<ListRemediationExecutionsResponse>(await this.execute(params, req, runtime), new ListRemediationExecutionsResponse({}));
49622
- }
49623
-
50056
+ return $dara.cast<ListRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListRemediationExecutionsResponse({}));
49624
50057
  }
49625
50058
 
49626
50059
  /**
@@ -49680,12 +50113,7 @@ export default class Client extends OpenApi {
49680
50113
  reqBodyType: "formData",
49681
50114
  bodyType: "json",
49682
50115
  });
49683
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49684
- return $dara.cast<ListRemediationTemplatesResponse>(await this.callApi(params, req, runtime), new ListRemediationTemplatesResponse({}));
49685
- } else {
49686
- return $dara.cast<ListRemediationTemplatesResponse>(await this.execute(params, req, runtime), new ListRemediationTemplatesResponse({}));
49687
- }
49688
-
50116
+ return $dara.cast<ListRemediationTemplatesResponse>(await this.callApi(params, req, runtime), new ListRemediationTemplatesResponse({}));
49689
50117
  }
49690
50118
 
49691
50119
  /**
@@ -49741,12 +50169,7 @@ export default class Client extends OpenApi {
49741
50169
  reqBodyType: "formData",
49742
50170
  bodyType: "json",
49743
50171
  });
49744
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49745
- return $dara.cast<ListRemediationsResponse>(await this.callApi(params, req, runtime), new ListRemediationsResponse({}));
49746
- } else {
49747
- return $dara.cast<ListRemediationsResponse>(await this.execute(params, req, runtime), new ListRemediationsResponse({}));
49748
- }
49749
-
50172
+ return $dara.cast<ListRemediationsResponse>(await this.callApi(params, req, runtime), new ListRemediationsResponse({}));
49750
50173
  }
49751
50174
 
49752
50175
  /**
@@ -49814,12 +50237,7 @@ export default class Client extends OpenApi {
49814
50237
  reqBodyType: "formData",
49815
50238
  bodyType: "json",
49816
50239
  });
49817
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49818
- return $dara.cast<ListResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListResourceEvaluationResultsResponse({}));
49819
- } else {
49820
- return $dara.cast<ListResourceEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListResourceEvaluationResultsResponse({}));
49821
- }
49822
-
50240
+ return $dara.cast<ListResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListResourceEvaluationResultsResponse({}));
49823
50241
  }
49824
50242
 
49825
50243
  /**
@@ -49896,12 +50314,7 @@ export default class Client extends OpenApi {
49896
50314
  reqBodyType: "formData",
49897
50315
  bodyType: "json",
49898
50316
  });
49899
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49900
- return $dara.cast<ListResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListResourceRelationsResponse({}));
49901
- } else {
49902
- return $dara.cast<ListResourceRelationsResponse>(await this.execute(params, req, runtime), new ListResourceRelationsResponse({}));
49903
- }
49904
-
50317
+ return $dara.cast<ListResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListResourceRelationsResponse({}));
49905
50318
  }
49906
50319
 
49907
50320
  /**
@@ -49954,12 +50367,7 @@ export default class Client extends OpenApi {
49954
50367
  reqBodyType: "formData",
49955
50368
  bodyType: "json",
49956
50369
  });
49957
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
49958
- return $dara.cast<ListResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListResourcesByAdvancedSearchResponse({}));
49959
- } else {
49960
- return $dara.cast<ListResourcesByAdvancedSearchResponse>(await this.execute(params, req, runtime), new ListResourcesByAdvancedSearchResponse({}));
49961
- }
49962
-
50370
+ return $dara.cast<ListResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListResourcesByAdvancedSearchResponse({}));
49963
50371
  }
49964
50372
 
49965
50373
  /**
@@ -50015,12 +50423,7 @@ export default class Client extends OpenApi {
50015
50423
  reqBodyType: "formData",
50016
50424
  bodyType: "json",
50017
50425
  });
50018
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50019
- return $dara.cast<ListSupportedProductsResponse>(await this.callApi(params, req, runtime), new ListSupportedProductsResponse({}));
50020
- } else {
50021
- return $dara.cast<ListSupportedProductsResponse>(await this.execute(params, req, runtime), new ListSupportedProductsResponse({}));
50022
- }
50023
-
50426
+ return $dara.cast<ListSupportedProductsResponse>(await this.callApi(params, req, runtime), new ListSupportedProductsResponse({}));
50024
50427
  }
50025
50428
 
50026
50429
  /**
@@ -50087,12 +50490,7 @@ export default class Client extends OpenApi {
50087
50490
  reqBodyType: "formData",
50088
50491
  bodyType: "json",
50089
50492
  });
50090
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50091
- return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
50092
- } else {
50093
- return $dara.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
50094
- }
50095
-
50493
+ return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
50096
50494
  }
50097
50495
 
50098
50496
  /**
@@ -50145,12 +50543,7 @@ export default class Client extends OpenApi {
50145
50543
  reqBodyType: "formData",
50146
50544
  bodyType: "json",
50147
50545
  });
50148
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50149
- return $dara.cast<PutEvaluationsResponse>(await this.callApi(params, req, runtime), new PutEvaluationsResponse({}));
50150
- } else {
50151
- return $dara.cast<PutEvaluationsResponse>(await this.execute(params, req, runtime), new PutEvaluationsResponse({}));
50152
- }
50153
-
50546
+ return $dara.cast<PutEvaluationsResponse>(await this.callApi(params, req, runtime), new PutEvaluationsResponse({}));
50154
50547
  }
50155
50548
 
50156
50549
  /**
@@ -50215,12 +50608,7 @@ export default class Client extends OpenApi {
50215
50608
  reqBodyType: "formData",
50216
50609
  bodyType: "json",
50217
50610
  });
50218
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50219
- return $dara.cast<RevertAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertAggregateEvaluationResultsResponse({}));
50220
- } else {
50221
- return $dara.cast<RevertAggregateEvaluationResultsResponse>(await this.execute(params, req, runtime), new RevertAggregateEvaluationResultsResponse({}));
50222
- }
50223
-
50611
+ return $dara.cast<RevertAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertAggregateEvaluationResultsResponse({}));
50224
50612
  }
50225
50613
 
50226
50614
  /**
@@ -50284,12 +50672,7 @@ export default class Client extends OpenApi {
50284
50672
  reqBodyType: "formData",
50285
50673
  bodyType: "json",
50286
50674
  });
50287
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50288
- return $dara.cast<RevertEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertEvaluationResultsResponse({}));
50289
- } else {
50290
- return $dara.cast<RevertEvaluationResultsResponse>(await this.execute(params, req, runtime), new RevertEvaluationResultsResponse({}));
50291
- }
50292
-
50675
+ return $dara.cast<RevertEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertEvaluationResultsResponse({}));
50293
50676
  }
50294
50677
 
50295
50678
  /**
@@ -50353,12 +50736,7 @@ export default class Client extends OpenApi {
50353
50736
  reqBodyType: "formData",
50354
50737
  bodyType: "json",
50355
50738
  });
50356
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50357
- return $dara.cast<StartAggregateConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartAggregateConfigRuleEvaluationResponse({}));
50358
- } else {
50359
- return $dara.cast<StartAggregateConfigRuleEvaluationResponse>(await this.execute(params, req, runtime), new StartAggregateConfigRuleEvaluationResponse({}));
50360
- }
50361
-
50739
+ return $dara.cast<StartAggregateConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartAggregateConfigRuleEvaluationResponse({}));
50362
50740
  }
50363
50741
 
50364
50742
  /**
@@ -50415,12 +50793,7 @@ export default class Client extends OpenApi {
50415
50793
  reqBodyType: "formData",
50416
50794
  bodyType: "json",
50417
50795
  });
50418
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50419
- return $dara.cast<StartAggregateRemediationResponse>(await this.callApi(params, req, runtime), new StartAggregateRemediationResponse({}));
50420
- } else {
50421
- return $dara.cast<StartAggregateRemediationResponse>(await this.execute(params, req, runtime), new StartAggregateRemediationResponse({}));
50422
- }
50423
-
50796
+ return $dara.cast<StartAggregateRemediationResponse>(await this.callApi(params, req, runtime), new StartAggregateRemediationResponse({}));
50424
50797
  }
50425
50798
 
50426
50799
  /**
@@ -50476,12 +50849,7 @@ export default class Client extends OpenApi {
50476
50849
  reqBodyType: "formData",
50477
50850
  bodyType: "json",
50478
50851
  });
50479
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50480
- return $dara.cast<StartConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartConfigRuleEvaluationResponse({}));
50481
- } else {
50482
- return $dara.cast<StartConfigRuleEvaluationResponse>(await this.execute(params, req, runtime), new StartConfigRuleEvaluationResponse({}));
50483
- }
50484
-
50852
+ return $dara.cast<StartConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartConfigRuleEvaluationResponse({}));
50485
50853
  }
50486
50854
 
50487
50855
  /**
@@ -50521,12 +50889,7 @@ export default class Client extends OpenApi {
50521
50889
  reqBodyType: "formData",
50522
50890
  bodyType: "json",
50523
50891
  });
50524
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50525
- return $dara.cast<StartConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StartConfigurationRecorderResponse({}));
50526
- } else {
50527
- return $dara.cast<StartConfigurationRecorderResponse>(await this.execute(params, req, runtime), new StartConfigurationRecorderResponse({}));
50528
- }
50529
-
50892
+ return $dara.cast<StartConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StartConfigurationRecorderResponse({}));
50530
50893
  }
50531
50894
 
50532
50895
  /**
@@ -50572,12 +50935,7 @@ export default class Client extends OpenApi {
50572
50935
  reqBodyType: "formData",
50573
50936
  bodyType: "json",
50574
50937
  });
50575
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50576
- return $dara.cast<StartRemediationResponse>(await this.callApi(params, req, runtime), new StartRemediationResponse({}));
50577
- } else {
50578
- return $dara.cast<StartRemediationResponse>(await this.execute(params, req, runtime), new StartRemediationResponse({}));
50579
- }
50580
-
50938
+ return $dara.cast<StartRemediationResponse>(await this.callApi(params, req, runtime), new StartRemediationResponse({}));
50581
50939
  }
50582
50940
 
50583
50941
  /**
@@ -50617,12 +50975,7 @@ export default class Client extends OpenApi {
50617
50975
  reqBodyType: "formData",
50618
50976
  bodyType: "json",
50619
50977
  });
50620
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50621
- return $dara.cast<StopConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StopConfigurationRecorderResponse({}));
50622
- } else {
50623
- return $dara.cast<StopConfigurationRecorderResponse>(await this.execute(params, req, runtime), new StopConfigurationRecorderResponse({}));
50624
- }
50625
-
50978
+ return $dara.cast<StopConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StopConfigurationRecorderResponse({}));
50626
50979
  }
50627
50980
 
50628
50981
  /**
@@ -50683,12 +51036,7 @@ export default class Client extends OpenApi {
50683
51036
  reqBodyType: "formData",
50684
51037
  bodyType: "json",
50685
51038
  });
50686
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50687
- return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
50688
- } else {
50689
- return $dara.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
50690
- }
50691
-
51039
+ return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
50692
51040
  }
50693
51041
 
50694
51042
  /**
@@ -50746,12 +51094,7 @@ export default class Client extends OpenApi {
50746
51094
  reqBodyType: "formData",
50747
51095
  bodyType: "json",
50748
51096
  });
50749
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50750
- return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
50751
- } else {
50752
- return $dara.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
50753
- }
50754
-
51097
+ return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
50755
51098
  }
50756
51099
 
50757
51100
  /**
@@ -50881,12 +51224,7 @@ export default class Client extends OpenApi {
50881
51224
  reqBodyType: "formData",
50882
51225
  bodyType: "json",
50883
51226
  });
50884
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50885
- return $dara.cast<UpdateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateAggregateCompliancePackResponse({}));
50886
- } else {
50887
- return $dara.cast<UpdateAggregateCompliancePackResponse>(await this.execute(params, req, runtime), new UpdateAggregateCompliancePackResponse({}));
50888
- }
50889
-
51227
+ return $dara.cast<UpdateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateAggregateCompliancePackResponse({}));
50890
51228
  }
50891
51229
 
50892
51230
  /**
@@ -50986,12 +51324,7 @@ export default class Client extends OpenApi {
50986
51324
  reqBodyType: "formData",
50987
51325
  bodyType: "json",
50988
51326
  });
50989
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
50990
- return $dara.cast<UpdateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigDeliveryChannelResponse({}));
50991
- } else {
50992
- return $dara.cast<UpdateAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new UpdateAggregateConfigDeliveryChannelResponse({}));
50993
- }
50994
-
51327
+ return $dara.cast<UpdateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigDeliveryChannelResponse({}));
50995
51328
  }
50996
51329
 
50997
51330
  /**
@@ -51117,6 +51450,10 @@ export default class Client extends OpenApi {
51117
51450
  body["ResourceIdsScope"] = request.resourceIdsScope;
51118
51451
  }
51119
51452
 
51453
+ if (!$dara.isNull(request.resourceNameScope)) {
51454
+ body["ResourceNameScope"] = request.resourceNameScope;
51455
+ }
51456
+
51120
51457
  if (!$dara.isNull(request.resourceTypesScopeShrink)) {
51121
51458
  body["ResourceTypesScope"] = request.resourceTypesScopeShrink;
51122
51459
  }
@@ -51160,12 +51497,7 @@ export default class Client extends OpenApi {
51160
51497
  reqBodyType: "formData",
51161
51498
  bodyType: "json",
51162
51499
  });
51163
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51164
- return $dara.cast<UpdateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigRuleResponse({}));
51165
- } else {
51166
- return $dara.cast<UpdateAggregateConfigRuleResponse>(await this.execute(params, req, runtime), new UpdateAggregateConfigRuleResponse({}));
51167
- }
51168
-
51500
+ return $dara.cast<UpdateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigRuleResponse({}));
51169
51501
  }
51170
51502
 
51171
51503
  /**
@@ -51237,12 +51569,7 @@ export default class Client extends OpenApi {
51237
51569
  reqBodyType: "formData",
51238
51570
  bodyType: "json",
51239
51571
  });
51240
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51241
- return $dara.cast<UpdateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateAggregateRemediationResponse({}));
51242
- } else {
51243
- return $dara.cast<UpdateAggregateRemediationResponse>(await this.execute(params, req, runtime), new UpdateAggregateRemediationResponse({}));
51244
- }
51245
-
51572
+ return $dara.cast<UpdateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateAggregateRemediationResponse({}));
51246
51573
  }
51247
51574
 
51248
51575
  /**
@@ -51307,6 +51634,10 @@ export default class Client extends OpenApi {
51307
51634
  body["Description"] = request.description;
51308
51635
  }
51309
51636
 
51637
+ if (!$dara.isNull(request.folderId)) {
51638
+ body["FolderId"] = request.folderId;
51639
+ }
51640
+
51310
51641
  let req = new $OpenApiUtil.OpenApiRequest({
51311
51642
  query: OpenApiUtil.query(query),
51312
51643
  body: OpenApiUtil.parseToMap(body),
@@ -51322,12 +51653,7 @@ export default class Client extends OpenApi {
51322
51653
  reqBodyType: "formData",
51323
51654
  bodyType: "json",
51324
51655
  });
51325
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51326
- return $dara.cast<UpdateAggregatorResponse>(await this.callApi(params, req, runtime), new UpdateAggregatorResponse({}));
51327
- } else {
51328
- return $dara.cast<UpdateAggregatorResponse>(await this.execute(params, req, runtime), new UpdateAggregatorResponse({}));
51329
- }
51330
-
51656
+ return $dara.cast<UpdateAggregatorResponse>(await this.callApi(params, req, runtime), new UpdateAggregatorResponse({}));
51331
51657
  }
51332
51658
 
51333
51659
  /**
@@ -51456,12 +51782,7 @@ export default class Client extends OpenApi {
51456
51782
  reqBodyType: "formData",
51457
51783
  bodyType: "json",
51458
51784
  });
51459
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51460
- return $dara.cast<UpdateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateCompliancePackResponse({}));
51461
- } else {
51462
- return $dara.cast<UpdateCompliancePackResponse>(await this.execute(params, req, runtime), new UpdateCompliancePackResponse({}));
51463
- }
51464
-
51785
+ return $dara.cast<UpdateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateCompliancePackResponse({}));
51465
51786
  }
51466
51787
 
51467
51788
  /**
@@ -51557,12 +51878,7 @@ export default class Client extends OpenApi {
51557
51878
  reqBodyType: "formData",
51558
51879
  bodyType: "json",
51559
51880
  });
51560
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51561
- return $dara.cast<UpdateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateConfigDeliveryChannelResponse({}));
51562
- } else {
51563
- return $dara.cast<UpdateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new UpdateConfigDeliveryChannelResponse({}));
51564
- }
51565
-
51881
+ return $dara.cast<UpdateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateConfigDeliveryChannelResponse({}));
51566
51882
  }
51567
51883
 
51568
51884
  /**
@@ -51672,6 +51988,10 @@ export default class Client extends OpenApi {
51672
51988
  body["ResourceIdsScope"] = request.resourceIdsScope;
51673
51989
  }
51674
51990
 
51991
+ if (!$dara.isNull(request.resourceNameScope)) {
51992
+ body["ResourceNameScope"] = request.resourceNameScope;
51993
+ }
51994
+
51675
51995
  if (!$dara.isNull(request.resourceTypesScopeShrink)) {
51676
51996
  body["ResourceTypesScope"] = request.resourceTypesScopeShrink;
51677
51997
  }
@@ -51715,12 +52035,7 @@ export default class Client extends OpenApi {
51715
52035
  reqBodyType: "formData",
51716
52036
  bodyType: "json",
51717
52037
  });
51718
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51719
- return $dara.cast<UpdateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateConfigRuleResponse({}));
51720
- } else {
51721
- return $dara.cast<UpdateConfigRuleResponse>(await this.execute(params, req, runtime), new UpdateConfigRuleResponse({}));
51722
- }
51723
-
52038
+ return $dara.cast<UpdateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateConfigRuleResponse({}));
51724
52039
  }
51725
52040
 
51726
52041
  /**
@@ -51768,12 +52083,7 @@ export default class Client extends OpenApi {
51768
52083
  reqBodyType: "formData",
51769
52084
  bodyType: "json",
51770
52085
  });
51771
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51772
- return $dara.cast<UpdateConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new UpdateConfigurationRecorderResponse({}));
51773
- } else {
51774
- return $dara.cast<UpdateConfigurationRecorderResponse>(await this.execute(params, req, runtime), new UpdateConfigurationRecorderResponse({}));
51775
- }
51776
-
52086
+ return $dara.cast<UpdateConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new UpdateConfigurationRecorderResponse({}));
51777
52087
  }
51778
52088
 
51779
52089
  /**
@@ -51868,12 +52178,7 @@ export default class Client extends OpenApi {
51868
52178
  reqBodyType: "formData",
51869
52179
  bodyType: "json",
51870
52180
  });
51871
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51872
- return $dara.cast<UpdateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateDeliveryChannelResponse({}));
51873
- } else {
51874
- return $dara.cast<UpdateDeliveryChannelResponse>(await this.execute(params, req, runtime), new UpdateDeliveryChannelResponse({}));
51875
- }
51876
-
52181
+ return $dara.cast<UpdateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateDeliveryChannelResponse({}));
51877
52182
  }
51878
52183
 
51879
52184
  /**
@@ -51933,12 +52238,7 @@ export default class Client extends OpenApi {
51933
52238
  reqBodyType: "formData",
51934
52239
  bodyType: "json",
51935
52240
  });
51936
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
51937
- return $dara.cast<UpdateIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new UpdateIntegratedServiceStatusResponse({}));
51938
- } else {
51939
- return $dara.cast<UpdateIntegratedServiceStatusResponse>(await this.execute(params, req, runtime), new UpdateIntegratedServiceStatusResponse({}));
51940
- }
51941
-
52241
+ return $dara.cast<UpdateIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new UpdateIntegratedServiceStatusResponse({}));
51942
52242
  }
51943
52243
 
51944
52244
  /**
@@ -52007,12 +52307,7 @@ export default class Client extends OpenApi {
52007
52307
  reqBodyType: "formData",
52008
52308
  bodyType: "json",
52009
52309
  });
52010
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
52011
- return $dara.cast<UpdateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateRemediationResponse({}));
52012
- } else {
52013
- return $dara.cast<UpdateRemediationResponse>(await this.execute(params, req, runtime), new UpdateRemediationResponse({}));
52014
- }
52015
-
52310
+ return $dara.cast<UpdateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateRemediationResponse({}));
52016
52311
  }
52017
52312
 
52018
52313
  /**