@alicloud/config20200907 3.0.12 → 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/dist/client.d.ts +270 -64
- package/dist/client.js +155 -834
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +425 -898
package/src/client.ts
CHANGED
|
@@ -4981,7 +4981,7 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
4981
4981
|
resourceIdsScope?: string;
|
|
4982
4982
|
/**
|
|
4983
4983
|
* @remarks
|
|
4984
|
-
* The names of the resource
|
|
4984
|
+
* The names of the resource to which the rule applies.
|
|
4985
4985
|
*
|
|
4986
4986
|
* @example
|
|
4987
4987
|
* i-xxx
|
|
@@ -5017,17 +5017,18 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
5017
5017
|
source?: GetAggregateConfigRuleResponseBodyConfigRuleSource;
|
|
5018
5018
|
/**
|
|
5019
5019
|
* @remarks
|
|
5020
|
-
*
|
|
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.
|
|
5021
5023
|
*
|
|
5022
|
-
*
|
|
5024
|
+
* Values:
|
|
5023
5025
|
*
|
|
5024
|
-
*
|
|
5025
|
-
*
|
|
5026
|
+
* - AND: And.
|
|
5027
|
+
*
|
|
5028
|
+
* - OR: Or.
|
|
5026
5029
|
*
|
|
5027
5030
|
* @example
|
|
5028
5031
|
* AND
|
|
5029
|
-
*
|
|
5030
|
-
* @deprecated
|
|
5031
5032
|
*/
|
|
5032
5033
|
tagKeyLogicScope?: string;
|
|
5033
5034
|
/**
|
|
@@ -8755,6 +8756,12 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
8755
8756
|
*/
|
|
8756
8757
|
resourceIdsScope?: string;
|
|
8757
8758
|
/**
|
|
8759
|
+
* @remarks
|
|
8760
|
+
* The names of the resource to which the rule applies.
|
|
8761
|
+
*
|
|
8762
|
+
* @example
|
|
8763
|
+
* i-xxx
|
|
8764
|
+
*
|
|
8758
8765
|
* **if can be null:**
|
|
8759
8766
|
* true
|
|
8760
8767
|
*/
|
|
@@ -8791,21 +8798,27 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
8791
8798
|
source?: GetConfigRuleResponseBodyConfigRuleSource;
|
|
8792
8799
|
/**
|
|
8793
8800
|
* @remarks
|
|
8794
|
-
*
|
|
8801
|
+
* When retrieving details of rules created using the parameter `TagsScope`, this field will not be returned.
|
|
8795
8802
|
*
|
|
8796
|
-
*
|
|
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.
|
|
8797
8810
|
*
|
|
8798
8811
|
* @example
|
|
8799
8812
|
* 120886317861****
|
|
8800
|
-
*
|
|
8801
|
-
* @deprecated
|
|
8802
8813
|
*/
|
|
8803
8814
|
tagKeyLogicScope?: string;
|
|
8804
8815
|
/**
|
|
8805
8816
|
* @remarks
|
|
8817
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
8818
|
+
*
|
|
8806
8819
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
8807
8820
|
*
|
|
8808
|
-
* >
|
|
8821
|
+
* > The TagKeyScope and `TagValueScope` parameters are returned at the same time.``
|
|
8809
8822
|
*
|
|
8810
8823
|
* @example
|
|
8811
8824
|
* RAM
|
|
@@ -8815,9 +8828,11 @@ export class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
8815
8828
|
tagKeyScope?: string;
|
|
8816
8829
|
/**
|
|
8817
8830
|
* @remarks
|
|
8818
|
-
*
|
|
8831
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
8832
|
+
*
|
|
8833
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
8819
8834
|
*
|
|
8820
|
-
* >
|
|
8835
|
+
* > The TagKeyScope and `TagValueScope` parameters are returned at the same time.``
|
|
8821
8836
|
*
|
|
8822
8837
|
* @example
|
|
8823
8838
|
* MFA
|
|
@@ -11495,6 +11510,11 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
|
|
|
11495
11510
|
* 1624869012713
|
|
11496
11511
|
*/
|
|
11497
11512
|
configRuleInvokedTimestamp?: number;
|
|
11513
|
+
/**
|
|
11514
|
+
* @example
|
|
11515
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
11516
|
+
*/
|
|
11517
|
+
evaluationId?: string;
|
|
11498
11518
|
/**
|
|
11499
11519
|
* @remarks
|
|
11500
11520
|
* The identifying information about the compliance evaluation result.
|
|
@@ -11511,6 +11531,11 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
|
|
|
11511
11531
|
* ScheduledNotification
|
|
11512
11532
|
*/
|
|
11513
11533
|
invokingEventMessageType?: string;
|
|
11534
|
+
/**
|
|
11535
|
+
* @example
|
|
11536
|
+
* 1744696393000
|
|
11537
|
+
*/
|
|
11538
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
11514
11539
|
/**
|
|
11515
11540
|
* @remarks
|
|
11516
11541
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -11547,8 +11572,10 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
|
|
|
11547
11572
|
annotation: 'Annotation',
|
|
11548
11573
|
complianceType: 'ComplianceType',
|
|
11549
11574
|
configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
|
|
11575
|
+
evaluationId: 'EvaluationId',
|
|
11550
11576
|
evaluationResultIdentifier: 'EvaluationResultIdentifier',
|
|
11551
11577
|
invokingEventMessageType: 'InvokingEventMessageType',
|
|
11578
|
+
lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
|
|
11552
11579
|
remediationEnabled: 'RemediationEnabled',
|
|
11553
11580
|
resultRecordedTimestamp: 'ResultRecordedTimestamp',
|
|
11554
11581
|
riskLevel: 'RiskLevel',
|
|
@@ -11560,8 +11587,10 @@ export class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResul
|
|
|
11560
11587
|
annotation: 'string',
|
|
11561
11588
|
complianceType: 'string',
|
|
11562
11589
|
configRuleInvokedTimestamp: 'number',
|
|
11590
|
+
evaluationId: 'string',
|
|
11563
11591
|
evaluationResultIdentifier: ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
|
|
11564
11592
|
invokingEventMessageType: 'string',
|
|
11593
|
+
lastNonCompliantRecordTimestamp: 'number',
|
|
11565
11594
|
remediationEnabled: 'boolean',
|
|
11566
11595
|
resultRecordedTimestamp: 'number',
|
|
11567
11596
|
riskLevel: 'number',
|
|
@@ -12261,6 +12290,13 @@ export class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfi
|
|
|
12261
12290
|
* {\\"key1\\":[\\"value2\\"]}
|
|
12262
12291
|
*/
|
|
12263
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
|
+
*/
|
|
12264
12300
|
updateTime?: number;
|
|
12265
12301
|
/**
|
|
12266
12302
|
* @remarks
|
|
@@ -12318,7 +12354,7 @@ export class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfi
|
|
|
12318
12354
|
export class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfiles extends $dara.Model {
|
|
12319
12355
|
/**
|
|
12320
12356
|
* @remarks
|
|
12321
|
-
* The
|
|
12357
|
+
* The details of the resources.
|
|
12322
12358
|
*/
|
|
12323
12359
|
discoveredResourceProfileList?: ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfilesDiscoveredResourceProfileList[];
|
|
12324
12360
|
/**
|
|
@@ -12838,6 +12874,11 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
|
|
|
12838
12874
|
* 1624932227157
|
|
12839
12875
|
*/
|
|
12840
12876
|
configRuleInvokedTimestamp?: number;
|
|
12877
|
+
/**
|
|
12878
|
+
* @example
|
|
12879
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
12880
|
+
*/
|
|
12881
|
+
evaluationId?: string;
|
|
12841
12882
|
/**
|
|
12842
12883
|
* @remarks
|
|
12843
12884
|
* The identifying information about the compliance evaluation result.
|
|
@@ -12854,6 +12895,11 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
|
|
|
12854
12895
|
* ScheduledNotification
|
|
12855
12896
|
*/
|
|
12856
12897
|
invokingEventMessageType?: string;
|
|
12898
|
+
/**
|
|
12899
|
+
* @example
|
|
12900
|
+
* 1744696665000
|
|
12901
|
+
*/
|
|
12902
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
12857
12903
|
/**
|
|
12858
12904
|
* @remarks
|
|
12859
12905
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -12890,8 +12936,10 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
|
|
|
12890
12936
|
annotation: 'Annotation',
|
|
12891
12937
|
complianceType: 'ComplianceType',
|
|
12892
12938
|
configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
|
|
12939
|
+
evaluationId: 'EvaluationId',
|
|
12893
12940
|
evaluationResultIdentifier: 'EvaluationResultIdentifier',
|
|
12894
12941
|
invokingEventMessageType: 'InvokingEventMessageType',
|
|
12942
|
+
lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
|
|
12895
12943
|
remediationEnabled: 'RemediationEnabled',
|
|
12896
12944
|
resultRecordedTimestamp: 'ResultRecordedTimestamp',
|
|
12897
12945
|
riskLevel: 'RiskLevel',
|
|
@@ -12903,8 +12951,10 @@ export class ListAggregateResourceEvaluationResultsResponseBodyEvaluationResults
|
|
|
12903
12951
|
annotation: 'string',
|
|
12904
12952
|
complianceType: 'string',
|
|
12905
12953
|
configRuleInvokedTimestamp: 'number',
|
|
12954
|
+
evaluationId: 'string',
|
|
12906
12955
|
evaluationResultIdentifier: ListAggregateResourceEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
|
|
12907
12956
|
invokingEventMessageType: 'string',
|
|
12957
|
+
lastNonCompliantRecordTimestamp: 'number',
|
|
12908
12958
|
remediationEnabled: 'boolean',
|
|
12909
12959
|
resultRecordedTimestamp: 'number',
|
|
12910
12960
|
riskLevel: 'number',
|
|
@@ -14444,6 +14494,11 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
|
|
|
14444
14494
|
* 1622802307081
|
|
14445
14495
|
*/
|
|
14446
14496
|
configRuleInvokedTimestamp?: number;
|
|
14497
|
+
/**
|
|
14498
|
+
* @example
|
|
14499
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
14500
|
+
*/
|
|
14501
|
+
evaluationId?: string;
|
|
14447
14502
|
/**
|
|
14448
14503
|
* @remarks
|
|
14449
14504
|
* The identifying information about the compliance evaluation result.
|
|
@@ -14461,6 +14516,11 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
|
|
|
14461
14516
|
* ConfigurationItemChangeNotification
|
|
14462
14517
|
*/
|
|
14463
14518
|
invokingEventMessageType?: string;
|
|
14519
|
+
/**
|
|
14520
|
+
* @example
|
|
14521
|
+
* 1744696665000
|
|
14522
|
+
*/
|
|
14523
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
14464
14524
|
/**
|
|
14465
14525
|
* @remarks
|
|
14466
14526
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -14497,8 +14557,10 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
|
|
|
14497
14557
|
annotation: 'Annotation',
|
|
14498
14558
|
complianceType: 'ComplianceType',
|
|
14499
14559
|
configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
|
|
14560
|
+
evaluationId: 'EvaluationId',
|
|
14500
14561
|
evaluationResultIdentifier: 'EvaluationResultIdentifier',
|
|
14501
14562
|
invokingEventMessageType: 'InvokingEventMessageType',
|
|
14563
|
+
lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
|
|
14502
14564
|
remediationEnabled: 'RemediationEnabled',
|
|
14503
14565
|
resultRecordedTimestamp: 'ResultRecordedTimestamp',
|
|
14504
14566
|
riskLevel: 'RiskLevel',
|
|
@@ -14510,8 +14572,10 @@ export class ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluat
|
|
|
14510
14572
|
annotation: 'string',
|
|
14511
14573
|
complianceType: 'string',
|
|
14512
14574
|
configRuleInvokedTimestamp: 'number',
|
|
14575
|
+
evaluationId: 'string',
|
|
14513
14576
|
evaluationResultIdentifier: ListConfigRuleEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
|
|
14514
14577
|
invokingEventMessageType: 'string',
|
|
14578
|
+
lastNonCompliantRecordTimestamp: 'number',
|
|
14515
14579
|
remediationEnabled: 'boolean',
|
|
14516
14580
|
resultRecordedTimestamp: 'number',
|
|
14517
14581
|
riskLevel: 'number',
|
|
@@ -15143,6 +15207,13 @@ export class ListDiscoveredResourcesResponseBodyDiscoveredResourceProfilesDiscov
|
|
|
15143
15207
|
* {\\"key1\\":[\\"value2\\"]}
|
|
15144
15208
|
*/
|
|
15145
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
|
+
*/
|
|
15146
15217
|
updateTime?: number;
|
|
15147
15218
|
/**
|
|
15148
15219
|
* @remarks
|
|
@@ -16210,6 +16281,11 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
|
|
|
16210
16281
|
* 1624932227157
|
|
16211
16282
|
*/
|
|
16212
16283
|
configRuleInvokedTimestamp?: number;
|
|
16284
|
+
/**
|
|
16285
|
+
* @example
|
|
16286
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
16287
|
+
*/
|
|
16288
|
+
evaluationId?: string;
|
|
16213
16289
|
/**
|
|
16214
16290
|
* @remarks
|
|
16215
16291
|
* The identifying information about the compliance evaluation result.
|
|
@@ -16227,6 +16303,11 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
|
|
|
16227
16303
|
* ScheduledNotification
|
|
16228
16304
|
*/
|
|
16229
16305
|
invokingEventMessageType?: string;
|
|
16306
|
+
/**
|
|
16307
|
+
* @example
|
|
16308
|
+
* 1744696393000
|
|
16309
|
+
*/
|
|
16310
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
16230
16311
|
/**
|
|
16231
16312
|
* @remarks
|
|
16232
16313
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -16263,8 +16344,10 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
|
|
|
16263
16344
|
annotation: 'Annotation',
|
|
16264
16345
|
complianceType: 'ComplianceType',
|
|
16265
16346
|
configRuleInvokedTimestamp: 'ConfigRuleInvokedTimestamp',
|
|
16347
|
+
evaluationId: 'EvaluationId',
|
|
16266
16348
|
evaluationResultIdentifier: 'EvaluationResultIdentifier',
|
|
16267
16349
|
invokingEventMessageType: 'InvokingEventMessageType',
|
|
16350
|
+
lastNonCompliantRecordTimestamp: 'LastNonCompliantRecordTimestamp',
|
|
16268
16351
|
remediationEnabled: 'RemediationEnabled',
|
|
16269
16352
|
resultRecordedTimestamp: 'ResultRecordedTimestamp',
|
|
16270
16353
|
riskLevel: 'RiskLevel',
|
|
@@ -16276,8 +16359,10 @@ export class ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluatio
|
|
|
16276
16359
|
annotation: 'string',
|
|
16277
16360
|
complianceType: 'string',
|
|
16278
16361
|
configRuleInvokedTimestamp: 'number',
|
|
16362
|
+
evaluationId: 'string',
|
|
16279
16363
|
evaluationResultIdentifier: ListResourceEvaluationResultsResponseBodyEvaluationResultsEvaluationResultListEvaluationResultIdentifier,
|
|
16280
16364
|
invokingEventMessageType: 'string',
|
|
16365
|
+
lastNonCompliantRecordTimestamp: 'number',
|
|
16281
16366
|
remediationEnabled: 'boolean',
|
|
16282
16367
|
resultRecordedTimestamp: 'number',
|
|
16283
16368
|
riskLevel: 'number',
|
|
@@ -20336,6 +20421,9 @@ export class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
20336
20421
|
*/
|
|
20337
20422
|
resourceIdsScope?: string;
|
|
20338
20423
|
/**
|
|
20424
|
+
* @remarks
|
|
20425
|
+
* The names of the resource to which the rule applies.
|
|
20426
|
+
*
|
|
20339
20427
|
* @example
|
|
20340
20428
|
* i-xxx
|
|
20341
20429
|
*
|
|
@@ -20402,17 +20490,18 @@ export class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
20402
20490
|
tag?: CreateAggregateConfigRuleRequestTag[];
|
|
20403
20491
|
/**
|
|
20404
20492
|
* @remarks
|
|
20405
|
-
*
|
|
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`.
|
|
20406
20496
|
*
|
|
20407
|
-
*
|
|
20497
|
+
* Values:
|
|
20408
20498
|
*
|
|
20409
|
-
*
|
|
20410
|
-
*
|
|
20499
|
+
* - AND: And.
|
|
20500
|
+
*
|
|
20501
|
+
* - OR: Or.
|
|
20411
20502
|
*
|
|
20412
20503
|
* @example
|
|
20413
20504
|
* AND
|
|
20414
|
-
*
|
|
20415
|
-
* @deprecated
|
|
20416
20505
|
*/
|
|
20417
20506
|
tagKeyLogicScope?: string;
|
|
20418
20507
|
/**
|
|
@@ -20730,6 +20819,9 @@ export class CreateAggregateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
20730
20819
|
*/
|
|
20731
20820
|
resourceIdsScope?: string;
|
|
20732
20821
|
/**
|
|
20822
|
+
* @remarks
|
|
20823
|
+
* The names of the resource to which the rule applies.
|
|
20824
|
+
*
|
|
20733
20825
|
* @example
|
|
20734
20826
|
* i-xxx
|
|
20735
20827
|
*
|
|
@@ -20796,17 +20888,18 @@ export class CreateAggregateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
20796
20888
|
tagShrink?: string;
|
|
20797
20889
|
/**
|
|
20798
20890
|
* @remarks
|
|
20799
|
-
*
|
|
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`.
|
|
20892
|
+
*
|
|
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:
|
|
20800
20896
|
*
|
|
20801
|
-
*
|
|
20897
|
+
* - AND: And.
|
|
20802
20898
|
*
|
|
20803
|
-
*
|
|
20804
|
-
* * OR
|
|
20899
|
+
* - OR: Or.
|
|
20805
20900
|
*
|
|
20806
20901
|
* @example
|
|
20807
20902
|
* AND
|
|
20808
|
-
*
|
|
20809
|
-
* @deprecated
|
|
20810
20903
|
*/
|
|
20811
20904
|
tagKeyLogicScope?: string;
|
|
20812
20905
|
/**
|
|
@@ -22448,6 +22541,12 @@ export class CreateConfigRuleRequest extends $dara.Model {
|
|
|
22448
22541
|
*/
|
|
22449
22542
|
resourceIdsScope?: string;
|
|
22450
22543
|
/**
|
|
22544
|
+
* @remarks
|
|
22545
|
+
* The names of the resource to which the rule applies.
|
|
22546
|
+
*
|
|
22547
|
+
* @example
|
|
22548
|
+
* i-xxx
|
|
22549
|
+
*
|
|
22451
22550
|
* **if can be null:**
|
|
22452
22551
|
* true
|
|
22453
22552
|
*/
|
|
@@ -22511,15 +22610,18 @@ export class CreateConfigRuleRequest extends $dara.Model {
|
|
|
22511
22610
|
tag?: CreateConfigRuleRequestTag[];
|
|
22512
22611
|
/**
|
|
22513
22612
|
* @remarks
|
|
22514
|
-
* The logical relationship
|
|
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:
|
|
22618
|
+
*
|
|
22619
|
+
* - AND: And.
|
|
22515
22620
|
*
|
|
22516
|
-
*
|
|
22517
|
-
* * OR
|
|
22621
|
+
* - OR: Or.
|
|
22518
22622
|
*
|
|
22519
22623
|
* @example
|
|
22520
22624
|
* AND
|
|
22521
|
-
*
|
|
22522
|
-
* @deprecated
|
|
22523
22625
|
*/
|
|
22524
22626
|
tagKeyLogicScope?: string;
|
|
22525
22627
|
/**
|
|
@@ -22767,6 +22869,12 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
22767
22869
|
*/
|
|
22768
22870
|
resourceIdsScope?: string;
|
|
22769
22871
|
/**
|
|
22872
|
+
* @remarks
|
|
22873
|
+
* The names of the resource to which the rule applies.
|
|
22874
|
+
*
|
|
22875
|
+
* @example
|
|
22876
|
+
* i-xxx
|
|
22877
|
+
*
|
|
22770
22878
|
* **if can be null:**
|
|
22771
22879
|
* true
|
|
22772
22880
|
*/
|
|
@@ -22830,15 +22938,18 @@ export class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
22830
22938
|
tagShrink?: string;
|
|
22831
22939
|
/**
|
|
22832
22940
|
* @remarks
|
|
22833
|
-
* The logical relationship
|
|
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`.
|
|
22834
22942
|
*
|
|
22835
|
-
*
|
|
22836
|
-
*
|
|
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:
|
|
22946
|
+
*
|
|
22947
|
+
* - AND: And.
|
|
22948
|
+
*
|
|
22949
|
+
* - OR: Or.
|
|
22837
22950
|
*
|
|
22838
22951
|
* @example
|
|
22839
22952
|
* AND
|
|
22840
|
-
*
|
|
22841
|
-
* @deprecated
|
|
22842
22953
|
*/
|
|
22843
22954
|
tagKeyLogicScope?: string;
|
|
22844
22955
|
/**
|
|
@@ -27575,7 +27686,7 @@ export class GetAggregateDiscoveredResourceRequest extends $dara.Model {
|
|
|
27575
27686
|
region?: string;
|
|
27576
27687
|
/**
|
|
27577
27688
|
* @remarks
|
|
27578
|
-
* 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.
|
|
27579
27690
|
*
|
|
27580
27691
|
* @example
|
|
27581
27692
|
* 100931896542****
|
|
@@ -28490,7 +28601,7 @@ export class GetAggregateResourceConfigurationTimelineRequest extends $dara.Mode
|
|
|
28490
28601
|
region?: string;
|
|
28491
28602
|
/**
|
|
28492
28603
|
* @remarks
|
|
28493
|
-
* The ID of the Alibaba Cloud account to which the resource in the account group
|
|
28604
|
+
* Required. The ID of the Alibaba Cloud account to which the specified resource belongs in the account group.
|
|
28494
28605
|
*
|
|
28495
28606
|
* @example
|
|
28496
28607
|
* 100931896542****
|
|
@@ -33387,7 +33498,25 @@ export class ListAggregateDiscoveredResourcesRequest extends $dara.Model {
|
|
|
33387
33498
|
* ca-c560626622af0005****
|
|
33388
33499
|
*/
|
|
33389
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
|
+
*/
|
|
33390
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
|
+
*/
|
|
33391
33520
|
excludeResourceTypes?: string;
|
|
33392
33521
|
/**
|
|
33393
33522
|
* @remarks
|
|
@@ -33457,6 +33586,17 @@ export class ListAggregateDiscoveredResourcesRequest extends $dara.Model {
|
|
|
33457
33586
|
* ACS::ECS::NetworkInterface
|
|
33458
33587
|
*/
|
|
33459
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
|
+
*/
|
|
33460
33600
|
startUpdateTimestamp?: number;
|
|
33461
33601
|
static names(): { [key: string]: string } {
|
|
33462
33602
|
return {
|
|
@@ -33504,7 +33644,7 @@ export class ListAggregateDiscoveredResourcesRequest extends $dara.Model {
|
|
|
33504
33644
|
export class ListAggregateDiscoveredResourcesResponseBody extends $dara.Model {
|
|
33505
33645
|
/**
|
|
33506
33646
|
* @remarks
|
|
33507
|
-
* The
|
|
33647
|
+
* The information about the resources.
|
|
33508
33648
|
*/
|
|
33509
33649
|
discoveredResourceProfiles?: ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfiles;
|
|
33510
33650
|
/**
|
|
@@ -35639,7 +35779,25 @@ export class ListConfigRulesResponse extends $dara.Model {
|
|
|
35639
35779
|
}
|
|
35640
35780
|
|
|
35641
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
|
+
*/
|
|
35642
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
|
+
*/
|
|
35643
35801
|
excludeResourceTypes?: string;
|
|
35644
35802
|
/**
|
|
35645
35803
|
* @remarks
|
|
@@ -35697,6 +35855,17 @@ export class ListDiscoveredResourcesRequest extends $dara.Model {
|
|
|
35697
35855
|
* ACS::ECS::NetworkInterface
|
|
35698
35856
|
*/
|
|
35699
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
|
+
*/
|
|
35700
35869
|
startUpdateTimestamp?: number;
|
|
35701
35870
|
static names(): { [key: string]: string } {
|
|
35702
35871
|
return {
|
|
@@ -35886,6 +36055,17 @@ export class ListIntegratedServiceResponse extends $dara.Model {
|
|
|
35886
36055
|
}
|
|
35887
36056
|
|
|
35888
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
|
+
*/
|
|
35889
36069
|
filterType?: string;
|
|
35890
36070
|
/**
|
|
35891
36071
|
* @remarks
|
|
@@ -40103,7 +40283,7 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
40103
40283
|
resourceIdsScope?: string;
|
|
40104
40284
|
/**
|
|
40105
40285
|
* @remarks
|
|
40106
|
-
* The names of the resource
|
|
40286
|
+
* The names of the resource to which the rule applies.
|
|
40107
40287
|
*
|
|
40108
40288
|
* @example
|
|
40109
40289
|
* i-xxx
|
|
@@ -40141,17 +40321,18 @@ export class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
40141
40321
|
tag?: UpdateAggregateConfigRuleRequestTag[];
|
|
40142
40322
|
/**
|
|
40143
40323
|
* @remarks
|
|
40144
|
-
*
|
|
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:
|
|
40145
40329
|
*
|
|
40146
|
-
*
|
|
40330
|
+
* - AND: And.
|
|
40147
40331
|
*
|
|
40148
|
-
*
|
|
40149
|
-
* * OR
|
|
40332
|
+
* - OR: Or.
|
|
40150
40333
|
*
|
|
40151
40334
|
* @example
|
|
40152
40335
|
* AND
|
|
40153
|
-
*
|
|
40154
|
-
* @deprecated
|
|
40155
40336
|
*/
|
|
40156
40337
|
tagKeyLogicScope?: string;
|
|
40157
40338
|
/**
|
|
@@ -40470,7 +40651,7 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
40470
40651
|
resourceIdsScope?: string;
|
|
40471
40652
|
/**
|
|
40472
40653
|
* @remarks
|
|
40473
|
-
* The names of the resource
|
|
40654
|
+
* The names of the resource to which the rule applies.
|
|
40474
40655
|
*
|
|
40475
40656
|
* @example
|
|
40476
40657
|
* i-xxx
|
|
@@ -40508,17 +40689,18 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
40508
40689
|
tagShrink?: string;
|
|
40509
40690
|
/**
|
|
40510
40691
|
* @remarks
|
|
40511
|
-
*
|
|
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`.
|
|
40512
40695
|
*
|
|
40513
|
-
*
|
|
40696
|
+
* Values:
|
|
40514
40697
|
*
|
|
40515
|
-
*
|
|
40516
|
-
*
|
|
40698
|
+
* - AND: And.
|
|
40699
|
+
*
|
|
40700
|
+
* - OR: Or.
|
|
40517
40701
|
*
|
|
40518
40702
|
* @example
|
|
40519
40703
|
* AND
|
|
40520
|
-
*
|
|
40521
|
-
* @deprecated
|
|
40522
40704
|
*/
|
|
40523
40705
|
tagKeyLogicScope?: string;
|
|
40524
40706
|
/**
|
|
@@ -40946,6 +41128,13 @@ export class UpdateAggregatorRequest extends $dara.Model {
|
|
|
40946
41128
|
* Test_Aggregator_Description
|
|
40947
41129
|
*/
|
|
40948
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
|
+
*/
|
|
40949
41138
|
folderId?: string;
|
|
40950
41139
|
/**
|
|
40951
41140
|
* @remarks
|
|
@@ -41044,6 +41233,13 @@ export class UpdateAggregatorShrinkRequest extends $dara.Model {
|
|
|
41044
41233
|
* Test_Aggregator_Description
|
|
41045
41234
|
*/
|
|
41046
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
|
+
*/
|
|
41047
41243
|
folderId?: string;
|
|
41048
41244
|
/**
|
|
41049
41245
|
* @remarks
|
|
@@ -42080,6 +42276,12 @@ export class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
42080
42276
|
*/
|
|
42081
42277
|
resourceIdsScope?: string;
|
|
42082
42278
|
/**
|
|
42279
|
+
* @remarks
|
|
42280
|
+
* The names of the resource to which the rule applies.
|
|
42281
|
+
*
|
|
42282
|
+
* @example
|
|
42283
|
+
* i-xxx
|
|
42284
|
+
*
|
|
42083
42285
|
* **if can be null:**
|
|
42084
42286
|
* true
|
|
42085
42287
|
*/
|
|
@@ -42113,19 +42315,24 @@ export class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
42113
42315
|
tag?: UpdateConfigRuleRequestTag[];
|
|
42114
42316
|
/**
|
|
42115
42317
|
* @remarks
|
|
42116
|
-
* The logical relationship
|
|
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`.
|
|
42319
|
+
*
|
|
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:
|
|
42117
42323
|
*
|
|
42118
|
-
*
|
|
42119
|
-
*
|
|
42324
|
+
* - AND: And.
|
|
42325
|
+
*
|
|
42326
|
+
* - OR: Or.
|
|
42120
42327
|
*
|
|
42121
42328
|
* @example
|
|
42122
42329
|
* AND
|
|
42123
|
-
*
|
|
42124
|
-
* @deprecated
|
|
42125
42330
|
*/
|
|
42126
42331
|
tagKeyLogicScope?: string;
|
|
42127
42332
|
/**
|
|
42128
42333
|
* @remarks
|
|
42334
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
42335
|
+
*
|
|
42129
42336
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
42130
42337
|
*
|
|
42131
42338
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
@@ -42138,6 +42345,8 @@ export class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
42138
42345
|
tagKeyScope?: string;
|
|
42139
42346
|
/**
|
|
42140
42347
|
* @remarks
|
|
42348
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
42349
|
+
*
|
|
42141
42350
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
42142
42351
|
*
|
|
42143
42352
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
@@ -42380,6 +42589,12 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
42380
42589
|
*/
|
|
42381
42590
|
resourceIdsScope?: string;
|
|
42382
42591
|
/**
|
|
42592
|
+
* @remarks
|
|
42593
|
+
* The names of the resource to which the rule applies.
|
|
42594
|
+
*
|
|
42595
|
+
* @example
|
|
42596
|
+
* i-xxx
|
|
42597
|
+
*
|
|
42383
42598
|
* **if can be null:**
|
|
42384
42599
|
* true
|
|
42385
42600
|
*/
|
|
@@ -42413,19 +42628,24 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
42413
42628
|
tagShrink?: string;
|
|
42414
42629
|
/**
|
|
42415
42630
|
* @remarks
|
|
42416
|
-
* The logical relationship
|
|
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:
|
|
42417
42636
|
*
|
|
42418
|
-
*
|
|
42419
|
-
*
|
|
42637
|
+
* - AND: And.
|
|
42638
|
+
*
|
|
42639
|
+
* - OR: Or.
|
|
42420
42640
|
*
|
|
42421
42641
|
* @example
|
|
42422
42642
|
* AND
|
|
42423
|
-
*
|
|
42424
|
-
* @deprecated
|
|
42425
42643
|
*/
|
|
42426
42644
|
tagKeyLogicScope?: string;
|
|
42427
42645
|
/**
|
|
42428
42646
|
* @remarks
|
|
42647
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
42648
|
+
*
|
|
42429
42649
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
42430
42650
|
*
|
|
42431
42651
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
@@ -42438,6 +42658,8 @@ export class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
42438
42658
|
tagKeyScope?: string;
|
|
42439
42659
|
/**
|
|
42440
42660
|
* @remarks
|
|
42661
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
42662
|
+
*
|
|
42441
42663
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
42442
42664
|
*
|
|
42443
42665
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
@@ -43357,12 +43579,7 @@ export default class Client extends OpenApi {
|
|
|
43357
43579
|
reqBodyType: "formData",
|
|
43358
43580
|
bodyType: "json",
|
|
43359
43581
|
});
|
|
43360
|
-
|
|
43361
|
-
return $dara.cast<ActiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveAggregateConfigRulesResponse({}));
|
|
43362
|
-
} else {
|
|
43363
|
-
return $dara.cast<ActiveAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new ActiveAggregateConfigRulesResponse({}));
|
|
43364
|
-
}
|
|
43365
|
-
|
|
43582
|
+
return $dara.cast<ActiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveAggregateConfigRulesResponse({}));
|
|
43366
43583
|
}
|
|
43367
43584
|
|
|
43368
43585
|
/**
|
|
@@ -43415,12 +43632,7 @@ export default class Client extends OpenApi {
|
|
|
43415
43632
|
reqBodyType: "formData",
|
|
43416
43633
|
bodyType: "json",
|
|
43417
43634
|
});
|
|
43418
|
-
|
|
43419
|
-
return $dara.cast<ActiveConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveConfigRulesResponse({}));
|
|
43420
|
-
} else {
|
|
43421
|
-
return $dara.cast<ActiveConfigRulesResponse>(await this.execute(params, req, runtime), new ActiveConfigRulesResponse({}));
|
|
43422
|
-
}
|
|
43423
|
-
|
|
43635
|
+
return $dara.cast<ActiveConfigRulesResponse>(await this.callApi(params, req, runtime), new ActiveConfigRulesResponse({}));
|
|
43424
43636
|
}
|
|
43425
43637
|
|
|
43426
43638
|
/**
|
|
@@ -43477,12 +43689,7 @@ export default class Client extends OpenApi {
|
|
|
43477
43689
|
reqBodyType: "formData",
|
|
43478
43690
|
bodyType: "json",
|
|
43479
43691
|
});
|
|
43480
|
-
|
|
43481
|
-
return $dara.cast<AttachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachAggregateConfigRuleToCompliancePackResponse({}));
|
|
43482
|
-
} else {
|
|
43483
|
-
return $dara.cast<AttachAggregateConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new AttachAggregateConfigRuleToCompliancePackResponse({}));
|
|
43484
|
-
}
|
|
43485
|
-
|
|
43692
|
+
return $dara.cast<AttachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachAggregateConfigRuleToCompliancePackResponse({}));
|
|
43486
43693
|
}
|
|
43487
43694
|
|
|
43488
43695
|
/**
|
|
@@ -43534,12 +43741,7 @@ export default class Client extends OpenApi {
|
|
|
43534
43741
|
reqBodyType: "formData",
|
|
43535
43742
|
bodyType: "json",
|
|
43536
43743
|
});
|
|
43537
|
-
|
|
43538
|
-
return $dara.cast<AttachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachConfigRuleToCompliancePackResponse({}));
|
|
43539
|
-
} else {
|
|
43540
|
-
return $dara.cast<AttachConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new AttachConfigRuleToCompliancePackResponse({}));
|
|
43541
|
-
}
|
|
43542
|
-
|
|
43744
|
+
return $dara.cast<AttachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new AttachConfigRuleToCompliancePackResponse({}));
|
|
43543
43745
|
}
|
|
43544
43746
|
|
|
43545
43747
|
/**
|
|
@@ -43592,12 +43794,7 @@ export default class Client extends OpenApi {
|
|
|
43592
43794
|
reqBodyType: "formData",
|
|
43593
43795
|
bodyType: "json",
|
|
43594
43796
|
});
|
|
43595
|
-
|
|
43596
|
-
return $dara.cast<CopyCompliancePacksResponse>(await this.callApi(params, req, runtime), new CopyCompliancePacksResponse({}));
|
|
43597
|
-
} else {
|
|
43598
|
-
return $dara.cast<CopyCompliancePacksResponse>(await this.execute(params, req, runtime), new CopyCompliancePacksResponse({}));
|
|
43599
|
-
}
|
|
43600
|
-
|
|
43797
|
+
return $dara.cast<CopyCompliancePacksResponse>(await this.callApi(params, req, runtime), new CopyCompliancePacksResponse({}));
|
|
43601
43798
|
}
|
|
43602
43799
|
|
|
43603
43800
|
/**
|
|
@@ -43647,12 +43844,7 @@ export default class Client extends OpenApi {
|
|
|
43647
43844
|
reqBodyType: "formData",
|
|
43648
43845
|
bodyType: "json",
|
|
43649
43846
|
});
|
|
43650
|
-
|
|
43651
|
-
return $dara.cast<CopyConfigRulesResponse>(await this.callApi(params, req, runtime), new CopyConfigRulesResponse({}));
|
|
43652
|
-
} else {
|
|
43653
|
-
return $dara.cast<CopyConfigRulesResponse>(await this.execute(params, req, runtime), new CopyConfigRulesResponse({}));
|
|
43654
|
-
}
|
|
43655
|
-
|
|
43847
|
+
return $dara.cast<CopyConfigRulesResponse>(await this.callApi(params, req, runtime), new CopyConfigRulesResponse({}));
|
|
43656
43848
|
}
|
|
43657
43849
|
|
|
43658
43850
|
/**
|
|
@@ -43694,12 +43886,7 @@ export default class Client extends OpenApi {
|
|
|
43694
43886
|
reqBodyType: "formData",
|
|
43695
43887
|
bodyType: "json",
|
|
43696
43888
|
});
|
|
43697
|
-
|
|
43698
|
-
return $dara.cast<CreateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAdvancedSearchFileResponse({}));
|
|
43699
|
-
} else {
|
|
43700
|
-
return $dara.cast<CreateAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new CreateAdvancedSearchFileResponse({}));
|
|
43701
|
-
}
|
|
43702
|
-
|
|
43889
|
+
return $dara.cast<CreateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAdvancedSearchFileResponse({}));
|
|
43703
43890
|
}
|
|
43704
43891
|
|
|
43705
43892
|
/**
|
|
@@ -43748,12 +43935,7 @@ export default class Client extends OpenApi {
|
|
|
43748
43935
|
reqBodyType: "formData",
|
|
43749
43936
|
bodyType: "json",
|
|
43750
43937
|
});
|
|
43751
|
-
|
|
43752
|
-
return $dara.cast<CreateAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAggregateAdvancedSearchFileResponse({}));
|
|
43753
|
-
} else {
|
|
43754
|
-
return $dara.cast<CreateAggregateAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new CreateAggregateAdvancedSearchFileResponse({}));
|
|
43755
|
-
}
|
|
43756
|
-
|
|
43938
|
+
return $dara.cast<CreateAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new CreateAggregateAdvancedSearchFileResponse({}));
|
|
43757
43939
|
}
|
|
43758
43940
|
|
|
43759
43941
|
/**
|
|
@@ -43894,12 +44076,7 @@ export default class Client extends OpenApi {
|
|
|
43894
44076
|
reqBodyType: "formData",
|
|
43895
44077
|
bodyType: "json",
|
|
43896
44078
|
});
|
|
43897
|
-
|
|
43898
|
-
return $dara.cast<CreateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateAggregateCompliancePackResponse({}));
|
|
43899
|
-
} else {
|
|
43900
|
-
return $dara.cast<CreateAggregateCompliancePackResponse>(await this.execute(params, req, runtime), new CreateAggregateCompliancePackResponse({}));
|
|
43901
|
-
}
|
|
43902
|
-
|
|
44079
|
+
return $dara.cast<CreateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateAggregateCompliancePackResponse({}));
|
|
43903
44080
|
}
|
|
43904
44081
|
|
|
43905
44082
|
/**
|
|
@@ -43995,12 +44172,7 @@ export default class Client extends OpenApi {
|
|
|
43995
44172
|
reqBodyType: "formData",
|
|
43996
44173
|
bodyType: "json",
|
|
43997
44174
|
});
|
|
43998
|
-
|
|
43999
|
-
return $dara.cast<CreateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigDeliveryChannelResponse({}));
|
|
44000
|
-
} else {
|
|
44001
|
-
return $dara.cast<CreateAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new CreateAggregateConfigDeliveryChannelResponse({}));
|
|
44002
|
-
}
|
|
44003
|
-
|
|
44175
|
+
return $dara.cast<CreateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigDeliveryChannelResponse({}));
|
|
44004
44176
|
}
|
|
44005
44177
|
|
|
44006
44178
|
/**
|
|
@@ -44184,12 +44356,7 @@ export default class Client extends OpenApi {
|
|
|
44184
44356
|
reqBodyType: "formData",
|
|
44185
44357
|
bodyType: "json",
|
|
44186
44358
|
});
|
|
44187
|
-
|
|
44188
|
-
return $dara.cast<CreateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigRuleResponse({}));
|
|
44189
|
-
} else {
|
|
44190
|
-
return $dara.cast<CreateAggregateConfigRuleResponse>(await this.execute(params, req, runtime), new CreateAggregateConfigRuleResponse({}));
|
|
44191
|
-
}
|
|
44192
|
-
|
|
44359
|
+
return $dara.cast<CreateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateAggregateConfigRuleResponse({}));
|
|
44193
44360
|
}
|
|
44194
44361
|
|
|
44195
44362
|
/**
|
|
@@ -44268,12 +44435,7 @@ export default class Client extends OpenApi {
|
|
|
44268
44435
|
reqBodyType: "formData",
|
|
44269
44436
|
bodyType: "json",
|
|
44270
44437
|
});
|
|
44271
|
-
|
|
44272
|
-
return $dara.cast<CreateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new CreateAggregateRemediationResponse({}));
|
|
44273
|
-
} else {
|
|
44274
|
-
return $dara.cast<CreateAggregateRemediationResponse>(await this.execute(params, req, runtime), new CreateAggregateRemediationResponse({}));
|
|
44275
|
-
}
|
|
44276
|
-
|
|
44438
|
+
return $dara.cast<CreateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new CreateAggregateRemediationResponse({}));
|
|
44277
44439
|
}
|
|
44278
44440
|
|
|
44279
44441
|
/**
|
|
@@ -44363,12 +44525,7 @@ export default class Client extends OpenApi {
|
|
|
44363
44525
|
reqBodyType: "formData",
|
|
44364
44526
|
bodyType: "json",
|
|
44365
44527
|
});
|
|
44366
|
-
|
|
44367
|
-
return $dara.cast<CreateAggregatorResponse>(await this.callApi(params, req, runtime), new CreateAggregatorResponse({}));
|
|
44368
|
-
} else {
|
|
44369
|
-
return $dara.cast<CreateAggregatorResponse>(await this.execute(params, req, runtime), new CreateAggregatorResponse({}));
|
|
44370
|
-
}
|
|
44371
|
-
|
|
44528
|
+
return $dara.cast<CreateAggregatorResponse>(await this.callApi(params, req, runtime), new CreateAggregatorResponse({}));
|
|
44372
44529
|
}
|
|
44373
44530
|
|
|
44374
44531
|
/**
|
|
@@ -44512,12 +44669,7 @@ export default class Client extends OpenApi {
|
|
|
44512
44669
|
reqBodyType: "formData",
|
|
44513
44670
|
bodyType: "json",
|
|
44514
44671
|
});
|
|
44515
|
-
|
|
44516
|
-
return $dara.cast<CreateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateCompliancePackResponse({}));
|
|
44517
|
-
} else {
|
|
44518
|
-
return $dara.cast<CreateCompliancePackResponse>(await this.execute(params, req, runtime), new CreateCompliancePackResponse({}));
|
|
44519
|
-
}
|
|
44520
|
-
|
|
44672
|
+
return $dara.cast<CreateCompliancePackResponse>(await this.callApi(params, req, runtime), new CreateCompliancePackResponse({}));
|
|
44521
44673
|
}
|
|
44522
44674
|
|
|
44523
44675
|
/**
|
|
@@ -44610,12 +44762,7 @@ export default class Client extends OpenApi {
|
|
|
44610
44762
|
reqBodyType: "formData",
|
|
44611
44763
|
bodyType: "json",
|
|
44612
44764
|
});
|
|
44613
|
-
|
|
44614
|
-
return $dara.cast<CreateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateConfigDeliveryChannelResponse({}));
|
|
44615
|
-
} else {
|
|
44616
|
-
return $dara.cast<CreateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new CreateConfigDeliveryChannelResponse({}));
|
|
44617
|
-
}
|
|
44618
|
-
|
|
44765
|
+
return $dara.cast<CreateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateConfigDeliveryChannelResponse({}));
|
|
44619
44766
|
}
|
|
44620
44767
|
|
|
44621
44768
|
/**
|
|
@@ -44777,12 +44924,7 @@ export default class Client extends OpenApi {
|
|
|
44777
44924
|
reqBodyType: "formData",
|
|
44778
44925
|
bodyType: "json",
|
|
44779
44926
|
});
|
|
44780
|
-
|
|
44781
|
-
return $dara.cast<CreateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateConfigRuleResponse({}));
|
|
44782
|
-
} else {
|
|
44783
|
-
return $dara.cast<CreateConfigRuleResponse>(await this.execute(params, req, runtime), new CreateConfigRuleResponse({}));
|
|
44784
|
-
}
|
|
44785
|
-
|
|
44927
|
+
return $dara.cast<CreateConfigRuleResponse>(await this.callApi(params, req, runtime), new CreateConfigRuleResponse({}));
|
|
44786
44928
|
}
|
|
44787
44929
|
|
|
44788
44930
|
/**
|
|
@@ -44874,12 +45016,7 @@ export default class Client extends OpenApi {
|
|
|
44874
45016
|
reqBodyType: "formData",
|
|
44875
45017
|
bodyType: "json",
|
|
44876
45018
|
});
|
|
44877
|
-
|
|
44878
|
-
return $dara.cast<CreateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateDeliveryChannelResponse({}));
|
|
44879
|
-
} else {
|
|
44880
|
-
return $dara.cast<CreateDeliveryChannelResponse>(await this.execute(params, req, runtime), new CreateDeliveryChannelResponse({}));
|
|
44881
|
-
}
|
|
44882
|
-
|
|
45019
|
+
return $dara.cast<CreateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new CreateDeliveryChannelResponse({}));
|
|
44883
45020
|
}
|
|
44884
45021
|
|
|
44885
45022
|
/**
|
|
@@ -44954,12 +45091,7 @@ export default class Client extends OpenApi {
|
|
|
44954
45091
|
reqBodyType: "formData",
|
|
44955
45092
|
bodyType: "json",
|
|
44956
45093
|
});
|
|
44957
|
-
|
|
44958
|
-
return $dara.cast<CreateRemediationResponse>(await this.callApi(params, req, runtime), new CreateRemediationResponse({}));
|
|
44959
|
-
} else {
|
|
44960
|
-
return $dara.cast<CreateRemediationResponse>(await this.execute(params, req, runtime), new CreateRemediationResponse({}));
|
|
44961
|
-
}
|
|
44962
|
-
|
|
45094
|
+
return $dara.cast<CreateRemediationResponse>(await this.callApi(params, req, runtime), new CreateRemediationResponse({}));
|
|
44963
45095
|
}
|
|
44964
45096
|
|
|
44965
45097
|
/**
|
|
@@ -45018,12 +45150,7 @@ export default class Client extends OpenApi {
|
|
|
45018
45150
|
reqBodyType: "formData",
|
|
45019
45151
|
bodyType: "json",
|
|
45020
45152
|
});
|
|
45021
|
-
|
|
45022
|
-
return $dara.cast<DeactiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveAggregateConfigRulesResponse({}));
|
|
45023
|
-
} else {
|
|
45024
|
-
return $dara.cast<DeactiveAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new DeactiveAggregateConfigRulesResponse({}));
|
|
45025
|
-
}
|
|
45026
|
-
|
|
45153
|
+
return $dara.cast<DeactiveAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveAggregateConfigRulesResponse({}));
|
|
45027
45154
|
}
|
|
45028
45155
|
|
|
45029
45156
|
/**
|
|
@@ -45081,12 +45208,7 @@ export default class Client extends OpenApi {
|
|
|
45081
45208
|
reqBodyType: "formData",
|
|
45082
45209
|
bodyType: "json",
|
|
45083
45210
|
});
|
|
45084
|
-
|
|
45085
|
-
return $dara.cast<DeactiveConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveConfigRulesResponse({}));
|
|
45086
|
-
} else {
|
|
45087
|
-
return $dara.cast<DeactiveConfigRulesResponse>(await this.execute(params, req, runtime), new DeactiveConfigRulesResponse({}));
|
|
45088
|
-
}
|
|
45089
|
-
|
|
45211
|
+
return $dara.cast<DeactiveConfigRulesResponse>(await this.callApi(params, req, runtime), new DeactiveConfigRulesResponse({}));
|
|
45090
45212
|
}
|
|
45091
45213
|
|
|
45092
45214
|
/**
|
|
@@ -45149,12 +45271,7 @@ export default class Client extends OpenApi {
|
|
|
45149
45271
|
reqBodyType: "formData",
|
|
45150
45272
|
bodyType: "json",
|
|
45151
45273
|
});
|
|
45152
|
-
|
|
45153
|
-
return $dara.cast<DeleteAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteAggregateCompliancePacksResponse({}));
|
|
45154
|
-
} else {
|
|
45155
|
-
return $dara.cast<DeleteAggregateCompliancePacksResponse>(await this.execute(params, req, runtime), new DeleteAggregateCompliancePacksResponse({}));
|
|
45156
|
-
}
|
|
45157
|
-
|
|
45274
|
+
return $dara.cast<DeleteAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteAggregateCompliancePacksResponse({}));
|
|
45158
45275
|
}
|
|
45159
45276
|
|
|
45160
45277
|
/**
|
|
@@ -45206,12 +45323,7 @@ export default class Client extends OpenApi {
|
|
|
45206
45323
|
reqBodyType: "formData",
|
|
45207
45324
|
bodyType: "json",
|
|
45208
45325
|
});
|
|
45209
|
-
|
|
45210
|
-
return $dara.cast<DeleteAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigDeliveryChannelResponse({}));
|
|
45211
|
-
} else {
|
|
45212
|
-
return $dara.cast<DeleteAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new DeleteAggregateConfigDeliveryChannelResponse({}));
|
|
45213
|
-
}
|
|
45214
|
-
|
|
45326
|
+
return $dara.cast<DeleteAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigDeliveryChannelResponse({}));
|
|
45215
45327
|
}
|
|
45216
45328
|
|
|
45217
45329
|
/**
|
|
@@ -45263,12 +45375,7 @@ export default class Client extends OpenApi {
|
|
|
45263
45375
|
reqBodyType: "formData",
|
|
45264
45376
|
bodyType: "json",
|
|
45265
45377
|
});
|
|
45266
|
-
|
|
45267
|
-
return $dara.cast<DeleteAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigRulesResponse({}));
|
|
45268
|
-
} else {
|
|
45269
|
-
return $dara.cast<DeleteAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new DeleteAggregateConfigRulesResponse({}));
|
|
45270
|
-
}
|
|
45271
|
-
|
|
45378
|
+
return $dara.cast<DeleteAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteAggregateConfigRulesResponse({}));
|
|
45272
45379
|
}
|
|
45273
45380
|
|
|
45274
45381
|
/**
|
|
@@ -45320,12 +45427,7 @@ export default class Client extends OpenApi {
|
|
|
45320
45427
|
reqBodyType: "formData",
|
|
45321
45428
|
bodyType: "json",
|
|
45322
45429
|
});
|
|
45323
|
-
|
|
45324
|
-
return $dara.cast<DeleteAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteAggregateRemediationsResponse({}));
|
|
45325
|
-
} else {
|
|
45326
|
-
return $dara.cast<DeleteAggregateRemediationsResponse>(await this.execute(params, req, runtime), new DeleteAggregateRemediationsResponse({}));
|
|
45327
|
-
}
|
|
45328
|
-
|
|
45430
|
+
return $dara.cast<DeleteAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteAggregateRemediationsResponse({}));
|
|
45329
45431
|
}
|
|
45330
45432
|
|
|
45331
45433
|
/**
|
|
@@ -45384,12 +45486,7 @@ export default class Client extends OpenApi {
|
|
|
45384
45486
|
reqBodyType: "formData",
|
|
45385
45487
|
bodyType: "json",
|
|
45386
45488
|
});
|
|
45387
|
-
|
|
45388
|
-
return $dara.cast<DeleteAggregatorsResponse>(await this.callApi(params, req, runtime), new DeleteAggregatorsResponse({}));
|
|
45389
|
-
} else {
|
|
45390
|
-
return $dara.cast<DeleteAggregatorsResponse>(await this.execute(params, req, runtime), new DeleteAggregatorsResponse({}));
|
|
45391
|
-
}
|
|
45392
|
-
|
|
45489
|
+
return $dara.cast<DeleteAggregatorsResponse>(await this.callApi(params, req, runtime), new DeleteAggregatorsResponse({}));
|
|
45393
45490
|
}
|
|
45394
45491
|
|
|
45395
45492
|
/**
|
|
@@ -45452,12 +45549,7 @@ export default class Client extends OpenApi {
|
|
|
45452
45549
|
reqBodyType: "formData",
|
|
45453
45550
|
bodyType: "json",
|
|
45454
45551
|
});
|
|
45455
|
-
|
|
45456
|
-
return $dara.cast<DeleteCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteCompliancePacksResponse({}));
|
|
45457
|
-
} else {
|
|
45458
|
-
return $dara.cast<DeleteCompliancePacksResponse>(await this.execute(params, req, runtime), new DeleteCompliancePacksResponse({}));
|
|
45459
|
-
}
|
|
45460
|
-
|
|
45552
|
+
return $dara.cast<DeleteCompliancePacksResponse>(await this.callApi(params, req, runtime), new DeleteCompliancePacksResponse({}));
|
|
45461
45553
|
}
|
|
45462
45554
|
|
|
45463
45555
|
/**
|
|
@@ -45505,12 +45597,7 @@ export default class Client extends OpenApi {
|
|
|
45505
45597
|
reqBodyType: "formData",
|
|
45506
45598
|
bodyType: "json",
|
|
45507
45599
|
});
|
|
45508
|
-
|
|
45509
|
-
return $dara.cast<DeleteConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteConfigDeliveryChannelResponse({}));
|
|
45510
|
-
} else {
|
|
45511
|
-
return $dara.cast<DeleteConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new DeleteConfigDeliveryChannelResponse({}));
|
|
45512
|
-
}
|
|
45513
|
-
|
|
45600
|
+
return $dara.cast<DeleteConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new DeleteConfigDeliveryChannelResponse({}));
|
|
45514
45601
|
}
|
|
45515
45602
|
|
|
45516
45603
|
/**
|
|
@@ -45558,12 +45645,7 @@ export default class Client extends OpenApi {
|
|
|
45558
45645
|
reqBodyType: "formData",
|
|
45559
45646
|
bodyType: "json",
|
|
45560
45647
|
});
|
|
45561
|
-
|
|
45562
|
-
return $dara.cast<DeleteConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteConfigRulesResponse({}));
|
|
45563
|
-
} else {
|
|
45564
|
-
return $dara.cast<DeleteConfigRulesResponse>(await this.execute(params, req, runtime), new DeleteConfigRulesResponse({}));
|
|
45565
|
-
}
|
|
45566
|
-
|
|
45648
|
+
return $dara.cast<DeleteConfigRulesResponse>(await this.callApi(params, req, runtime), new DeleteConfigRulesResponse({}));
|
|
45567
45649
|
}
|
|
45568
45650
|
|
|
45569
45651
|
/**
|
|
@@ -45611,12 +45693,7 @@ export default class Client extends OpenApi {
|
|
|
45611
45693
|
reqBodyType: "formData",
|
|
45612
45694
|
bodyType: "json",
|
|
45613
45695
|
});
|
|
45614
|
-
|
|
45615
|
-
return $dara.cast<DeleteRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteRemediationsResponse({}));
|
|
45616
|
-
} else {
|
|
45617
|
-
return $dara.cast<DeleteRemediationsResponse>(await this.execute(params, req, runtime), new DeleteRemediationsResponse({}));
|
|
45618
|
-
}
|
|
45619
|
-
|
|
45696
|
+
return $dara.cast<DeleteRemediationsResponse>(await this.callApi(params, req, runtime), new DeleteRemediationsResponse({}));
|
|
45620
45697
|
}
|
|
45621
45698
|
|
|
45622
45699
|
/**
|
|
@@ -45657,12 +45734,7 @@ export default class Client extends OpenApi {
|
|
|
45657
45734
|
reqBodyType: "formData",
|
|
45658
45735
|
bodyType: "json",
|
|
45659
45736
|
});
|
|
45660
|
-
|
|
45661
|
-
return $dara.cast<DescribeRemediationResponse>(await this.callApi(params, req, runtime), new DescribeRemediationResponse({}));
|
|
45662
|
-
} else {
|
|
45663
|
-
return $dara.cast<DescribeRemediationResponse>(await this.execute(params, req, runtime), new DescribeRemediationResponse({}));
|
|
45664
|
-
}
|
|
45665
|
-
|
|
45737
|
+
return $dara.cast<DescribeRemediationResponse>(await this.callApi(params, req, runtime), new DescribeRemediationResponse({}));
|
|
45666
45738
|
}
|
|
45667
45739
|
|
|
45668
45740
|
/**
|
|
@@ -45718,12 +45790,7 @@ export default class Client extends OpenApi {
|
|
|
45718
45790
|
reqBodyType: "formData",
|
|
45719
45791
|
bodyType: "json",
|
|
45720
45792
|
});
|
|
45721
|
-
|
|
45722
|
-
return $dara.cast<DetachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachAggregateConfigRuleToCompliancePackResponse({}));
|
|
45723
|
-
} else {
|
|
45724
|
-
return $dara.cast<DetachAggregateConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new DetachAggregateConfigRuleToCompliancePackResponse({}));
|
|
45725
|
-
}
|
|
45726
|
-
|
|
45793
|
+
return $dara.cast<DetachAggregateConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachAggregateConfigRuleToCompliancePackResponse({}));
|
|
45727
45794
|
}
|
|
45728
45795
|
|
|
45729
45796
|
/**
|
|
@@ -45781,12 +45848,7 @@ export default class Client extends OpenApi {
|
|
|
45781
45848
|
reqBodyType: "formData",
|
|
45782
45849
|
bodyType: "json",
|
|
45783
45850
|
});
|
|
45784
|
-
|
|
45785
|
-
return $dara.cast<DetachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachConfigRuleToCompliancePackResponse({}));
|
|
45786
|
-
} else {
|
|
45787
|
-
return $dara.cast<DetachConfigRuleToCompliancePackResponse>(await this.execute(params, req, runtime), new DetachConfigRuleToCompliancePackResponse({}));
|
|
45788
|
-
}
|
|
45789
|
-
|
|
45851
|
+
return $dara.cast<DetachConfigRuleToCompliancePackResponse>(await this.callApi(params, req, runtime), new DetachConfigRuleToCompliancePackResponse({}));
|
|
45790
45852
|
}
|
|
45791
45853
|
|
|
45792
45854
|
/**
|
|
@@ -45848,12 +45910,7 @@ export default class Client extends OpenApi {
|
|
|
45848
45910
|
reqBodyType: "formData",
|
|
45849
45911
|
bodyType: "json",
|
|
45850
45912
|
});
|
|
45851
|
-
|
|
45852
|
-
return $dara.cast<EvaluatePreConfigRulesResponse>(await this.callApi(params, req, runtime), new EvaluatePreConfigRulesResponse({}));
|
|
45853
|
-
} else {
|
|
45854
|
-
return $dara.cast<EvaluatePreConfigRulesResponse>(await this.execute(params, req, runtime), new EvaluatePreConfigRulesResponse({}));
|
|
45855
|
-
}
|
|
45856
|
-
|
|
45913
|
+
return $dara.cast<EvaluatePreConfigRulesResponse>(await this.callApi(params, req, runtime), new EvaluatePreConfigRulesResponse({}));
|
|
45857
45914
|
}
|
|
45858
45915
|
|
|
45859
45916
|
/**
|
|
@@ -45907,12 +45964,7 @@ export default class Client extends OpenApi {
|
|
|
45907
45964
|
reqBodyType: "formData",
|
|
45908
45965
|
bodyType: "json",
|
|
45909
45966
|
});
|
|
45910
|
-
|
|
45911
|
-
return $dara.cast<GenerateAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateCompliancePackReportResponse({}));
|
|
45912
|
-
} else {
|
|
45913
|
-
return $dara.cast<GenerateAggregateCompliancePackReportResponse>(await this.execute(params, req, runtime), new GenerateAggregateCompliancePackReportResponse({}));
|
|
45914
|
-
}
|
|
45915
|
-
|
|
45967
|
+
return $dara.cast<GenerateAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateCompliancePackReportResponse({}));
|
|
45916
45968
|
}
|
|
45917
45969
|
|
|
45918
45970
|
/**
|
|
@@ -45970,12 +46022,7 @@ export default class Client extends OpenApi {
|
|
|
45970
46022
|
reqBodyType: "formData",
|
|
45971
46023
|
bodyType: "json",
|
|
45972
46024
|
});
|
|
45973
|
-
|
|
45974
|
-
return $dara.cast<GenerateAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateConfigRulesReportResponse({}));
|
|
45975
|
-
} else {
|
|
45976
|
-
return $dara.cast<GenerateAggregateConfigRulesReportResponse>(await this.execute(params, req, runtime), new GenerateAggregateConfigRulesReportResponse({}));
|
|
45977
|
-
}
|
|
45978
|
-
|
|
46025
|
+
return $dara.cast<GenerateAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateAggregateConfigRulesReportResponse({}));
|
|
45979
46026
|
}
|
|
45980
46027
|
|
|
45981
46028
|
/**
|
|
@@ -46040,12 +46087,7 @@ export default class Client extends OpenApi {
|
|
|
46040
46087
|
reqBodyType: "formData",
|
|
46041
46088
|
bodyType: "json",
|
|
46042
46089
|
});
|
|
46043
|
-
|
|
46044
|
-
return $dara.cast<GenerateAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateAggregateResourceInventoryResponse({}));
|
|
46045
|
-
} else {
|
|
46046
|
-
return $dara.cast<GenerateAggregateResourceInventoryResponse>(await this.execute(params, req, runtime), new GenerateAggregateResourceInventoryResponse({}));
|
|
46047
|
-
}
|
|
46048
|
-
|
|
46090
|
+
return $dara.cast<GenerateAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateAggregateResourceInventoryResponse({}));
|
|
46049
46091
|
}
|
|
46050
46092
|
|
|
46051
46093
|
/**
|
|
@@ -46098,12 +46140,7 @@ export default class Client extends OpenApi {
|
|
|
46098
46140
|
reqBodyType: "formData",
|
|
46099
46141
|
bodyType: "json",
|
|
46100
46142
|
});
|
|
46101
|
-
|
|
46102
|
-
return $dara.cast<GenerateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateCompliancePackReportResponse({}));
|
|
46103
|
-
} else {
|
|
46104
|
-
return $dara.cast<GenerateCompliancePackReportResponse>(await this.execute(params, req, runtime), new GenerateCompliancePackReportResponse({}));
|
|
46105
|
-
}
|
|
46106
|
-
|
|
46143
|
+
return $dara.cast<GenerateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GenerateCompliancePackReportResponse({}));
|
|
46107
46144
|
}
|
|
46108
46145
|
|
|
46109
46146
|
/**
|
|
@@ -46157,12 +46194,7 @@ export default class Client extends OpenApi {
|
|
|
46157
46194
|
reqBodyType: "formData",
|
|
46158
46195
|
bodyType: "json",
|
|
46159
46196
|
});
|
|
46160
|
-
|
|
46161
|
-
return $dara.cast<GenerateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateConfigRulesReportResponse({}));
|
|
46162
|
-
} else {
|
|
46163
|
-
return $dara.cast<GenerateConfigRulesReportResponse>(await this.execute(params, req, runtime), new GenerateConfigRulesReportResponse({}));
|
|
46164
|
-
}
|
|
46165
|
-
|
|
46197
|
+
return $dara.cast<GenerateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GenerateConfigRulesReportResponse({}));
|
|
46166
46198
|
}
|
|
46167
46199
|
|
|
46168
46200
|
/**
|
|
@@ -46219,12 +46251,7 @@ export default class Client extends OpenApi {
|
|
|
46219
46251
|
reqBodyType: "formData",
|
|
46220
46252
|
bodyType: "json",
|
|
46221
46253
|
});
|
|
46222
|
-
|
|
46223
|
-
return $dara.cast<GenerateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateResourceInventoryResponse({}));
|
|
46224
|
-
} else {
|
|
46225
|
-
return $dara.cast<GenerateResourceInventoryResponse>(await this.execute(params, req, runtime), new GenerateResourceInventoryResponse({}));
|
|
46226
|
-
}
|
|
46227
|
-
|
|
46254
|
+
return $dara.cast<GenerateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GenerateResourceInventoryResponse({}));
|
|
46228
46255
|
}
|
|
46229
46256
|
|
|
46230
46257
|
/**
|
|
@@ -46265,12 +46292,7 @@ export default class Client extends OpenApi {
|
|
|
46265
46292
|
reqBodyType: "formData",
|
|
46266
46293
|
bodyType: "json",
|
|
46267
46294
|
});
|
|
46268
|
-
|
|
46269
|
-
return $dara.cast<GetAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAdvancedSearchFileResponse({}));
|
|
46270
|
-
} else {
|
|
46271
|
-
return $dara.cast<GetAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new GetAdvancedSearchFileResponse({}));
|
|
46272
|
-
}
|
|
46273
|
-
|
|
46295
|
+
return $dara.cast<GetAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAdvancedSearchFileResponse({}));
|
|
46274
46296
|
}
|
|
46275
46297
|
|
|
46276
46298
|
/**
|
|
@@ -46313,12 +46335,7 @@ export default class Client extends OpenApi {
|
|
|
46313
46335
|
reqBodyType: "formData",
|
|
46314
46336
|
bodyType: "json",
|
|
46315
46337
|
});
|
|
46316
|
-
|
|
46317
|
-
return $dara.cast<GetAggregateAccountComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateAccountComplianceByPackResponse({}));
|
|
46318
|
-
} else {
|
|
46319
|
-
return $dara.cast<GetAggregateAccountComplianceByPackResponse>(await this.execute(params, req, runtime), new GetAggregateAccountComplianceByPackResponse({}));
|
|
46320
|
-
}
|
|
46321
|
-
|
|
46338
|
+
return $dara.cast<GetAggregateAccountComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateAccountComplianceByPackResponse({}));
|
|
46322
46339
|
}
|
|
46323
46340
|
|
|
46324
46341
|
/**
|
|
@@ -46363,12 +46380,7 @@ export default class Client extends OpenApi {
|
|
|
46363
46380
|
reqBodyType: "formData",
|
|
46364
46381
|
bodyType: "json",
|
|
46365
46382
|
});
|
|
46366
|
-
|
|
46367
|
-
return $dara.cast<GetAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAggregateAdvancedSearchFileResponse({}));
|
|
46368
|
-
} else {
|
|
46369
|
-
return $dara.cast<GetAggregateAdvancedSearchFileResponse>(await this.execute(params, req, runtime), new GetAggregateAdvancedSearchFileResponse({}));
|
|
46370
|
-
}
|
|
46371
|
-
|
|
46383
|
+
return $dara.cast<GetAggregateAdvancedSearchFileResponse>(await this.callApi(params, req, runtime), new GetAggregateAdvancedSearchFileResponse({}));
|
|
46372
46384
|
}
|
|
46373
46385
|
|
|
46374
46386
|
/**
|
|
@@ -46415,12 +46427,7 @@ export default class Client extends OpenApi {
|
|
|
46415
46427
|
reqBodyType: "formData",
|
|
46416
46428
|
bodyType: "json",
|
|
46417
46429
|
});
|
|
46418
|
-
|
|
46419
|
-
return $dara.cast<GetAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackResponse({}));
|
|
46420
|
-
} else {
|
|
46421
|
-
return $dara.cast<GetAggregateCompliancePackResponse>(await this.execute(params, req, runtime), new GetAggregateCompliancePackResponse({}));
|
|
46422
|
-
}
|
|
46423
|
-
|
|
46430
|
+
return $dara.cast<GetAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackResponse({}));
|
|
46424
46431
|
}
|
|
46425
46432
|
|
|
46426
46433
|
/**
|
|
@@ -46465,12 +46472,7 @@ export default class Client extends OpenApi {
|
|
|
46465
46472
|
reqBodyType: "formData",
|
|
46466
46473
|
bodyType: "json",
|
|
46467
46474
|
});
|
|
46468
|
-
|
|
46469
|
-
return $dara.cast<GetAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackReportResponse({}));
|
|
46470
|
-
} else {
|
|
46471
|
-
return $dara.cast<GetAggregateCompliancePackReportResponse>(await this.execute(params, req, runtime), new GetAggregateCompliancePackReportResponse({}));
|
|
46472
|
-
}
|
|
46473
|
-
|
|
46475
|
+
return $dara.cast<GetAggregateCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetAggregateCompliancePackReportResponse({}));
|
|
46474
46476
|
}
|
|
46475
46477
|
|
|
46476
46478
|
/**
|
|
@@ -46519,12 +46521,7 @@ export default class Client extends OpenApi {
|
|
|
46519
46521
|
reqBodyType: "formData",
|
|
46520
46522
|
bodyType: "json",
|
|
46521
46523
|
});
|
|
46522
|
-
|
|
46523
|
-
return $dara.cast<GetAggregateComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetAggregateComplianceSummaryResponse({}));
|
|
46524
|
-
} else {
|
|
46525
|
-
return $dara.cast<GetAggregateComplianceSummaryResponse>(await this.execute(params, req, runtime), new GetAggregateComplianceSummaryResponse({}));
|
|
46526
|
-
}
|
|
46527
|
-
|
|
46524
|
+
return $dara.cast<GetAggregateComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetAggregateComplianceSummaryResponse({}));
|
|
46528
46525
|
}
|
|
46529
46526
|
|
|
46530
46527
|
/**
|
|
@@ -46573,12 +46570,7 @@ export default class Client extends OpenApi {
|
|
|
46573
46570
|
reqBodyType: "formData",
|
|
46574
46571
|
bodyType: "json",
|
|
46575
46572
|
});
|
|
46576
|
-
|
|
46577
|
-
return $dara.cast<GetAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigDeliveryChannelResponse({}));
|
|
46578
|
-
} else {
|
|
46579
|
-
return $dara.cast<GetAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new GetAggregateConfigDeliveryChannelResponse({}));
|
|
46580
|
-
}
|
|
46581
|
-
|
|
46573
|
+
return $dara.cast<GetAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigDeliveryChannelResponse({}));
|
|
46582
46574
|
}
|
|
46583
46575
|
|
|
46584
46576
|
/**
|
|
@@ -46637,12 +46629,7 @@ export default class Client extends OpenApi {
|
|
|
46637
46629
|
reqBodyType: "formData",
|
|
46638
46630
|
bodyType: "json",
|
|
46639
46631
|
});
|
|
46640
|
-
|
|
46641
|
-
return $dara.cast<GetAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleResponse({}));
|
|
46642
|
-
} else {
|
|
46643
|
-
return $dara.cast<GetAggregateConfigRuleResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRuleResponse({}));
|
|
46644
|
-
}
|
|
46645
|
-
|
|
46632
|
+
return $dara.cast<GetAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleResponse({}));
|
|
46646
46633
|
}
|
|
46647
46634
|
|
|
46648
46635
|
/**
|
|
@@ -46686,12 +46673,7 @@ export default class Client extends OpenApi {
|
|
|
46686
46673
|
reqBodyType: "formData",
|
|
46687
46674
|
bodyType: "json",
|
|
46688
46675
|
});
|
|
46689
|
-
|
|
46690
|
-
return $dara.cast<GetAggregateConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleComplianceByPackResponse({}));
|
|
46691
|
-
} else {
|
|
46692
|
-
return $dara.cast<GetAggregateConfigRuleComplianceByPackResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRuleComplianceByPackResponse({}));
|
|
46693
|
-
}
|
|
46694
|
-
|
|
46676
|
+
return $dara.cast<GetAggregateConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleComplianceByPackResponse({}));
|
|
46695
46677
|
}
|
|
46696
46678
|
|
|
46697
46679
|
/**
|
|
@@ -46739,12 +46721,7 @@ export default class Client extends OpenApi {
|
|
|
46739
46721
|
reqBodyType: "formData",
|
|
46740
46722
|
bodyType: "json",
|
|
46741
46723
|
});
|
|
46742
|
-
|
|
46743
|
-
return $dara.cast<GetAggregateConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleSummaryByRiskLevelResponse({}));
|
|
46744
|
-
} else {
|
|
46745
|
-
return $dara.cast<GetAggregateConfigRuleSummaryByRiskLevelResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRuleSummaryByRiskLevelResponse({}));
|
|
46746
|
-
}
|
|
46747
|
-
|
|
46724
|
+
return $dara.cast<GetAggregateConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRuleSummaryByRiskLevelResponse({}));
|
|
46748
46725
|
}
|
|
46749
46726
|
|
|
46750
46727
|
/**
|
|
@@ -46797,12 +46774,7 @@ export default class Client extends OpenApi {
|
|
|
46797
46774
|
reqBodyType: "formData",
|
|
46798
46775
|
bodyType: "json",
|
|
46799
46776
|
});
|
|
46800
|
-
|
|
46801
|
-
return $dara.cast<GetAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRulesReportResponse({}));
|
|
46802
|
-
} else {
|
|
46803
|
-
return $dara.cast<GetAggregateConfigRulesReportResponse>(await this.execute(params, req, runtime), new GetAggregateConfigRulesReportResponse({}));
|
|
46804
|
-
}
|
|
46805
|
-
|
|
46777
|
+
return $dara.cast<GetAggregateConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetAggregateConfigRulesReportResponse({}));
|
|
46806
46778
|
}
|
|
46807
46779
|
|
|
46808
46780
|
/**
|
|
@@ -46875,12 +46847,7 @@ export default class Client extends OpenApi {
|
|
|
46875
46847
|
reqBodyType: "formData",
|
|
46876
46848
|
bodyType: "json",
|
|
46877
46849
|
});
|
|
46878
|
-
|
|
46879
|
-
return $dara.cast<GetAggregateDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetAggregateDiscoveredResourceResponse({}));
|
|
46880
|
-
} else {
|
|
46881
|
-
return $dara.cast<GetAggregateDiscoveredResourceResponse>(await this.execute(params, req, runtime), new GetAggregateDiscoveredResourceResponse({}));
|
|
46882
|
-
}
|
|
46883
|
-
|
|
46850
|
+
return $dara.cast<GetAggregateDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetAggregateDiscoveredResourceResponse({}));
|
|
46884
46851
|
}
|
|
46885
46852
|
|
|
46886
46853
|
/**
|
|
@@ -46944,12 +46911,7 @@ export default class Client extends OpenApi {
|
|
|
46944
46911
|
reqBodyType: "formData",
|
|
46945
46912
|
bodyType: "json",
|
|
46946
46913
|
});
|
|
46947
|
-
|
|
46948
|
-
return $dara.cast<GetAggregateResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByConfigRuleResponse({}));
|
|
46949
|
-
} else {
|
|
46950
|
-
return $dara.cast<GetAggregateResourceComplianceByConfigRuleResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceByConfigRuleResponse({}));
|
|
46951
|
-
}
|
|
46952
|
-
|
|
46914
|
+
return $dara.cast<GetAggregateResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByConfigRuleResponse({}));
|
|
46953
46915
|
}
|
|
46954
46916
|
|
|
46955
46917
|
/**
|
|
@@ -46993,12 +46955,7 @@ export default class Client extends OpenApi {
|
|
|
46993
46955
|
reqBodyType: "formData",
|
|
46994
46956
|
bodyType: "json",
|
|
46995
46957
|
});
|
|
46996
|
-
|
|
46997
|
-
return $dara.cast<GetAggregateResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByPackResponse({}));
|
|
46998
|
-
} else {
|
|
46999
|
-
return $dara.cast<GetAggregateResourceComplianceByPackResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceByPackResponse({}));
|
|
47000
|
-
}
|
|
47001
|
-
|
|
46958
|
+
return $dara.cast<GetAggregateResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceByPackResponse({}));
|
|
47002
46959
|
}
|
|
47003
46960
|
|
|
47004
46961
|
/**
|
|
@@ -47047,12 +47004,7 @@ export default class Client extends OpenApi {
|
|
|
47047
47004
|
reqBodyType: "formData",
|
|
47048
47005
|
bodyType: "json",
|
|
47049
47006
|
});
|
|
47050
|
-
|
|
47051
|
-
return $dara.cast<GetAggregateResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByRegionResponse({}));
|
|
47052
|
-
} else {
|
|
47053
|
-
return $dara.cast<GetAggregateResourceComplianceGroupByRegionResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceGroupByRegionResponse({}));
|
|
47054
|
-
}
|
|
47055
|
-
|
|
47007
|
+
return $dara.cast<GetAggregateResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByRegionResponse({}));
|
|
47056
47008
|
}
|
|
47057
47009
|
|
|
47058
47010
|
/**
|
|
@@ -47098,12 +47050,7 @@ export default class Client extends OpenApi {
|
|
|
47098
47050
|
reqBodyType: "formData",
|
|
47099
47051
|
bodyType: "json",
|
|
47100
47052
|
});
|
|
47101
|
-
|
|
47102
|
-
return $dara.cast<GetAggregateResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByResourceTypeResponse({}));
|
|
47103
|
-
} else {
|
|
47104
|
-
return $dara.cast<GetAggregateResourceComplianceGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceGroupByResourceTypeResponse({}));
|
|
47105
|
-
}
|
|
47106
|
-
|
|
47053
|
+
return $dara.cast<GetAggregateResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceGroupByResourceTypeResponse({}));
|
|
47107
47054
|
}
|
|
47108
47055
|
|
|
47109
47056
|
/**
|
|
@@ -47144,12 +47091,7 @@ export default class Client extends OpenApi {
|
|
|
47144
47091
|
reqBodyType: "formData",
|
|
47145
47092
|
bodyType: "json",
|
|
47146
47093
|
});
|
|
47147
|
-
|
|
47148
|
-
return $dara.cast<GetAggregateResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceTimelineResponse({}));
|
|
47149
|
-
} else {
|
|
47150
|
-
return $dara.cast<GetAggregateResourceComplianceTimelineResponse>(await this.execute(params, req, runtime), new GetAggregateResourceComplianceTimelineResponse({}));
|
|
47151
|
-
}
|
|
47152
|
-
|
|
47094
|
+
return $dara.cast<GetAggregateResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceComplianceTimelineResponse({}));
|
|
47153
47095
|
}
|
|
47154
47096
|
|
|
47155
47097
|
/**
|
|
@@ -47193,12 +47135,7 @@ export default class Client extends OpenApi {
|
|
|
47193
47135
|
reqBodyType: "formData",
|
|
47194
47136
|
bodyType: "json",
|
|
47195
47137
|
});
|
|
47196
|
-
|
|
47197
|
-
return $dara.cast<GetAggregateResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceConfigurationTimelineResponse({}));
|
|
47198
|
-
} else {
|
|
47199
|
-
return $dara.cast<GetAggregateResourceConfigurationTimelineResponse>(await this.execute(params, req, runtime), new GetAggregateResourceConfigurationTimelineResponse({}));
|
|
47200
|
-
}
|
|
47201
|
-
|
|
47138
|
+
return $dara.cast<GetAggregateResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceConfigurationTimelineResponse({}));
|
|
47202
47139
|
}
|
|
47203
47140
|
|
|
47204
47141
|
/**
|
|
@@ -47262,12 +47199,7 @@ export default class Client extends OpenApi {
|
|
|
47262
47199
|
reqBodyType: "formData",
|
|
47263
47200
|
bodyType: "json",
|
|
47264
47201
|
});
|
|
47265
|
-
|
|
47266
|
-
return $dara.cast<GetAggregateResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByRegionResponse({}));
|
|
47267
|
-
} else {
|
|
47268
|
-
return $dara.cast<GetAggregateResourceCountsGroupByRegionResponse>(await this.execute(params, req, runtime), new GetAggregateResourceCountsGroupByRegionResponse({}));
|
|
47269
|
-
}
|
|
47270
|
-
|
|
47202
|
+
return $dara.cast<GetAggregateResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByRegionResponse({}));
|
|
47271
47203
|
}
|
|
47272
47204
|
|
|
47273
47205
|
/**
|
|
@@ -47331,12 +47263,7 @@ export default class Client extends OpenApi {
|
|
|
47331
47263
|
reqBodyType: "formData",
|
|
47332
47264
|
bodyType: "json",
|
|
47333
47265
|
});
|
|
47334
|
-
|
|
47335
|
-
return $dara.cast<GetAggregateResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByResourceTypeResponse({}));
|
|
47336
|
-
} else {
|
|
47337
|
-
return $dara.cast<GetAggregateResourceCountsGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetAggregateResourceCountsGroupByResourceTypeResponse({}));
|
|
47338
|
-
}
|
|
47339
|
-
|
|
47266
|
+
return $dara.cast<GetAggregateResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceCountsGroupByResourceTypeResponse({}));
|
|
47340
47267
|
}
|
|
47341
47268
|
|
|
47342
47269
|
/**
|
|
@@ -47387,12 +47314,7 @@ export default class Client extends OpenApi {
|
|
|
47387
47314
|
reqBodyType: "formData",
|
|
47388
47315
|
bodyType: "json",
|
|
47389
47316
|
});
|
|
47390
|
-
|
|
47391
|
-
return $dara.cast<GetAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceInventoryResponse({}));
|
|
47392
|
-
} else {
|
|
47393
|
-
return $dara.cast<GetAggregateResourceInventoryResponse>(await this.execute(params, req, runtime), new GetAggregateResourceInventoryResponse({}));
|
|
47394
|
-
}
|
|
47395
|
-
|
|
47317
|
+
return $dara.cast<GetAggregateResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetAggregateResourceInventoryResponse({}));
|
|
47396
47318
|
}
|
|
47397
47319
|
|
|
47398
47320
|
/**
|
|
@@ -47453,12 +47375,7 @@ export default class Client extends OpenApi {
|
|
|
47453
47375
|
reqBodyType: "formData",
|
|
47454
47376
|
bodyType: "json",
|
|
47455
47377
|
});
|
|
47456
|
-
|
|
47457
|
-
return $dara.cast<GetAggregatorResponse>(await this.callApi(params, req, runtime), new GetAggregatorResponse({}));
|
|
47458
|
-
} else {
|
|
47459
|
-
return $dara.cast<GetAggregatorResponse>(await this.execute(params, req, runtime), new GetAggregatorResponse({}));
|
|
47460
|
-
}
|
|
47461
|
-
|
|
47378
|
+
return $dara.cast<GetAggregatorResponse>(await this.callApi(params, req, runtime), new GetAggregatorResponse({}));
|
|
47462
47379
|
}
|
|
47463
47380
|
|
|
47464
47381
|
/**
|
|
@@ -47508,12 +47425,7 @@ export default class Client extends OpenApi {
|
|
|
47508
47425
|
reqBodyType: "formData",
|
|
47509
47426
|
bodyType: "json",
|
|
47510
47427
|
});
|
|
47511
|
-
|
|
47512
|
-
return $dara.cast<GetCompliancePackResponse>(await this.callApi(params, req, runtime), new GetCompliancePackResponse({}));
|
|
47513
|
-
} else {
|
|
47514
|
-
return $dara.cast<GetCompliancePackResponse>(await this.execute(params, req, runtime), new GetCompliancePackResponse({}));
|
|
47515
|
-
}
|
|
47516
|
-
|
|
47428
|
+
return $dara.cast<GetCompliancePackResponse>(await this.callApi(params, req, runtime), new GetCompliancePackResponse({}));
|
|
47517
47429
|
}
|
|
47518
47430
|
|
|
47519
47431
|
/**
|
|
@@ -47558,12 +47470,7 @@ export default class Client extends OpenApi {
|
|
|
47558
47470
|
reqBodyType: "formData",
|
|
47559
47471
|
bodyType: "json",
|
|
47560
47472
|
});
|
|
47561
|
-
|
|
47562
|
-
return $dara.cast<GetCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetCompliancePackReportResponse({}));
|
|
47563
|
-
} else {
|
|
47564
|
-
return $dara.cast<GetCompliancePackReportResponse>(await this.execute(params, req, runtime), new GetCompliancePackReportResponse({}));
|
|
47565
|
-
}
|
|
47566
|
-
|
|
47473
|
+
return $dara.cast<GetCompliancePackReportResponse>(await this.callApi(params, req, runtime), new GetCompliancePackReportResponse({}));
|
|
47567
47474
|
}
|
|
47568
47475
|
|
|
47569
47476
|
/**
|
|
@@ -47604,12 +47511,7 @@ export default class Client extends OpenApi {
|
|
|
47604
47511
|
reqBodyType: "formData",
|
|
47605
47512
|
bodyType: "json",
|
|
47606
47513
|
});
|
|
47607
|
-
|
|
47608
|
-
return $dara.cast<GetComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetComplianceSummaryResponse({}));
|
|
47609
|
-
} else {
|
|
47610
|
-
return $dara.cast<GetComplianceSummaryResponse>(await this.execute(params, req, runtime), new GetComplianceSummaryResponse({}));
|
|
47611
|
-
}
|
|
47612
|
-
|
|
47514
|
+
return $dara.cast<GetComplianceSummaryResponse>(await this.callApi(params, req, runtime), new GetComplianceSummaryResponse({}));
|
|
47613
47515
|
}
|
|
47614
47516
|
|
|
47615
47517
|
/**
|
|
@@ -47652,12 +47554,7 @@ export default class Client extends OpenApi {
|
|
|
47652
47554
|
reqBodyType: "formData",
|
|
47653
47555
|
bodyType: "json",
|
|
47654
47556
|
});
|
|
47655
|
-
|
|
47656
|
-
return $dara.cast<GetConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetConfigDeliveryChannelResponse({}));
|
|
47657
|
-
} else {
|
|
47658
|
-
return $dara.cast<GetConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new GetConfigDeliveryChannelResponse({}));
|
|
47659
|
-
}
|
|
47660
|
-
|
|
47557
|
+
return $dara.cast<GetConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new GetConfigDeliveryChannelResponse({}));
|
|
47661
47558
|
}
|
|
47662
47559
|
|
|
47663
47560
|
/**
|
|
@@ -47712,12 +47609,7 @@ export default class Client extends OpenApi {
|
|
|
47712
47609
|
reqBodyType: "formData",
|
|
47713
47610
|
bodyType: "json",
|
|
47714
47611
|
});
|
|
47715
|
-
|
|
47716
|
-
return $dara.cast<GetConfigRuleResponse>(await this.callApi(params, req, runtime), new GetConfigRuleResponse({}));
|
|
47717
|
-
} else {
|
|
47718
|
-
return $dara.cast<GetConfigRuleResponse>(await this.execute(params, req, runtime), new GetConfigRuleResponse({}));
|
|
47719
|
-
}
|
|
47720
|
-
|
|
47612
|
+
return $dara.cast<GetConfigRuleResponse>(await this.callApi(params, req, runtime), new GetConfigRuleResponse({}));
|
|
47721
47613
|
}
|
|
47722
47614
|
|
|
47723
47615
|
/**
|
|
@@ -47761,12 +47653,7 @@ export default class Client extends OpenApi {
|
|
|
47761
47653
|
reqBodyType: "formData",
|
|
47762
47654
|
bodyType: "json",
|
|
47763
47655
|
});
|
|
47764
|
-
|
|
47765
|
-
return $dara.cast<GetConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetConfigRuleComplianceByPackResponse({}));
|
|
47766
|
-
} else {
|
|
47767
|
-
return $dara.cast<GetConfigRuleComplianceByPackResponse>(await this.execute(params, req, runtime), new GetConfigRuleComplianceByPackResponse({}));
|
|
47768
|
-
}
|
|
47769
|
-
|
|
47656
|
+
return $dara.cast<GetConfigRuleComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetConfigRuleComplianceByPackResponse({}));
|
|
47770
47657
|
}
|
|
47771
47658
|
|
|
47772
47659
|
/**
|
|
@@ -47806,12 +47693,7 @@ export default class Client extends OpenApi {
|
|
|
47806
47693
|
reqBodyType: "formData",
|
|
47807
47694
|
bodyType: "json",
|
|
47808
47695
|
});
|
|
47809
|
-
|
|
47810
|
-
return $dara.cast<GetConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetConfigRuleSummaryByRiskLevelResponse({}));
|
|
47811
|
-
} else {
|
|
47812
|
-
return $dara.cast<GetConfigRuleSummaryByRiskLevelResponse>(await this.execute(params, req, runtime), new GetConfigRuleSummaryByRiskLevelResponse({}));
|
|
47813
|
-
}
|
|
47814
|
-
|
|
47696
|
+
return $dara.cast<GetConfigRuleSummaryByRiskLevelResponse>(await this.callApi(params, req, runtime), new GetConfigRuleSummaryByRiskLevelResponse({}));
|
|
47815
47697
|
}
|
|
47816
47698
|
|
|
47817
47699
|
/**
|
|
@@ -47858,12 +47740,7 @@ export default class Client extends OpenApi {
|
|
|
47858
47740
|
reqBodyType: "formData",
|
|
47859
47741
|
bodyType: "json",
|
|
47860
47742
|
});
|
|
47861
|
-
|
|
47862
|
-
return $dara.cast<GetConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetConfigRulesReportResponse({}));
|
|
47863
|
-
} else {
|
|
47864
|
-
return $dara.cast<GetConfigRulesReportResponse>(await this.execute(params, req, runtime), new GetConfigRulesReportResponse({}));
|
|
47865
|
-
}
|
|
47866
|
-
|
|
47743
|
+
return $dara.cast<GetConfigRulesReportResponse>(await this.callApi(params, req, runtime), new GetConfigRulesReportResponse({}));
|
|
47867
47744
|
}
|
|
47868
47745
|
|
|
47869
47746
|
/**
|
|
@@ -47904,12 +47781,7 @@ export default class Client extends OpenApi {
|
|
|
47904
47781
|
reqBodyType: "formData",
|
|
47905
47782
|
bodyType: "json",
|
|
47906
47783
|
});
|
|
47907
|
-
|
|
47908
|
-
return $dara.cast<GetConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new GetConfigurationRecorderResponse({}));
|
|
47909
|
-
} else {
|
|
47910
|
-
return $dara.cast<GetConfigurationRecorderResponse>(await this.execute(params, req, runtime), new GetConfigurationRecorderResponse({}));
|
|
47911
|
-
}
|
|
47912
|
-
|
|
47784
|
+
return $dara.cast<GetConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new GetConfigurationRecorderResponse({}));
|
|
47913
47785
|
}
|
|
47914
47786
|
|
|
47915
47787
|
/**
|
|
@@ -47967,12 +47839,7 @@ export default class Client extends OpenApi {
|
|
|
47967
47839
|
reqBodyType: "formData",
|
|
47968
47840
|
bodyType: "json",
|
|
47969
47841
|
});
|
|
47970
|
-
|
|
47971
|
-
return $dara.cast<GetDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceResponse({}));
|
|
47972
|
-
} else {
|
|
47973
|
-
return $dara.cast<GetDiscoveredResourceResponse>(await this.execute(params, req, runtime), new GetDiscoveredResourceResponse({}));
|
|
47974
|
-
}
|
|
47975
|
-
|
|
47842
|
+
return $dara.cast<GetDiscoveredResourceResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceResponse({}));
|
|
47976
47843
|
}
|
|
47977
47844
|
|
|
47978
47845
|
/**
|
|
@@ -48020,12 +47887,7 @@ export default class Client extends OpenApi {
|
|
|
48020
47887
|
reqBodyType: "formData",
|
|
48021
47888
|
bodyType: "json",
|
|
48022
47889
|
});
|
|
48023
|
-
|
|
48024
|
-
return $dara.cast<GetDiscoveredResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByRegionResponse({}));
|
|
48025
|
-
} else {
|
|
48026
|
-
return $dara.cast<GetDiscoveredResourceCountsGroupByRegionResponse>(await this.execute(params, req, runtime), new GetDiscoveredResourceCountsGroupByRegionResponse({}));
|
|
48027
|
-
}
|
|
48028
|
-
|
|
47890
|
+
return $dara.cast<GetDiscoveredResourceCountsGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByRegionResponse({}));
|
|
48029
47891
|
}
|
|
48030
47892
|
|
|
48031
47893
|
/**
|
|
@@ -48073,12 +47935,7 @@ export default class Client extends OpenApi {
|
|
|
48073
47935
|
reqBodyType: "formData",
|
|
48074
47936
|
bodyType: "json",
|
|
48075
47937
|
});
|
|
48076
|
-
|
|
48077
|
-
return $dara.cast<GetDiscoveredResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByResourceTypeResponse({}));
|
|
48078
|
-
} else {
|
|
48079
|
-
return $dara.cast<GetDiscoveredResourceCountsGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetDiscoveredResourceCountsGroupByResourceTypeResponse({}));
|
|
48080
|
-
}
|
|
48081
|
-
|
|
47938
|
+
return $dara.cast<GetDiscoveredResourceCountsGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetDiscoveredResourceCountsGroupByResourceTypeResponse({}));
|
|
48082
47939
|
}
|
|
48083
47940
|
|
|
48084
47941
|
/**
|
|
@@ -48123,12 +47980,7 @@ export default class Client extends OpenApi {
|
|
|
48123
47980
|
reqBodyType: "formData",
|
|
48124
47981
|
bodyType: "json",
|
|
48125
47982
|
});
|
|
48126
|
-
|
|
48127
|
-
return $dara.cast<GetIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new GetIntegratedServiceStatusResponse({}));
|
|
48128
|
-
} else {
|
|
48129
|
-
return $dara.cast<GetIntegratedServiceStatusResponse>(await this.execute(params, req, runtime), new GetIntegratedServiceStatusResponse({}));
|
|
48130
|
-
}
|
|
48131
|
-
|
|
47983
|
+
return $dara.cast<GetIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new GetIntegratedServiceStatusResponse({}));
|
|
48132
47984
|
}
|
|
48133
47985
|
|
|
48134
47986
|
/**
|
|
@@ -48173,12 +48025,7 @@ export default class Client extends OpenApi {
|
|
|
48173
48025
|
reqBodyType: "formData",
|
|
48174
48026
|
bodyType: "json",
|
|
48175
48027
|
});
|
|
48176
|
-
|
|
48177
|
-
return $dara.cast<GetManagedRuleResponse>(await this.callApi(params, req, runtime), new GetManagedRuleResponse({}));
|
|
48178
|
-
} else {
|
|
48179
|
-
return $dara.cast<GetManagedRuleResponse>(await this.execute(params, req, runtime), new GetManagedRuleResponse({}));
|
|
48180
|
-
}
|
|
48181
|
-
|
|
48028
|
+
return $dara.cast<GetManagedRuleResponse>(await this.callApi(params, req, runtime), new GetManagedRuleResponse({}));
|
|
48182
48029
|
}
|
|
48183
48030
|
|
|
48184
48031
|
/**
|
|
@@ -48226,12 +48073,7 @@ export default class Client extends OpenApi {
|
|
|
48226
48073
|
reqBodyType: "formData",
|
|
48227
48074
|
bodyType: "json",
|
|
48228
48075
|
});
|
|
48229
|
-
|
|
48230
|
-
return $dara.cast<GetRemediationTemplateResponse>(await this.callApi(params, req, runtime), new GetRemediationTemplateResponse({}));
|
|
48231
|
-
} else {
|
|
48232
|
-
return $dara.cast<GetRemediationTemplateResponse>(await this.execute(params, req, runtime), new GetRemediationTemplateResponse({}));
|
|
48233
|
-
}
|
|
48234
|
-
|
|
48076
|
+
return $dara.cast<GetRemediationTemplateResponse>(await this.callApi(params, req, runtime), new GetRemediationTemplateResponse({}));
|
|
48235
48077
|
}
|
|
48236
48078
|
|
|
48237
48079
|
/**
|
|
@@ -48275,12 +48117,7 @@ export default class Client extends OpenApi {
|
|
|
48275
48117
|
reqBodyType: "formData",
|
|
48276
48118
|
bodyType: "json",
|
|
48277
48119
|
});
|
|
48278
|
-
|
|
48279
|
-
return $dara.cast<GetResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByConfigRuleResponse({}));
|
|
48280
|
-
} else {
|
|
48281
|
-
return $dara.cast<GetResourceComplianceByConfigRuleResponse>(await this.execute(params, req, runtime), new GetResourceComplianceByConfigRuleResponse({}));
|
|
48282
|
-
}
|
|
48283
|
-
|
|
48120
|
+
return $dara.cast<GetResourceComplianceByConfigRuleResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByConfigRuleResponse({}));
|
|
48284
48121
|
}
|
|
48285
48122
|
|
|
48286
48123
|
/**
|
|
@@ -48324,12 +48161,7 @@ export default class Client extends OpenApi {
|
|
|
48324
48161
|
reqBodyType: "formData",
|
|
48325
48162
|
bodyType: "json",
|
|
48326
48163
|
});
|
|
48327
|
-
|
|
48328
|
-
return $dara.cast<GetResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByPackResponse({}));
|
|
48329
|
-
} else {
|
|
48330
|
-
return $dara.cast<GetResourceComplianceByPackResponse>(await this.execute(params, req, runtime), new GetResourceComplianceByPackResponse({}));
|
|
48331
|
-
}
|
|
48332
|
-
|
|
48164
|
+
return $dara.cast<GetResourceComplianceByPackResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceByPackResponse({}));
|
|
48333
48165
|
}
|
|
48334
48166
|
|
|
48335
48167
|
/**
|
|
@@ -48374,12 +48206,7 @@ export default class Client extends OpenApi {
|
|
|
48374
48206
|
reqBodyType: "formData",
|
|
48375
48207
|
bodyType: "json",
|
|
48376
48208
|
});
|
|
48377
|
-
|
|
48378
|
-
return $dara.cast<GetResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByRegionResponse({}));
|
|
48379
|
-
} else {
|
|
48380
|
-
return $dara.cast<GetResourceComplianceGroupByRegionResponse>(await this.execute(params, req, runtime), new GetResourceComplianceGroupByRegionResponse({}));
|
|
48381
|
-
}
|
|
48382
|
-
|
|
48209
|
+
return $dara.cast<GetResourceComplianceGroupByRegionResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByRegionResponse({}));
|
|
48383
48210
|
}
|
|
48384
48211
|
|
|
48385
48212
|
/**
|
|
@@ -48421,12 +48248,7 @@ export default class Client extends OpenApi {
|
|
|
48421
48248
|
reqBodyType: "formData",
|
|
48422
48249
|
bodyType: "json",
|
|
48423
48250
|
});
|
|
48424
|
-
|
|
48425
|
-
return $dara.cast<GetResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByResourceTypeResponse({}));
|
|
48426
|
-
} else {
|
|
48427
|
-
return $dara.cast<GetResourceComplianceGroupByResourceTypeResponse>(await this.execute(params, req, runtime), new GetResourceComplianceGroupByResourceTypeResponse({}));
|
|
48428
|
-
}
|
|
48429
|
-
|
|
48251
|
+
return $dara.cast<GetResourceComplianceGroupByResourceTypeResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceGroupByResourceTypeResponse({}));
|
|
48430
48252
|
}
|
|
48431
48253
|
|
|
48432
48254
|
/**
|
|
@@ -48468,12 +48290,7 @@ export default class Client extends OpenApi {
|
|
|
48468
48290
|
reqBodyType: "formData",
|
|
48469
48291
|
bodyType: "json",
|
|
48470
48292
|
});
|
|
48471
|
-
|
|
48472
|
-
return $dara.cast<GetResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceTimelineResponse({}));
|
|
48473
|
-
} else {
|
|
48474
|
-
return $dara.cast<GetResourceComplianceTimelineResponse>(await this.execute(params, req, runtime), new GetResourceComplianceTimelineResponse({}));
|
|
48475
|
-
}
|
|
48476
|
-
|
|
48293
|
+
return $dara.cast<GetResourceComplianceTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceComplianceTimelineResponse({}));
|
|
48477
48294
|
}
|
|
48478
48295
|
|
|
48479
48296
|
/**
|
|
@@ -48518,12 +48335,7 @@ export default class Client extends OpenApi {
|
|
|
48518
48335
|
reqBodyType: "formData",
|
|
48519
48336
|
bodyType: "json",
|
|
48520
48337
|
});
|
|
48521
|
-
|
|
48522
|
-
return $dara.cast<GetResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceConfigurationTimelineResponse({}));
|
|
48523
|
-
} else {
|
|
48524
|
-
return $dara.cast<GetResourceConfigurationTimelineResponse>(await this.execute(params, req, runtime), new GetResourceConfigurationTimelineResponse({}));
|
|
48525
|
-
}
|
|
48526
|
-
|
|
48338
|
+
return $dara.cast<GetResourceConfigurationTimelineResponse>(await this.callApi(params, req, runtime), new GetResourceConfigurationTimelineResponse({}));
|
|
48527
48339
|
}
|
|
48528
48340
|
|
|
48529
48341
|
/**
|
|
@@ -48566,12 +48378,7 @@ export default class Client extends OpenApi {
|
|
|
48566
48378
|
reqBodyType: "formData",
|
|
48567
48379
|
bodyType: "json",
|
|
48568
48380
|
});
|
|
48569
|
-
|
|
48570
|
-
return $dara.cast<GetResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetResourceInventoryResponse({}));
|
|
48571
|
-
} else {
|
|
48572
|
-
return $dara.cast<GetResourceInventoryResponse>(await this.execute(params, req, runtime), new GetResourceInventoryResponse({}));
|
|
48573
|
-
}
|
|
48574
|
-
|
|
48381
|
+
return $dara.cast<GetResourceInventoryResponse>(await this.callApi(params, req, runtime), new GetResourceInventoryResponse({}));
|
|
48575
48382
|
}
|
|
48576
48383
|
|
|
48577
48384
|
/**
|
|
@@ -48620,12 +48427,7 @@ export default class Client extends OpenApi {
|
|
|
48620
48427
|
reqBodyType: "formData",
|
|
48621
48428
|
bodyType: "json",
|
|
48622
48429
|
});
|
|
48623
|
-
|
|
48624
|
-
return $dara.cast<GetSupportedResourceRelationConfigResponse>(await this.callApi(params, req, runtime), new GetSupportedResourceRelationConfigResponse({}));
|
|
48625
|
-
} else {
|
|
48626
|
-
return $dara.cast<GetSupportedResourceRelationConfigResponse>(await this.execute(params, req, runtime), new GetSupportedResourceRelationConfigResponse({}));
|
|
48627
|
-
}
|
|
48628
|
-
|
|
48430
|
+
return $dara.cast<GetSupportedResourceRelationConfigResponse>(await this.callApi(params, req, runtime), new GetSupportedResourceRelationConfigResponse({}));
|
|
48629
48431
|
}
|
|
48630
48432
|
|
|
48631
48433
|
/**
|
|
@@ -48696,12 +48498,7 @@ export default class Client extends OpenApi {
|
|
|
48696
48498
|
reqBodyType: "formData",
|
|
48697
48499
|
bodyType: "json",
|
|
48698
48500
|
});
|
|
48699
|
-
|
|
48700
|
-
return $dara.cast<IgnoreAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreAggregateEvaluationResultsResponse({}));
|
|
48701
|
-
} else {
|
|
48702
|
-
return $dara.cast<IgnoreAggregateEvaluationResultsResponse>(await this.execute(params, req, runtime), new IgnoreAggregateEvaluationResultsResponse({}));
|
|
48703
|
-
}
|
|
48704
|
-
|
|
48501
|
+
return $dara.cast<IgnoreAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreAggregateEvaluationResultsResponse({}));
|
|
48705
48502
|
}
|
|
48706
48503
|
|
|
48707
48504
|
/**
|
|
@@ -48769,12 +48566,7 @@ export default class Client extends OpenApi {
|
|
|
48769
48566
|
reqBodyType: "formData",
|
|
48770
48567
|
bodyType: "json",
|
|
48771
48568
|
});
|
|
48772
|
-
|
|
48773
|
-
return $dara.cast<IgnoreEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreEvaluationResultsResponse({}));
|
|
48774
|
-
} else {
|
|
48775
|
-
return $dara.cast<IgnoreEvaluationResultsResponse>(await this.execute(params, req, runtime), new IgnoreEvaluationResultsResponse({}));
|
|
48776
|
-
}
|
|
48777
|
-
|
|
48569
|
+
return $dara.cast<IgnoreEvaluationResultsResponse>(await this.callApi(params, req, runtime), new IgnoreEvaluationResultsResponse({}));
|
|
48778
48570
|
}
|
|
48779
48571
|
|
|
48780
48572
|
/**
|
|
@@ -48845,12 +48637,7 @@ export default class Client extends OpenApi {
|
|
|
48845
48637
|
reqBodyType: "formData",
|
|
48846
48638
|
bodyType: "json",
|
|
48847
48639
|
});
|
|
48848
|
-
|
|
48849
|
-
return $dara.cast<ListAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListAggregateCompliancePacksResponse({}));
|
|
48850
|
-
} else {
|
|
48851
|
-
return $dara.cast<ListAggregateCompliancePacksResponse>(await this.execute(params, req, runtime), new ListAggregateCompliancePacksResponse({}));
|
|
48852
|
-
}
|
|
48853
|
-
|
|
48640
|
+
return $dara.cast<ListAggregateCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListAggregateCompliancePacksResponse({}));
|
|
48854
48641
|
}
|
|
48855
48642
|
|
|
48856
48643
|
/**
|
|
@@ -48899,12 +48686,7 @@ export default class Client extends OpenApi {
|
|
|
48899
48686
|
reqBodyType: "formData",
|
|
48900
48687
|
bodyType: "json",
|
|
48901
48688
|
});
|
|
48902
|
-
|
|
48903
|
-
return $dara.cast<ListAggregateConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigDeliveryChannelsResponse({}));
|
|
48904
|
-
} else {
|
|
48905
|
-
return $dara.cast<ListAggregateConfigDeliveryChannelsResponse>(await this.execute(params, req, runtime), new ListAggregateConfigDeliveryChannelsResponse({}));
|
|
48906
|
-
}
|
|
48907
|
-
|
|
48689
|
+
return $dara.cast<ListAggregateConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigDeliveryChannelsResponse({}));
|
|
48908
48690
|
}
|
|
48909
48691
|
|
|
48910
48692
|
/**
|
|
@@ -48989,12 +48771,7 @@ export default class Client extends OpenApi {
|
|
|
48989
48771
|
reqBodyType: "formData",
|
|
48990
48772
|
bodyType: "json",
|
|
48991
48773
|
});
|
|
48992
|
-
|
|
48993
|
-
return $dara.cast<ListAggregateConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationResultsResponse({}));
|
|
48994
|
-
} else {
|
|
48995
|
-
return $dara.cast<ListAggregateConfigRuleEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListAggregateConfigRuleEvaluationResultsResponse({}));
|
|
48996
|
-
}
|
|
48997
|
-
|
|
48774
|
+
return $dara.cast<ListAggregateConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationResultsResponse({}));
|
|
48998
48775
|
}
|
|
48999
48776
|
|
|
49000
48777
|
/**
|
|
@@ -49042,12 +48819,7 @@ export default class Client extends OpenApi {
|
|
|
49042
48819
|
reqBodyType: "formData",
|
|
49043
48820
|
bodyType: "json",
|
|
49044
48821
|
});
|
|
49045
|
-
|
|
49046
|
-
return $dara.cast<ListAggregateConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationStatisticsResponse({}));
|
|
49047
|
-
} else {
|
|
49048
|
-
return $dara.cast<ListAggregateConfigRuleEvaluationStatisticsResponse>(await this.execute(params, req, runtime), new ListAggregateConfigRuleEvaluationStatisticsResponse({}));
|
|
49049
|
-
}
|
|
49050
|
-
|
|
48822
|
+
return $dara.cast<ListAggregateConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRuleEvaluationStatisticsResponse({}));
|
|
49051
48823
|
}
|
|
49052
48824
|
|
|
49053
48825
|
/**
|
|
@@ -49141,12 +48913,7 @@ export default class Client extends OpenApi {
|
|
|
49141
48913
|
reqBodyType: "formData",
|
|
49142
48914
|
bodyType: "json",
|
|
49143
48915
|
});
|
|
49144
|
-
|
|
49145
|
-
return $dara.cast<ListAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRulesResponse({}));
|
|
49146
|
-
} else {
|
|
49147
|
-
return $dara.cast<ListAggregateConfigRulesResponse>(await this.execute(params, req, runtime), new ListAggregateConfigRulesResponse({}));
|
|
49148
|
-
}
|
|
49149
|
-
|
|
48916
|
+
return $dara.cast<ListAggregateConfigRulesResponse>(await this.callApi(params, req, runtime), new ListAggregateConfigRulesResponse({}));
|
|
49150
48917
|
}
|
|
49151
48918
|
|
|
49152
48919
|
/**
|
|
@@ -49238,12 +49005,7 @@ export default class Client extends OpenApi {
|
|
|
49238
49005
|
reqBodyType: "formData",
|
|
49239
49006
|
bodyType: "json",
|
|
49240
49007
|
});
|
|
49241
|
-
|
|
49242
|
-
return $dara.cast<ListAggregateDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListAggregateDiscoveredResourcesResponse({}));
|
|
49243
|
-
} else {
|
|
49244
|
-
return $dara.cast<ListAggregateDiscoveredResourcesResponse>(await this.execute(params, req, runtime), new ListAggregateDiscoveredResourcesResponse({}));
|
|
49245
|
-
}
|
|
49246
|
-
|
|
49008
|
+
return $dara.cast<ListAggregateDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListAggregateDiscoveredResourcesResponse({}));
|
|
49247
49009
|
}
|
|
49248
49010
|
|
|
49249
49011
|
/**
|
|
@@ -49311,12 +49073,7 @@ export default class Client extends OpenApi {
|
|
|
49311
49073
|
reqBodyType: "formData",
|
|
49312
49074
|
bodyType: "json",
|
|
49313
49075
|
});
|
|
49314
|
-
|
|
49315
|
-
return $dara.cast<ListAggregateRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationExecutionsResponse({}));
|
|
49316
|
-
} else {
|
|
49317
|
-
return $dara.cast<ListAggregateRemediationExecutionsResponse>(await this.execute(params, req, runtime), new ListAggregateRemediationExecutionsResponse({}));
|
|
49318
|
-
}
|
|
49319
|
-
|
|
49076
|
+
return $dara.cast<ListAggregateRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationExecutionsResponse({}));
|
|
49320
49077
|
}
|
|
49321
49078
|
|
|
49322
49079
|
/**
|
|
@@ -49368,12 +49125,7 @@ export default class Client extends OpenApi {
|
|
|
49368
49125
|
reqBodyType: "formData",
|
|
49369
49126
|
bodyType: "json",
|
|
49370
49127
|
});
|
|
49371
|
-
|
|
49372
|
-
return $dara.cast<ListAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationsResponse({}));
|
|
49373
|
-
} else {
|
|
49374
|
-
return $dara.cast<ListAggregateRemediationsResponse>(await this.execute(params, req, runtime), new ListAggregateRemediationsResponse({}));
|
|
49375
|
-
}
|
|
49376
|
-
|
|
49128
|
+
return $dara.cast<ListAggregateRemediationsResponse>(await this.callApi(params, req, runtime), new ListAggregateRemediationsResponse({}));
|
|
49377
49129
|
}
|
|
49378
49130
|
|
|
49379
49131
|
/**
|
|
@@ -49445,12 +49197,7 @@ export default class Client extends OpenApi {
|
|
|
49445
49197
|
reqBodyType: "formData",
|
|
49446
49198
|
bodyType: "json",
|
|
49447
49199
|
});
|
|
49448
|
-
|
|
49449
|
-
return $dara.cast<ListAggregateResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceEvaluationResultsResponse({}));
|
|
49450
|
-
} else {
|
|
49451
|
-
return $dara.cast<ListAggregateResourceEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListAggregateResourceEvaluationResultsResponse({}));
|
|
49452
|
-
}
|
|
49453
|
-
|
|
49200
|
+
return $dara.cast<ListAggregateResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceEvaluationResultsResponse({}));
|
|
49454
49201
|
}
|
|
49455
49202
|
|
|
49456
49203
|
/**
|
|
@@ -49534,12 +49281,7 @@ export default class Client extends OpenApi {
|
|
|
49534
49281
|
reqBodyType: "formData",
|
|
49535
49282
|
bodyType: "json",
|
|
49536
49283
|
});
|
|
49537
|
-
|
|
49538
|
-
return $dara.cast<ListAggregateResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceRelationsResponse({}));
|
|
49539
|
-
} else {
|
|
49540
|
-
return $dara.cast<ListAggregateResourceRelationsResponse>(await this.execute(params, req, runtime), new ListAggregateResourceRelationsResponse({}));
|
|
49541
|
-
}
|
|
49542
|
-
|
|
49284
|
+
return $dara.cast<ListAggregateResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListAggregateResourceRelationsResponse({}));
|
|
49543
49285
|
}
|
|
49544
49286
|
|
|
49545
49287
|
/**
|
|
@@ -49595,12 +49337,7 @@ export default class Client extends OpenApi {
|
|
|
49595
49337
|
reqBodyType: "formData",
|
|
49596
49338
|
bodyType: "json",
|
|
49597
49339
|
});
|
|
49598
|
-
|
|
49599
|
-
return $dara.cast<ListAggregateResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListAggregateResourcesByAdvancedSearchResponse({}));
|
|
49600
|
-
} else {
|
|
49601
|
-
return $dara.cast<ListAggregateResourcesByAdvancedSearchResponse>(await this.execute(params, req, runtime), new ListAggregateResourcesByAdvancedSearchResponse({}));
|
|
49602
|
-
}
|
|
49603
|
-
|
|
49340
|
+
return $dara.cast<ListAggregateResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListAggregateResourcesByAdvancedSearchResponse({}));
|
|
49604
49341
|
}
|
|
49605
49342
|
|
|
49606
49343
|
/**
|
|
@@ -49666,12 +49403,7 @@ export default class Client extends OpenApi {
|
|
|
49666
49403
|
reqBodyType: "formData",
|
|
49667
49404
|
bodyType: "json",
|
|
49668
49405
|
});
|
|
49669
|
-
|
|
49670
|
-
return $dara.cast<ListAggregatorsResponse>(await this.callApi(params, req, runtime), new ListAggregatorsResponse({}));
|
|
49671
|
-
} else {
|
|
49672
|
-
return $dara.cast<ListAggregatorsResponse>(await this.execute(params, req, runtime), new ListAggregatorsResponse({}));
|
|
49673
|
-
}
|
|
49674
|
-
|
|
49406
|
+
return $dara.cast<ListAggregatorsResponse>(await this.callApi(params, req, runtime), new ListAggregatorsResponse({}));
|
|
49675
49407
|
}
|
|
49676
49408
|
|
|
49677
49409
|
/**
|
|
@@ -49731,12 +49463,7 @@ export default class Client extends OpenApi {
|
|
|
49731
49463
|
reqBodyType: "formData",
|
|
49732
49464
|
bodyType: "json",
|
|
49733
49465
|
});
|
|
49734
|
-
|
|
49735
|
-
return $dara.cast<ListCompliancePackTemplatesResponse>(await this.callApi(params, req, runtime), new ListCompliancePackTemplatesResponse({}));
|
|
49736
|
-
} else {
|
|
49737
|
-
return $dara.cast<ListCompliancePackTemplatesResponse>(await this.execute(params, req, runtime), new ListCompliancePackTemplatesResponse({}));
|
|
49738
|
-
}
|
|
49739
|
-
|
|
49466
|
+
return $dara.cast<ListCompliancePackTemplatesResponse>(await this.callApi(params, req, runtime), new ListCompliancePackTemplatesResponse({}));
|
|
49740
49467
|
}
|
|
49741
49468
|
|
|
49742
49469
|
/**
|
|
@@ -49802,12 +49529,7 @@ export default class Client extends OpenApi {
|
|
|
49802
49529
|
reqBodyType: "formData",
|
|
49803
49530
|
bodyType: "json",
|
|
49804
49531
|
});
|
|
49805
|
-
|
|
49806
|
-
return $dara.cast<ListCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListCompliancePacksResponse({}));
|
|
49807
|
-
} else {
|
|
49808
|
-
return $dara.cast<ListCompliancePacksResponse>(await this.execute(params, req, runtime), new ListCompliancePacksResponse({}));
|
|
49809
|
-
}
|
|
49810
|
-
|
|
49532
|
+
return $dara.cast<ListCompliancePacksResponse>(await this.callApi(params, req, runtime), new ListCompliancePacksResponse({}));
|
|
49811
49533
|
}
|
|
49812
49534
|
|
|
49813
49535
|
/**
|
|
@@ -49852,12 +49574,7 @@ export default class Client extends OpenApi {
|
|
|
49852
49574
|
reqBodyType: "formData",
|
|
49853
49575
|
bodyType: "json",
|
|
49854
49576
|
});
|
|
49855
|
-
|
|
49856
|
-
return $dara.cast<ListConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListConfigDeliveryChannelsResponse({}));
|
|
49857
|
-
} else {
|
|
49858
|
-
return $dara.cast<ListConfigDeliveryChannelsResponse>(await this.execute(params, req, runtime), new ListConfigDeliveryChannelsResponse({}));
|
|
49859
|
-
}
|
|
49860
|
-
|
|
49577
|
+
return $dara.cast<ListConfigDeliveryChannelsResponse>(await this.callApi(params, req, runtime), new ListConfigDeliveryChannelsResponse({}));
|
|
49861
49578
|
}
|
|
49862
49579
|
|
|
49863
49580
|
/**
|
|
@@ -49898,12 +49615,7 @@ export default class Client extends OpenApi {
|
|
|
49898
49615
|
reqBodyType: "formData",
|
|
49899
49616
|
bodyType: "json",
|
|
49900
49617
|
});
|
|
49901
|
-
|
|
49902
|
-
return $dara.cast<ListConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationResultsResponse({}));
|
|
49903
|
-
} else {
|
|
49904
|
-
return $dara.cast<ListConfigRuleEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListConfigRuleEvaluationResultsResponse({}));
|
|
49905
|
-
}
|
|
49906
|
-
|
|
49618
|
+
return $dara.cast<ListConfigRuleEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationResultsResponse({}));
|
|
49907
49619
|
}
|
|
49908
49620
|
|
|
49909
49621
|
/**
|
|
@@ -49940,12 +49652,7 @@ export default class Client extends OpenApi {
|
|
|
49940
49652
|
reqBodyType: "formData",
|
|
49941
49653
|
bodyType: "json",
|
|
49942
49654
|
});
|
|
49943
|
-
|
|
49944
|
-
return $dara.cast<ListConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationStatisticsResponse({}));
|
|
49945
|
-
} else {
|
|
49946
|
-
return $dara.cast<ListConfigRuleEvaluationStatisticsResponse>(await this.execute(params, req, runtime), new ListConfigRuleEvaluationStatisticsResponse({}));
|
|
49947
|
-
}
|
|
49948
|
-
|
|
49655
|
+
return $dara.cast<ListConfigRuleEvaluationStatisticsResponse>(await this.callApi(params, req, runtime), new ListConfigRuleEvaluationStatisticsResponse({}));
|
|
49949
49656
|
}
|
|
49950
49657
|
|
|
49951
49658
|
/**
|
|
@@ -50030,12 +49737,7 @@ export default class Client extends OpenApi {
|
|
|
50030
49737
|
reqBodyType: "formData",
|
|
50031
49738
|
bodyType: "json",
|
|
50032
49739
|
});
|
|
50033
|
-
|
|
50034
|
-
return $dara.cast<ListConfigRulesResponse>(await this.callApi(params, req, runtime), new ListConfigRulesResponse({}));
|
|
50035
|
-
} else {
|
|
50036
|
-
return $dara.cast<ListConfigRulesResponse>(await this.execute(params, req, runtime), new ListConfigRulesResponse({}));
|
|
50037
|
-
}
|
|
50038
|
-
|
|
49740
|
+
return $dara.cast<ListConfigRulesResponse>(await this.callApi(params, req, runtime), new ListConfigRulesResponse({}));
|
|
50039
49741
|
}
|
|
50040
49742
|
|
|
50041
49743
|
/**
|
|
@@ -50115,12 +49817,7 @@ export default class Client extends OpenApi {
|
|
|
50115
49817
|
reqBodyType: "formData",
|
|
50116
49818
|
bodyType: "json",
|
|
50117
49819
|
});
|
|
50118
|
-
|
|
50119
|
-
return $dara.cast<ListDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListDiscoveredResourcesResponse({}));
|
|
50120
|
-
} else {
|
|
50121
|
-
return $dara.cast<ListDiscoveredResourcesResponse>(await this.execute(params, req, runtime), new ListDiscoveredResourcesResponse({}));
|
|
50122
|
-
}
|
|
50123
|
-
|
|
49820
|
+
return $dara.cast<ListDiscoveredResourcesResponse>(await this.callApi(params, req, runtime), new ListDiscoveredResourcesResponse({}));
|
|
50124
49821
|
}
|
|
50125
49822
|
|
|
50126
49823
|
/**
|
|
@@ -50160,12 +49857,7 @@ export default class Client extends OpenApi {
|
|
|
50160
49857
|
reqBodyType: "formData",
|
|
50161
49858
|
bodyType: "json",
|
|
50162
49859
|
});
|
|
50163
|
-
|
|
50164
|
-
return $dara.cast<ListIntegratedServiceResponse>(await this.callApi(params, req, runtime), new ListIntegratedServiceResponse({}));
|
|
50165
|
-
} else {
|
|
50166
|
-
return $dara.cast<ListIntegratedServiceResponse>(await this.execute(params, req, runtime), new ListIntegratedServiceResponse({}));
|
|
50167
|
-
}
|
|
50168
|
-
|
|
49860
|
+
return $dara.cast<ListIntegratedServiceResponse>(await this.callApi(params, req, runtime), new ListIntegratedServiceResponse({}));
|
|
50169
49861
|
}
|
|
50170
49862
|
|
|
50171
49863
|
/**
|
|
@@ -50234,12 +49926,7 @@ export default class Client extends OpenApi {
|
|
|
50234
49926
|
reqBodyType: "formData",
|
|
50235
49927
|
bodyType: "json",
|
|
50236
49928
|
});
|
|
50237
|
-
|
|
50238
|
-
return $dara.cast<ListManagedRulesResponse>(await this.callApi(params, req, runtime), new ListManagedRulesResponse({}));
|
|
50239
|
-
} else {
|
|
50240
|
-
return $dara.cast<ListManagedRulesResponse>(await this.execute(params, req, runtime), new ListManagedRulesResponse({}));
|
|
50241
|
-
}
|
|
50242
|
-
|
|
49929
|
+
return $dara.cast<ListManagedRulesResponse>(await this.callApi(params, req, runtime), new ListManagedRulesResponse({}));
|
|
50243
49930
|
}
|
|
50244
49931
|
|
|
50245
49932
|
/**
|
|
@@ -50305,12 +49992,7 @@ export default class Client extends OpenApi {
|
|
|
50305
49992
|
reqBodyType: "formData",
|
|
50306
49993
|
bodyType: "json",
|
|
50307
49994
|
});
|
|
50308
|
-
|
|
50309
|
-
return $dara.cast<ListPreManagedRulesResponse>(await this.callApi(params, req, runtime), new ListPreManagedRulesResponse({}));
|
|
50310
|
-
} else {
|
|
50311
|
-
return $dara.cast<ListPreManagedRulesResponse>(await this.execute(params, req, runtime), new ListPreManagedRulesResponse({}));
|
|
50312
|
-
}
|
|
50313
|
-
|
|
49995
|
+
return $dara.cast<ListPreManagedRulesResponse>(await this.callApi(params, req, runtime), new ListPreManagedRulesResponse({}));
|
|
50314
49996
|
}
|
|
50315
49997
|
|
|
50316
49998
|
/**
|
|
@@ -50371,12 +50053,7 @@ export default class Client extends OpenApi {
|
|
|
50371
50053
|
reqBodyType: "formData",
|
|
50372
50054
|
bodyType: "json",
|
|
50373
50055
|
});
|
|
50374
|
-
|
|
50375
|
-
return $dara.cast<ListRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListRemediationExecutionsResponse({}));
|
|
50376
|
-
} else {
|
|
50377
|
-
return $dara.cast<ListRemediationExecutionsResponse>(await this.execute(params, req, runtime), new ListRemediationExecutionsResponse({}));
|
|
50378
|
-
}
|
|
50379
|
-
|
|
50056
|
+
return $dara.cast<ListRemediationExecutionsResponse>(await this.callApi(params, req, runtime), new ListRemediationExecutionsResponse({}));
|
|
50380
50057
|
}
|
|
50381
50058
|
|
|
50382
50059
|
/**
|
|
@@ -50436,12 +50113,7 @@ export default class Client extends OpenApi {
|
|
|
50436
50113
|
reqBodyType: "formData",
|
|
50437
50114
|
bodyType: "json",
|
|
50438
50115
|
});
|
|
50439
|
-
|
|
50440
|
-
return $dara.cast<ListRemediationTemplatesResponse>(await this.callApi(params, req, runtime), new ListRemediationTemplatesResponse({}));
|
|
50441
|
-
} else {
|
|
50442
|
-
return $dara.cast<ListRemediationTemplatesResponse>(await this.execute(params, req, runtime), new ListRemediationTemplatesResponse({}));
|
|
50443
|
-
}
|
|
50444
|
-
|
|
50116
|
+
return $dara.cast<ListRemediationTemplatesResponse>(await this.callApi(params, req, runtime), new ListRemediationTemplatesResponse({}));
|
|
50445
50117
|
}
|
|
50446
50118
|
|
|
50447
50119
|
/**
|
|
@@ -50497,12 +50169,7 @@ export default class Client extends OpenApi {
|
|
|
50497
50169
|
reqBodyType: "formData",
|
|
50498
50170
|
bodyType: "json",
|
|
50499
50171
|
});
|
|
50500
|
-
|
|
50501
|
-
return $dara.cast<ListRemediationsResponse>(await this.callApi(params, req, runtime), new ListRemediationsResponse({}));
|
|
50502
|
-
} else {
|
|
50503
|
-
return $dara.cast<ListRemediationsResponse>(await this.execute(params, req, runtime), new ListRemediationsResponse({}));
|
|
50504
|
-
}
|
|
50505
|
-
|
|
50172
|
+
return $dara.cast<ListRemediationsResponse>(await this.callApi(params, req, runtime), new ListRemediationsResponse({}));
|
|
50506
50173
|
}
|
|
50507
50174
|
|
|
50508
50175
|
/**
|
|
@@ -50570,12 +50237,7 @@ export default class Client extends OpenApi {
|
|
|
50570
50237
|
reqBodyType: "formData",
|
|
50571
50238
|
bodyType: "json",
|
|
50572
50239
|
});
|
|
50573
|
-
|
|
50574
|
-
return $dara.cast<ListResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListResourceEvaluationResultsResponse({}));
|
|
50575
|
-
} else {
|
|
50576
|
-
return $dara.cast<ListResourceEvaluationResultsResponse>(await this.execute(params, req, runtime), new ListResourceEvaluationResultsResponse({}));
|
|
50577
|
-
}
|
|
50578
|
-
|
|
50240
|
+
return $dara.cast<ListResourceEvaluationResultsResponse>(await this.callApi(params, req, runtime), new ListResourceEvaluationResultsResponse({}));
|
|
50579
50241
|
}
|
|
50580
50242
|
|
|
50581
50243
|
/**
|
|
@@ -50652,12 +50314,7 @@ export default class Client extends OpenApi {
|
|
|
50652
50314
|
reqBodyType: "formData",
|
|
50653
50315
|
bodyType: "json",
|
|
50654
50316
|
});
|
|
50655
|
-
|
|
50656
|
-
return $dara.cast<ListResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListResourceRelationsResponse({}));
|
|
50657
|
-
} else {
|
|
50658
|
-
return $dara.cast<ListResourceRelationsResponse>(await this.execute(params, req, runtime), new ListResourceRelationsResponse({}));
|
|
50659
|
-
}
|
|
50660
|
-
|
|
50317
|
+
return $dara.cast<ListResourceRelationsResponse>(await this.callApi(params, req, runtime), new ListResourceRelationsResponse({}));
|
|
50661
50318
|
}
|
|
50662
50319
|
|
|
50663
50320
|
/**
|
|
@@ -50710,12 +50367,7 @@ export default class Client extends OpenApi {
|
|
|
50710
50367
|
reqBodyType: "formData",
|
|
50711
50368
|
bodyType: "json",
|
|
50712
50369
|
});
|
|
50713
|
-
|
|
50714
|
-
return $dara.cast<ListResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListResourcesByAdvancedSearchResponse({}));
|
|
50715
|
-
} else {
|
|
50716
|
-
return $dara.cast<ListResourcesByAdvancedSearchResponse>(await this.execute(params, req, runtime), new ListResourcesByAdvancedSearchResponse({}));
|
|
50717
|
-
}
|
|
50718
|
-
|
|
50370
|
+
return $dara.cast<ListResourcesByAdvancedSearchResponse>(await this.callApi(params, req, runtime), new ListResourcesByAdvancedSearchResponse({}));
|
|
50719
50371
|
}
|
|
50720
50372
|
|
|
50721
50373
|
/**
|
|
@@ -50771,12 +50423,7 @@ export default class Client extends OpenApi {
|
|
|
50771
50423
|
reqBodyType: "formData",
|
|
50772
50424
|
bodyType: "json",
|
|
50773
50425
|
});
|
|
50774
|
-
|
|
50775
|
-
return $dara.cast<ListSupportedProductsResponse>(await this.callApi(params, req, runtime), new ListSupportedProductsResponse({}));
|
|
50776
|
-
} else {
|
|
50777
|
-
return $dara.cast<ListSupportedProductsResponse>(await this.execute(params, req, runtime), new ListSupportedProductsResponse({}));
|
|
50778
|
-
}
|
|
50779
|
-
|
|
50426
|
+
return $dara.cast<ListSupportedProductsResponse>(await this.callApi(params, req, runtime), new ListSupportedProductsResponse({}));
|
|
50780
50427
|
}
|
|
50781
50428
|
|
|
50782
50429
|
/**
|
|
@@ -50843,12 +50490,7 @@ export default class Client extends OpenApi {
|
|
|
50843
50490
|
reqBodyType: "formData",
|
|
50844
50491
|
bodyType: "json",
|
|
50845
50492
|
});
|
|
50846
|
-
|
|
50847
|
-
return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
50848
|
-
} else {
|
|
50849
|
-
return $dara.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
|
|
50850
|
-
}
|
|
50851
|
-
|
|
50493
|
+
return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
50852
50494
|
}
|
|
50853
50495
|
|
|
50854
50496
|
/**
|
|
@@ -50901,12 +50543,7 @@ export default class Client extends OpenApi {
|
|
|
50901
50543
|
reqBodyType: "formData",
|
|
50902
50544
|
bodyType: "json",
|
|
50903
50545
|
});
|
|
50904
|
-
|
|
50905
|
-
return $dara.cast<PutEvaluationsResponse>(await this.callApi(params, req, runtime), new PutEvaluationsResponse({}));
|
|
50906
|
-
} else {
|
|
50907
|
-
return $dara.cast<PutEvaluationsResponse>(await this.execute(params, req, runtime), new PutEvaluationsResponse({}));
|
|
50908
|
-
}
|
|
50909
|
-
|
|
50546
|
+
return $dara.cast<PutEvaluationsResponse>(await this.callApi(params, req, runtime), new PutEvaluationsResponse({}));
|
|
50910
50547
|
}
|
|
50911
50548
|
|
|
50912
50549
|
/**
|
|
@@ -50971,12 +50608,7 @@ export default class Client extends OpenApi {
|
|
|
50971
50608
|
reqBodyType: "formData",
|
|
50972
50609
|
bodyType: "json",
|
|
50973
50610
|
});
|
|
50974
|
-
|
|
50975
|
-
return $dara.cast<RevertAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertAggregateEvaluationResultsResponse({}));
|
|
50976
|
-
} else {
|
|
50977
|
-
return $dara.cast<RevertAggregateEvaluationResultsResponse>(await this.execute(params, req, runtime), new RevertAggregateEvaluationResultsResponse({}));
|
|
50978
|
-
}
|
|
50979
|
-
|
|
50611
|
+
return $dara.cast<RevertAggregateEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertAggregateEvaluationResultsResponse({}));
|
|
50980
50612
|
}
|
|
50981
50613
|
|
|
50982
50614
|
/**
|
|
@@ -51040,12 +50672,7 @@ export default class Client extends OpenApi {
|
|
|
51040
50672
|
reqBodyType: "formData",
|
|
51041
50673
|
bodyType: "json",
|
|
51042
50674
|
});
|
|
51043
|
-
|
|
51044
|
-
return $dara.cast<RevertEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertEvaluationResultsResponse({}));
|
|
51045
|
-
} else {
|
|
51046
|
-
return $dara.cast<RevertEvaluationResultsResponse>(await this.execute(params, req, runtime), new RevertEvaluationResultsResponse({}));
|
|
51047
|
-
}
|
|
51048
|
-
|
|
50675
|
+
return $dara.cast<RevertEvaluationResultsResponse>(await this.callApi(params, req, runtime), new RevertEvaluationResultsResponse({}));
|
|
51049
50676
|
}
|
|
51050
50677
|
|
|
51051
50678
|
/**
|
|
@@ -51109,12 +50736,7 @@ export default class Client extends OpenApi {
|
|
|
51109
50736
|
reqBodyType: "formData",
|
|
51110
50737
|
bodyType: "json",
|
|
51111
50738
|
});
|
|
51112
|
-
|
|
51113
|
-
return $dara.cast<StartAggregateConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartAggregateConfigRuleEvaluationResponse({}));
|
|
51114
|
-
} else {
|
|
51115
|
-
return $dara.cast<StartAggregateConfigRuleEvaluationResponse>(await this.execute(params, req, runtime), new StartAggregateConfigRuleEvaluationResponse({}));
|
|
51116
|
-
}
|
|
51117
|
-
|
|
50739
|
+
return $dara.cast<StartAggregateConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartAggregateConfigRuleEvaluationResponse({}));
|
|
51118
50740
|
}
|
|
51119
50741
|
|
|
51120
50742
|
/**
|
|
@@ -51171,12 +50793,7 @@ export default class Client extends OpenApi {
|
|
|
51171
50793
|
reqBodyType: "formData",
|
|
51172
50794
|
bodyType: "json",
|
|
51173
50795
|
});
|
|
51174
|
-
|
|
51175
|
-
return $dara.cast<StartAggregateRemediationResponse>(await this.callApi(params, req, runtime), new StartAggregateRemediationResponse({}));
|
|
51176
|
-
} else {
|
|
51177
|
-
return $dara.cast<StartAggregateRemediationResponse>(await this.execute(params, req, runtime), new StartAggregateRemediationResponse({}));
|
|
51178
|
-
}
|
|
51179
|
-
|
|
50796
|
+
return $dara.cast<StartAggregateRemediationResponse>(await this.callApi(params, req, runtime), new StartAggregateRemediationResponse({}));
|
|
51180
50797
|
}
|
|
51181
50798
|
|
|
51182
50799
|
/**
|
|
@@ -51232,12 +50849,7 @@ export default class Client extends OpenApi {
|
|
|
51232
50849
|
reqBodyType: "formData",
|
|
51233
50850
|
bodyType: "json",
|
|
51234
50851
|
});
|
|
51235
|
-
|
|
51236
|
-
return $dara.cast<StartConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartConfigRuleEvaluationResponse({}));
|
|
51237
|
-
} else {
|
|
51238
|
-
return $dara.cast<StartConfigRuleEvaluationResponse>(await this.execute(params, req, runtime), new StartConfigRuleEvaluationResponse({}));
|
|
51239
|
-
}
|
|
51240
|
-
|
|
50852
|
+
return $dara.cast<StartConfigRuleEvaluationResponse>(await this.callApi(params, req, runtime), new StartConfigRuleEvaluationResponse({}));
|
|
51241
50853
|
}
|
|
51242
50854
|
|
|
51243
50855
|
/**
|
|
@@ -51277,12 +50889,7 @@ export default class Client extends OpenApi {
|
|
|
51277
50889
|
reqBodyType: "formData",
|
|
51278
50890
|
bodyType: "json",
|
|
51279
50891
|
});
|
|
51280
|
-
|
|
51281
|
-
return $dara.cast<StartConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StartConfigurationRecorderResponse({}));
|
|
51282
|
-
} else {
|
|
51283
|
-
return $dara.cast<StartConfigurationRecorderResponse>(await this.execute(params, req, runtime), new StartConfigurationRecorderResponse({}));
|
|
51284
|
-
}
|
|
51285
|
-
|
|
50892
|
+
return $dara.cast<StartConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StartConfigurationRecorderResponse({}));
|
|
51286
50893
|
}
|
|
51287
50894
|
|
|
51288
50895
|
/**
|
|
@@ -51328,12 +50935,7 @@ export default class Client extends OpenApi {
|
|
|
51328
50935
|
reqBodyType: "formData",
|
|
51329
50936
|
bodyType: "json",
|
|
51330
50937
|
});
|
|
51331
|
-
|
|
51332
|
-
return $dara.cast<StartRemediationResponse>(await this.callApi(params, req, runtime), new StartRemediationResponse({}));
|
|
51333
|
-
} else {
|
|
51334
|
-
return $dara.cast<StartRemediationResponse>(await this.execute(params, req, runtime), new StartRemediationResponse({}));
|
|
51335
|
-
}
|
|
51336
|
-
|
|
50938
|
+
return $dara.cast<StartRemediationResponse>(await this.callApi(params, req, runtime), new StartRemediationResponse({}));
|
|
51337
50939
|
}
|
|
51338
50940
|
|
|
51339
50941
|
/**
|
|
@@ -51373,12 +50975,7 @@ export default class Client extends OpenApi {
|
|
|
51373
50975
|
reqBodyType: "formData",
|
|
51374
50976
|
bodyType: "json",
|
|
51375
50977
|
});
|
|
51376
|
-
|
|
51377
|
-
return $dara.cast<StopConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StopConfigurationRecorderResponse({}));
|
|
51378
|
-
} else {
|
|
51379
|
-
return $dara.cast<StopConfigurationRecorderResponse>(await this.execute(params, req, runtime), new StopConfigurationRecorderResponse({}));
|
|
51380
|
-
}
|
|
51381
|
-
|
|
50978
|
+
return $dara.cast<StopConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new StopConfigurationRecorderResponse({}));
|
|
51382
50979
|
}
|
|
51383
50980
|
|
|
51384
50981
|
/**
|
|
@@ -51439,12 +51036,7 @@ export default class Client extends OpenApi {
|
|
|
51439
51036
|
reqBodyType: "formData",
|
|
51440
51037
|
bodyType: "json",
|
|
51441
51038
|
});
|
|
51442
|
-
|
|
51443
|
-
return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
51444
|
-
} else {
|
|
51445
|
-
return $dara.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
|
|
51446
|
-
}
|
|
51447
|
-
|
|
51039
|
+
return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
51448
51040
|
}
|
|
51449
51041
|
|
|
51450
51042
|
/**
|
|
@@ -51502,12 +51094,7 @@ export default class Client extends OpenApi {
|
|
|
51502
51094
|
reqBodyType: "formData",
|
|
51503
51095
|
bodyType: "json",
|
|
51504
51096
|
});
|
|
51505
|
-
|
|
51506
|
-
return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
51507
|
-
} else {
|
|
51508
|
-
return $dara.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
|
|
51509
|
-
}
|
|
51510
|
-
|
|
51097
|
+
return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
51511
51098
|
}
|
|
51512
51099
|
|
|
51513
51100
|
/**
|
|
@@ -51637,12 +51224,7 @@ export default class Client extends OpenApi {
|
|
|
51637
51224
|
reqBodyType: "formData",
|
|
51638
51225
|
bodyType: "json",
|
|
51639
51226
|
});
|
|
51640
|
-
|
|
51641
|
-
return $dara.cast<UpdateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateAggregateCompliancePackResponse({}));
|
|
51642
|
-
} else {
|
|
51643
|
-
return $dara.cast<UpdateAggregateCompliancePackResponse>(await this.execute(params, req, runtime), new UpdateAggregateCompliancePackResponse({}));
|
|
51644
|
-
}
|
|
51645
|
-
|
|
51227
|
+
return $dara.cast<UpdateAggregateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateAggregateCompliancePackResponse({}));
|
|
51646
51228
|
}
|
|
51647
51229
|
|
|
51648
51230
|
/**
|
|
@@ -51742,12 +51324,7 @@ export default class Client extends OpenApi {
|
|
|
51742
51324
|
reqBodyType: "formData",
|
|
51743
51325
|
bodyType: "json",
|
|
51744
51326
|
});
|
|
51745
|
-
|
|
51746
|
-
return $dara.cast<UpdateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigDeliveryChannelResponse({}));
|
|
51747
|
-
} else {
|
|
51748
|
-
return $dara.cast<UpdateAggregateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new UpdateAggregateConfigDeliveryChannelResponse({}));
|
|
51749
|
-
}
|
|
51750
|
-
|
|
51327
|
+
return $dara.cast<UpdateAggregateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigDeliveryChannelResponse({}));
|
|
51751
51328
|
}
|
|
51752
51329
|
|
|
51753
51330
|
/**
|
|
@@ -51920,12 +51497,7 @@ export default class Client extends OpenApi {
|
|
|
51920
51497
|
reqBodyType: "formData",
|
|
51921
51498
|
bodyType: "json",
|
|
51922
51499
|
});
|
|
51923
|
-
|
|
51924
|
-
return $dara.cast<UpdateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigRuleResponse({}));
|
|
51925
|
-
} else {
|
|
51926
|
-
return $dara.cast<UpdateAggregateConfigRuleResponse>(await this.execute(params, req, runtime), new UpdateAggregateConfigRuleResponse({}));
|
|
51927
|
-
}
|
|
51928
|
-
|
|
51500
|
+
return $dara.cast<UpdateAggregateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateAggregateConfigRuleResponse({}));
|
|
51929
51501
|
}
|
|
51930
51502
|
|
|
51931
51503
|
/**
|
|
@@ -51997,12 +51569,7 @@ export default class Client extends OpenApi {
|
|
|
51997
51569
|
reqBodyType: "formData",
|
|
51998
51570
|
bodyType: "json",
|
|
51999
51571
|
});
|
|
52000
|
-
|
|
52001
|
-
return $dara.cast<UpdateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateAggregateRemediationResponse({}));
|
|
52002
|
-
} else {
|
|
52003
|
-
return $dara.cast<UpdateAggregateRemediationResponse>(await this.execute(params, req, runtime), new UpdateAggregateRemediationResponse({}));
|
|
52004
|
-
}
|
|
52005
|
-
|
|
51572
|
+
return $dara.cast<UpdateAggregateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateAggregateRemediationResponse({}));
|
|
52006
51573
|
}
|
|
52007
51574
|
|
|
52008
51575
|
/**
|
|
@@ -52086,12 +51653,7 @@ export default class Client extends OpenApi {
|
|
|
52086
51653
|
reqBodyType: "formData",
|
|
52087
51654
|
bodyType: "json",
|
|
52088
51655
|
});
|
|
52089
|
-
|
|
52090
|
-
return $dara.cast<UpdateAggregatorResponse>(await this.callApi(params, req, runtime), new UpdateAggregatorResponse({}));
|
|
52091
|
-
} else {
|
|
52092
|
-
return $dara.cast<UpdateAggregatorResponse>(await this.execute(params, req, runtime), new UpdateAggregatorResponse({}));
|
|
52093
|
-
}
|
|
52094
|
-
|
|
51656
|
+
return $dara.cast<UpdateAggregatorResponse>(await this.callApi(params, req, runtime), new UpdateAggregatorResponse({}));
|
|
52095
51657
|
}
|
|
52096
51658
|
|
|
52097
51659
|
/**
|
|
@@ -52220,12 +51782,7 @@ export default class Client extends OpenApi {
|
|
|
52220
51782
|
reqBodyType: "formData",
|
|
52221
51783
|
bodyType: "json",
|
|
52222
51784
|
});
|
|
52223
|
-
|
|
52224
|
-
return $dara.cast<UpdateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateCompliancePackResponse({}));
|
|
52225
|
-
} else {
|
|
52226
|
-
return $dara.cast<UpdateCompliancePackResponse>(await this.execute(params, req, runtime), new UpdateCompliancePackResponse({}));
|
|
52227
|
-
}
|
|
52228
|
-
|
|
51785
|
+
return $dara.cast<UpdateCompliancePackResponse>(await this.callApi(params, req, runtime), new UpdateCompliancePackResponse({}));
|
|
52229
51786
|
}
|
|
52230
51787
|
|
|
52231
51788
|
/**
|
|
@@ -52321,12 +51878,7 @@ export default class Client extends OpenApi {
|
|
|
52321
51878
|
reqBodyType: "formData",
|
|
52322
51879
|
bodyType: "json",
|
|
52323
51880
|
});
|
|
52324
|
-
|
|
52325
|
-
return $dara.cast<UpdateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateConfigDeliveryChannelResponse({}));
|
|
52326
|
-
} else {
|
|
52327
|
-
return $dara.cast<UpdateConfigDeliveryChannelResponse>(await this.execute(params, req, runtime), new UpdateConfigDeliveryChannelResponse({}));
|
|
52328
|
-
}
|
|
52329
|
-
|
|
51881
|
+
return $dara.cast<UpdateConfigDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateConfigDeliveryChannelResponse({}));
|
|
52330
51882
|
}
|
|
52331
51883
|
|
|
52332
51884
|
/**
|
|
@@ -52483,12 +52035,7 @@ export default class Client extends OpenApi {
|
|
|
52483
52035
|
reqBodyType: "formData",
|
|
52484
52036
|
bodyType: "json",
|
|
52485
52037
|
});
|
|
52486
|
-
|
|
52487
|
-
return $dara.cast<UpdateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateConfigRuleResponse({}));
|
|
52488
|
-
} else {
|
|
52489
|
-
return $dara.cast<UpdateConfigRuleResponse>(await this.execute(params, req, runtime), new UpdateConfigRuleResponse({}));
|
|
52490
|
-
}
|
|
52491
|
-
|
|
52038
|
+
return $dara.cast<UpdateConfigRuleResponse>(await this.callApi(params, req, runtime), new UpdateConfigRuleResponse({}));
|
|
52492
52039
|
}
|
|
52493
52040
|
|
|
52494
52041
|
/**
|
|
@@ -52536,12 +52083,7 @@ export default class Client extends OpenApi {
|
|
|
52536
52083
|
reqBodyType: "formData",
|
|
52537
52084
|
bodyType: "json",
|
|
52538
52085
|
});
|
|
52539
|
-
|
|
52540
|
-
return $dara.cast<UpdateConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new UpdateConfigurationRecorderResponse({}));
|
|
52541
|
-
} else {
|
|
52542
|
-
return $dara.cast<UpdateConfigurationRecorderResponse>(await this.execute(params, req, runtime), new UpdateConfigurationRecorderResponse({}));
|
|
52543
|
-
}
|
|
52544
|
-
|
|
52086
|
+
return $dara.cast<UpdateConfigurationRecorderResponse>(await this.callApi(params, req, runtime), new UpdateConfigurationRecorderResponse({}));
|
|
52545
52087
|
}
|
|
52546
52088
|
|
|
52547
52089
|
/**
|
|
@@ -52636,12 +52178,7 @@ export default class Client extends OpenApi {
|
|
|
52636
52178
|
reqBodyType: "formData",
|
|
52637
52179
|
bodyType: "json",
|
|
52638
52180
|
});
|
|
52639
|
-
|
|
52640
|
-
return $dara.cast<UpdateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateDeliveryChannelResponse({}));
|
|
52641
|
-
} else {
|
|
52642
|
-
return $dara.cast<UpdateDeliveryChannelResponse>(await this.execute(params, req, runtime), new UpdateDeliveryChannelResponse({}));
|
|
52643
|
-
}
|
|
52644
|
-
|
|
52181
|
+
return $dara.cast<UpdateDeliveryChannelResponse>(await this.callApi(params, req, runtime), new UpdateDeliveryChannelResponse({}));
|
|
52645
52182
|
}
|
|
52646
52183
|
|
|
52647
52184
|
/**
|
|
@@ -52701,12 +52238,7 @@ export default class Client extends OpenApi {
|
|
|
52701
52238
|
reqBodyType: "formData",
|
|
52702
52239
|
bodyType: "json",
|
|
52703
52240
|
});
|
|
52704
|
-
|
|
52705
|
-
return $dara.cast<UpdateIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new UpdateIntegratedServiceStatusResponse({}));
|
|
52706
|
-
} else {
|
|
52707
|
-
return $dara.cast<UpdateIntegratedServiceStatusResponse>(await this.execute(params, req, runtime), new UpdateIntegratedServiceStatusResponse({}));
|
|
52708
|
-
}
|
|
52709
|
-
|
|
52241
|
+
return $dara.cast<UpdateIntegratedServiceStatusResponse>(await this.callApi(params, req, runtime), new UpdateIntegratedServiceStatusResponse({}));
|
|
52710
52242
|
}
|
|
52711
52243
|
|
|
52712
52244
|
/**
|
|
@@ -52775,12 +52307,7 @@ export default class Client extends OpenApi {
|
|
|
52775
52307
|
reqBodyType: "formData",
|
|
52776
52308
|
bodyType: "json",
|
|
52777
52309
|
});
|
|
52778
|
-
|
|
52779
|
-
return $dara.cast<UpdateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateRemediationResponse({}));
|
|
52780
|
-
} else {
|
|
52781
|
-
return $dara.cast<UpdateRemediationResponse>(await this.execute(params, req, runtime), new UpdateRemediationResponse({}));
|
|
52782
|
-
}
|
|
52783
|
-
|
|
52310
|
+
return $dara.cast<UpdateRemediationResponse>(await this.callApi(params, req, runtime), new UpdateRemediationResponse({}));
|
|
52784
52311
|
}
|
|
52785
52312
|
|
|
52786
52313
|
/**
|