@alicloud/config20200907 3.0.10 → 3.0.12
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 +1563 -111
- package/dist/client.js +1785 -190
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +3486 -658
package/dist/client.d.ts
CHANGED
|
@@ -361,6 +361,38 @@ export declare class CreateAggregateCompliancePackRequestExcludeTagsScope extend
|
|
|
361
361
|
[key: string]: any;
|
|
362
362
|
});
|
|
363
363
|
}
|
|
364
|
+
export declare class CreateAggregateCompliancePackRequestTag extends $dara.Model {
|
|
365
|
+
/**
|
|
366
|
+
* @remarks
|
|
367
|
+
* The key of the tag that is added to the resource.
|
|
368
|
+
*
|
|
369
|
+
* You can add up to 20 tag keys to a resource.
|
|
370
|
+
*
|
|
371
|
+
* @example
|
|
372
|
+
* key-1
|
|
373
|
+
*/
|
|
374
|
+
key?: string;
|
|
375
|
+
/**
|
|
376
|
+
* @remarks
|
|
377
|
+
* The value of the tag that is added to the resource.
|
|
378
|
+
*
|
|
379
|
+
* You can add up to 20 tag values to a resource.
|
|
380
|
+
*
|
|
381
|
+
* @example
|
|
382
|
+
* value-1
|
|
383
|
+
*/
|
|
384
|
+
value?: string;
|
|
385
|
+
static names(): {
|
|
386
|
+
[key: string]: string;
|
|
387
|
+
};
|
|
388
|
+
static types(): {
|
|
389
|
+
[key: string]: any;
|
|
390
|
+
};
|
|
391
|
+
validate(): void;
|
|
392
|
+
constructor(map?: {
|
|
393
|
+
[key: string]: any;
|
|
394
|
+
});
|
|
395
|
+
}
|
|
364
396
|
export declare class CreateAggregateCompliancePackRequestTagsScope extends $dara.Model {
|
|
365
397
|
/**
|
|
366
398
|
* @remarks
|
|
@@ -473,6 +505,42 @@ export declare class CreateAggregateConfigRuleRequestExcludeTagsScope extends $d
|
|
|
473
505
|
[key: string]: any;
|
|
474
506
|
});
|
|
475
507
|
}
|
|
508
|
+
export declare class CreateAggregateConfigRuleRequestTag extends $dara.Model {
|
|
509
|
+
/**
|
|
510
|
+
* @remarks
|
|
511
|
+
* The tag key.
|
|
512
|
+
*
|
|
513
|
+
* The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
514
|
+
*
|
|
515
|
+
* You can specify at most 20 tag keys.
|
|
516
|
+
*
|
|
517
|
+
* @example
|
|
518
|
+
* key-1
|
|
519
|
+
*/
|
|
520
|
+
key?: string;
|
|
521
|
+
/**
|
|
522
|
+
* @remarks
|
|
523
|
+
* The tag values.
|
|
524
|
+
*
|
|
525
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
526
|
+
*
|
|
527
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
528
|
+
*
|
|
529
|
+
* @example
|
|
530
|
+
* value-1
|
|
531
|
+
*/
|
|
532
|
+
value?: string;
|
|
533
|
+
static names(): {
|
|
534
|
+
[key: string]: string;
|
|
535
|
+
};
|
|
536
|
+
static types(): {
|
|
537
|
+
[key: string]: any;
|
|
538
|
+
};
|
|
539
|
+
validate(): void;
|
|
540
|
+
constructor(map?: {
|
|
541
|
+
[key: string]: any;
|
|
542
|
+
});
|
|
543
|
+
}
|
|
476
544
|
export declare class CreateAggregateConfigRuleRequestTagsScope extends $dara.Model {
|
|
477
545
|
/**
|
|
478
546
|
* @remarks
|
|
@@ -593,6 +661,40 @@ export declare class CreateAggregatorRequestAggregatorAccounts extends $dara.Mod
|
|
|
593
661
|
[key: string]: any;
|
|
594
662
|
});
|
|
595
663
|
}
|
|
664
|
+
export declare class CreateAggregatorRequestTag extends $dara.Model {
|
|
665
|
+
/**
|
|
666
|
+
* @remarks
|
|
667
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
668
|
+
*
|
|
669
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
670
|
+
*
|
|
671
|
+
* @example
|
|
672
|
+
* key-1
|
|
673
|
+
*/
|
|
674
|
+
key?: string;
|
|
675
|
+
/**
|
|
676
|
+
* @remarks
|
|
677
|
+
* The tag values.
|
|
678
|
+
*
|
|
679
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
680
|
+
*
|
|
681
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
682
|
+
*
|
|
683
|
+
* @example
|
|
684
|
+
* value-1
|
|
685
|
+
*/
|
|
686
|
+
value?: string;
|
|
687
|
+
static names(): {
|
|
688
|
+
[key: string]: string;
|
|
689
|
+
};
|
|
690
|
+
static types(): {
|
|
691
|
+
[key: string]: any;
|
|
692
|
+
};
|
|
693
|
+
validate(): void;
|
|
694
|
+
constructor(map?: {
|
|
695
|
+
[key: string]: any;
|
|
696
|
+
});
|
|
697
|
+
}
|
|
596
698
|
export declare class CreateCompliancePackRequestConfigRulesConfigRuleParameters extends $dara.Model {
|
|
597
699
|
/**
|
|
598
700
|
* @remarks
|
|
@@ -718,6 +820,42 @@ export declare class CreateCompliancePackRequestExcludeTagsScope extends $dara.M
|
|
|
718
820
|
[key: string]: any;
|
|
719
821
|
});
|
|
720
822
|
}
|
|
823
|
+
export declare class CreateCompliancePackRequestTag extends $dara.Model {
|
|
824
|
+
/**
|
|
825
|
+
* @remarks
|
|
826
|
+
* The tag keys.
|
|
827
|
+
*
|
|
828
|
+
* The tag keys cannot be an empty string. The tag keys can be up to 64 characters in length. The tag keys cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
829
|
+
*
|
|
830
|
+
* You can specify at most 20 tag keys in each call.
|
|
831
|
+
*
|
|
832
|
+
* @example
|
|
833
|
+
* key-1
|
|
834
|
+
*/
|
|
835
|
+
key?: string;
|
|
836
|
+
/**
|
|
837
|
+
* @remarks
|
|
838
|
+
* The tag values.
|
|
839
|
+
*
|
|
840
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
841
|
+
*
|
|
842
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
843
|
+
*
|
|
844
|
+
* @example
|
|
845
|
+
* value-1
|
|
846
|
+
*/
|
|
847
|
+
value?: string;
|
|
848
|
+
static names(): {
|
|
849
|
+
[key: string]: string;
|
|
850
|
+
};
|
|
851
|
+
static types(): {
|
|
852
|
+
[key: string]: any;
|
|
853
|
+
};
|
|
854
|
+
validate(): void;
|
|
855
|
+
constructor(map?: {
|
|
856
|
+
[key: string]: any;
|
|
857
|
+
});
|
|
858
|
+
}
|
|
721
859
|
export declare class CreateCompliancePackRequestTagsScope extends $dara.Model {
|
|
722
860
|
/**
|
|
723
861
|
* @remarks
|
|
@@ -1996,6 +2134,40 @@ export declare class GetAggregateAdvancedSearchFileResponseBodyResourceSearch ex
|
|
|
1996
2134
|
[key: string]: any;
|
|
1997
2135
|
});
|
|
1998
2136
|
}
|
|
2137
|
+
export declare class GetAggregateCompliancePackRequestTag extends $dara.Model {
|
|
2138
|
+
/**
|
|
2139
|
+
* @remarks
|
|
2140
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
2141
|
+
*
|
|
2142
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
2143
|
+
*
|
|
2144
|
+
* @example
|
|
2145
|
+
* key-1
|
|
2146
|
+
*/
|
|
2147
|
+
key?: string;
|
|
2148
|
+
/**
|
|
2149
|
+
* @remarks
|
|
2150
|
+
* The tag values.
|
|
2151
|
+
*
|
|
2152
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
2153
|
+
*
|
|
2154
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
2155
|
+
*
|
|
2156
|
+
* @example
|
|
2157
|
+
* value-1
|
|
2158
|
+
*/
|
|
2159
|
+
value?: string;
|
|
2160
|
+
static names(): {
|
|
2161
|
+
[key: string]: string;
|
|
2162
|
+
};
|
|
2163
|
+
static types(): {
|
|
2164
|
+
[key: string]: any;
|
|
2165
|
+
};
|
|
2166
|
+
validate(): void;
|
|
2167
|
+
constructor(map?: {
|
|
2168
|
+
[key: string]: any;
|
|
2169
|
+
});
|
|
2170
|
+
}
|
|
1999
2171
|
export declare class GetAggregateCompliancePackResponseBodyCompliancePackConfigRulesConfigRuleParameters extends $dara.Model {
|
|
2000
2172
|
/**
|
|
2001
2173
|
* @remarks
|
|
@@ -2246,6 +2418,34 @@ export declare class GetAggregateCompliancePackResponseBodyCompliancePackScope e
|
|
|
2246
2418
|
[key: string]: any;
|
|
2247
2419
|
});
|
|
2248
2420
|
}
|
|
2421
|
+
export declare class GetAggregateCompliancePackResponseBodyCompliancePackTags extends $dara.Model {
|
|
2422
|
+
/**
|
|
2423
|
+
* @remarks
|
|
2424
|
+
* The tag keys of the resource.
|
|
2425
|
+
*
|
|
2426
|
+
* @example
|
|
2427
|
+
* key-1
|
|
2428
|
+
*/
|
|
2429
|
+
tagKey?: string;
|
|
2430
|
+
/**
|
|
2431
|
+
* @remarks
|
|
2432
|
+
* The tag values of the resource.
|
|
2433
|
+
*
|
|
2434
|
+
* @example
|
|
2435
|
+
* value-1
|
|
2436
|
+
*/
|
|
2437
|
+
tagValue?: string;
|
|
2438
|
+
static names(): {
|
|
2439
|
+
[key: string]: string;
|
|
2440
|
+
};
|
|
2441
|
+
static types(): {
|
|
2442
|
+
[key: string]: any;
|
|
2443
|
+
};
|
|
2444
|
+
validate(): void;
|
|
2445
|
+
constructor(map?: {
|
|
2446
|
+
[key: string]: any;
|
|
2447
|
+
});
|
|
2448
|
+
}
|
|
2249
2449
|
export declare class GetAggregateCompliancePackResponseBodyCompliancePack extends $dara.Model {
|
|
2250
2450
|
/**
|
|
2251
2451
|
* @remarks
|
|
@@ -2336,6 +2536,11 @@ export declare class GetAggregateCompliancePackResponseBodyCompliancePack extend
|
|
|
2336
2536
|
* ACTIVE
|
|
2337
2537
|
*/
|
|
2338
2538
|
status?: string;
|
|
2539
|
+
/**
|
|
2540
|
+
* @remarks
|
|
2541
|
+
* The tags.
|
|
2542
|
+
*/
|
|
2543
|
+
tags?: GetAggregateCompliancePackResponseBodyCompliancePackTags[];
|
|
2339
2544
|
/**
|
|
2340
2545
|
* @remarks
|
|
2341
2546
|
* The information about the current compliance package template. The rules in the template do not contain custom function rules. You can quickly create the same compliance package for other accounts or account groups based on the template information.
|
|
@@ -3451,6 +3656,17 @@ export declare class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.
|
|
|
3451
3656
|
* eip-8vbf3x310fn56ijfd****
|
|
3452
3657
|
*/
|
|
3453
3658
|
resourceIdsScope?: string;
|
|
3659
|
+
/**
|
|
3660
|
+
* @remarks
|
|
3661
|
+
* The names of the resource groups to which the rule applies.
|
|
3662
|
+
*
|
|
3663
|
+
* @example
|
|
3664
|
+
* i-xxx
|
|
3665
|
+
*
|
|
3666
|
+
* **if can be null:**
|
|
3667
|
+
* true
|
|
3668
|
+
*/
|
|
3669
|
+
resourceNameScope?: string;
|
|
3454
3670
|
/**
|
|
3455
3671
|
* @remarks
|
|
3456
3672
|
* The type of the resource evaluated by the rule.
|
|
@@ -3478,29 +3694,41 @@ export declare class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.
|
|
|
3478
3694
|
source?: GetAggregateConfigRuleResponseBodyConfigRuleSource;
|
|
3479
3695
|
/**
|
|
3480
3696
|
* @remarks
|
|
3481
|
-
*
|
|
3697
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3698
|
+
*
|
|
3699
|
+
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
3482
3700
|
*
|
|
3483
|
-
* * AND
|
|
3484
|
-
* * OR
|
|
3701
|
+
* * AND
|
|
3702
|
+
* * OR
|
|
3485
3703
|
*
|
|
3486
3704
|
* @example
|
|
3487
3705
|
* AND
|
|
3706
|
+
*
|
|
3707
|
+
* @deprecated
|
|
3488
3708
|
*/
|
|
3489
3709
|
tagKeyLogicScope?: string;
|
|
3490
3710
|
/**
|
|
3491
3711
|
* @remarks
|
|
3712
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3713
|
+
*
|
|
3492
3714
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
3493
3715
|
*
|
|
3494
3716
|
* @example
|
|
3495
3717
|
* RAM
|
|
3718
|
+
*
|
|
3719
|
+
* @deprecated
|
|
3496
3720
|
*/
|
|
3497
3721
|
tagKeyScope?: string;
|
|
3498
3722
|
/**
|
|
3499
3723
|
* @remarks
|
|
3724
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3725
|
+
*
|
|
3500
3726
|
* The tag value used to filter resources. The rule applies only to the resources with the specified tag value.
|
|
3501
3727
|
*
|
|
3502
3728
|
* @example
|
|
3503
3729
|
* MFA
|
|
3730
|
+
*
|
|
3731
|
+
* @deprecated
|
|
3504
3732
|
*/
|
|
3505
3733
|
tagValueScope?: string;
|
|
3506
3734
|
/**
|
|
@@ -3683,8 +3911,8 @@ export declare class GetAggregateConfigRulesReportResponseBodyConfigRulesReport
|
|
|
3683
3911
|
* @remarks
|
|
3684
3912
|
* The status of the compliance evaluation report. Valid values:
|
|
3685
3913
|
*
|
|
3686
|
-
* * NONE: The compliance evaluation report
|
|
3687
|
-
* * CREATING: The compliance evaluation report
|
|
3914
|
+
* * NONE: The compliance evaluation report is not generated.
|
|
3915
|
+
* * CREATING: The compliance evaluation report is being generated.
|
|
3688
3916
|
* * COMPLETE: The compliance evaluation report was generated.
|
|
3689
3917
|
*
|
|
3690
3918
|
* @example
|
|
@@ -3693,7 +3921,7 @@ export declare class GetAggregateConfigRulesReportResponseBodyConfigRulesReport
|
|
|
3693
3921
|
reportStatus?: string;
|
|
3694
3922
|
/**
|
|
3695
3923
|
* @remarks
|
|
3696
|
-
* The URL
|
|
3924
|
+
* The URL used to download the compliance evaluation report.
|
|
3697
3925
|
*/
|
|
3698
3926
|
reportUrl?: string;
|
|
3699
3927
|
static names(): {
|
|
@@ -4502,6 +4730,42 @@ export declare class GetAggregateResourceInventoryResponseBodyResourceInventory
|
|
|
4502
4730
|
[key: string]: any;
|
|
4503
4731
|
});
|
|
4504
4732
|
}
|
|
4733
|
+
export declare class GetAggregatorRequestTag extends $dara.Model {
|
|
4734
|
+
/**
|
|
4735
|
+
* @remarks
|
|
4736
|
+
* The tag key.
|
|
4737
|
+
*
|
|
4738
|
+
* The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
4739
|
+
*
|
|
4740
|
+
* You can specify at most 20 tag keys.
|
|
4741
|
+
*
|
|
4742
|
+
* @example
|
|
4743
|
+
* key-1
|
|
4744
|
+
*/
|
|
4745
|
+
key?: string;
|
|
4746
|
+
/**
|
|
4747
|
+
* @remarks
|
|
4748
|
+
* The tag values.
|
|
4749
|
+
*
|
|
4750
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
4751
|
+
*
|
|
4752
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
4753
|
+
*
|
|
4754
|
+
* @example
|
|
4755
|
+
* value-1
|
|
4756
|
+
*/
|
|
4757
|
+
value?: string;
|
|
4758
|
+
static names(): {
|
|
4759
|
+
[key: string]: string;
|
|
4760
|
+
};
|
|
4761
|
+
static types(): {
|
|
4762
|
+
[key: string]: any;
|
|
4763
|
+
};
|
|
4764
|
+
validate(): void;
|
|
4765
|
+
constructor(map?: {
|
|
4766
|
+
[key: string]: any;
|
|
4767
|
+
});
|
|
4768
|
+
}
|
|
4505
4769
|
export declare class GetAggregatorResponseBodyAggregatorAggregatorAccounts extends $dara.Model {
|
|
4506
4770
|
/**
|
|
4507
4771
|
* @remarks
|
|
@@ -4554,10 +4818,38 @@ export declare class GetAggregatorResponseBodyAggregatorAggregatorAccounts exten
|
|
|
4554
4818
|
[key: string]: any;
|
|
4555
4819
|
});
|
|
4556
4820
|
}
|
|
4557
|
-
export declare class
|
|
4821
|
+
export declare class GetAggregatorResponseBodyAggregatorTags extends $dara.Model {
|
|
4558
4822
|
/**
|
|
4559
4823
|
* @remarks
|
|
4560
|
-
* The
|
|
4824
|
+
* The tag key.
|
|
4825
|
+
*
|
|
4826
|
+
* @example
|
|
4827
|
+
* key-1
|
|
4828
|
+
*/
|
|
4829
|
+
tagKey?: string;
|
|
4830
|
+
/**
|
|
4831
|
+
* @remarks
|
|
4832
|
+
* The tag value.
|
|
4833
|
+
*
|
|
4834
|
+
* @example
|
|
4835
|
+
* value-1
|
|
4836
|
+
*/
|
|
4837
|
+
tagValue?: string;
|
|
4838
|
+
static names(): {
|
|
4839
|
+
[key: string]: string;
|
|
4840
|
+
};
|
|
4841
|
+
static types(): {
|
|
4842
|
+
[key: string]: any;
|
|
4843
|
+
};
|
|
4844
|
+
validate(): void;
|
|
4845
|
+
constructor(map?: {
|
|
4846
|
+
[key: string]: any;
|
|
4847
|
+
});
|
|
4848
|
+
}
|
|
4849
|
+
export declare class GetAggregatorResponseBodyAggregator extends $dara.Model {
|
|
4850
|
+
/**
|
|
4851
|
+
* @remarks
|
|
4852
|
+
* The ID of the management account that is used to create the account group.
|
|
4561
4853
|
*
|
|
4562
4854
|
* @example
|
|
4563
4855
|
* 100931896542****
|
|
@@ -4641,6 +4933,43 @@ export declare class GetAggregatorResponseBodyAggregator extends $dara.Model {
|
|
|
4641
4933
|
* fd-brHdgv****
|
|
4642
4934
|
*/
|
|
4643
4935
|
folderId?: string;
|
|
4936
|
+
/**
|
|
4937
|
+
* @remarks
|
|
4938
|
+
* tags
|
|
4939
|
+
*/
|
|
4940
|
+
tags?: GetAggregatorResponseBodyAggregatorTags[];
|
|
4941
|
+
static names(): {
|
|
4942
|
+
[key: string]: string;
|
|
4943
|
+
};
|
|
4944
|
+
static types(): {
|
|
4945
|
+
[key: string]: any;
|
|
4946
|
+
};
|
|
4947
|
+
validate(): void;
|
|
4948
|
+
constructor(map?: {
|
|
4949
|
+
[key: string]: any;
|
|
4950
|
+
});
|
|
4951
|
+
}
|
|
4952
|
+
export declare class GetCompliancePackRequestTag extends $dara.Model {
|
|
4953
|
+
/**
|
|
4954
|
+
* @remarks
|
|
4955
|
+
* The tag key.
|
|
4956
|
+
*
|
|
4957
|
+
* The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
4958
|
+
*
|
|
4959
|
+
* You can specify at most 20 tag keys.
|
|
4960
|
+
*
|
|
4961
|
+
* @example
|
|
4962
|
+
* key-1
|
|
4963
|
+
*/
|
|
4964
|
+
key?: string;
|
|
4965
|
+
/**
|
|
4966
|
+
* @remarks
|
|
4967
|
+
* The tag value. The tag value can be up to 256 characters in length and cannot contain `http://` or `https://`.
|
|
4968
|
+
*
|
|
4969
|
+
* @example
|
|
4970
|
+
* value-1
|
|
4971
|
+
*/
|
|
4972
|
+
value?: string;
|
|
4644
4973
|
static names(): {
|
|
4645
4974
|
[key: string]: string;
|
|
4646
4975
|
};
|
|
@@ -4763,7 +5092,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackConfigRules exte
|
|
|
4763
5092
|
export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope extends $dara.Model {
|
|
4764
5093
|
/**
|
|
4765
5094
|
* @remarks
|
|
4766
|
-
* The tag
|
|
5095
|
+
* The key of the tag.
|
|
4767
5096
|
*
|
|
4768
5097
|
* @example
|
|
4769
5098
|
* key-2
|
|
@@ -4771,7 +5100,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTags
|
|
|
4771
5100
|
tagKey?: string;
|
|
4772
5101
|
/**
|
|
4773
5102
|
* @remarks
|
|
4774
|
-
* The tag
|
|
5103
|
+
* The value of the tag.
|
|
4775
5104
|
*
|
|
4776
5105
|
* @example
|
|
4777
5106
|
* value-2
|
|
@@ -4791,7 +5120,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTags
|
|
|
4791
5120
|
export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $dara.Model {
|
|
4792
5121
|
/**
|
|
4793
5122
|
* @remarks
|
|
4794
|
-
* The tag
|
|
5123
|
+
* The key of the tag.
|
|
4795
5124
|
*
|
|
4796
5125
|
* @example
|
|
4797
5126
|
* key-1
|
|
@@ -4799,7 +5128,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope e
|
|
|
4799
5128
|
tagKey?: string;
|
|
4800
5129
|
/**
|
|
4801
5130
|
* @remarks
|
|
4802
|
-
* The tag
|
|
5131
|
+
* The value of the tag.
|
|
4803
5132
|
*
|
|
4804
5133
|
* @example
|
|
4805
5134
|
* value-1
|
|
@@ -4819,7 +5148,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope e
|
|
|
4819
5148
|
export declare class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Model {
|
|
4820
5149
|
/**
|
|
4821
5150
|
* @remarks
|
|
4822
|
-
*
|
|
5151
|
+
* The IDs of regions that are excluded. Separate multiple region IDs with commas (,).
|
|
4823
5152
|
*
|
|
4824
5153
|
* @example
|
|
4825
5154
|
* cn-hangzhou
|
|
@@ -4827,7 +5156,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4827
5156
|
excludeRegionIdsScope?: string;
|
|
4828
5157
|
/**
|
|
4829
5158
|
* @remarks
|
|
4830
|
-
*
|
|
5159
|
+
* The IDs of the resource groups whose resources you do not want to evaluate by using the compliance package. Separate multiple resource group IDs with commas (,).
|
|
4831
5160
|
*
|
|
4832
5161
|
* @example
|
|
4833
5162
|
* rg-aekzc7r7rhx****
|
|
@@ -4843,7 +5172,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4843
5172
|
excludeResourceIdsScope?: string;
|
|
4844
5173
|
/**
|
|
4845
5174
|
* @remarks
|
|
4846
|
-
*
|
|
5175
|
+
* The scope of the tag that is excluded.
|
|
4847
5176
|
*
|
|
4848
5177
|
* This parameter is required.
|
|
4849
5178
|
*/
|
|
@@ -4866,7 +5195,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4866
5195
|
resourceGroupIdsScope?: string;
|
|
4867
5196
|
/**
|
|
4868
5197
|
* @remarks
|
|
4869
|
-
*
|
|
5198
|
+
* The IDs of the resources to which the rule applies. Separate multiple resource IDs with commas (,).
|
|
4870
5199
|
*
|
|
4871
5200
|
* @example
|
|
4872
5201
|
* eip-8vbf3x310fn56ijfd****
|
|
@@ -4890,7 +5219,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4890
5219
|
tagValueScope?: string;
|
|
4891
5220
|
/**
|
|
4892
5221
|
* @remarks
|
|
4893
|
-
*
|
|
5222
|
+
* The tag scope.
|
|
4894
5223
|
*
|
|
4895
5224
|
* This parameter is required.
|
|
4896
5225
|
*/
|
|
@@ -4906,6 +5235,34 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4906
5235
|
[key: string]: any;
|
|
4907
5236
|
});
|
|
4908
5237
|
}
|
|
5238
|
+
export declare class GetCompliancePackResponseBodyCompliancePackTags extends $dara.Model {
|
|
5239
|
+
/**
|
|
5240
|
+
* @remarks
|
|
5241
|
+
* The tag keys of the resource.
|
|
5242
|
+
*
|
|
5243
|
+
* @example
|
|
5244
|
+
* key-1
|
|
5245
|
+
*/
|
|
5246
|
+
tagKey?: string;
|
|
5247
|
+
/**
|
|
5248
|
+
* @remarks
|
|
5249
|
+
* The tag values of the resource.
|
|
5250
|
+
*
|
|
5251
|
+
* @example
|
|
5252
|
+
* value-1
|
|
5253
|
+
*/
|
|
5254
|
+
tagValue?: string;
|
|
5255
|
+
static names(): {
|
|
5256
|
+
[key: string]: string;
|
|
5257
|
+
};
|
|
5258
|
+
static types(): {
|
|
5259
|
+
[key: string]: any;
|
|
5260
|
+
};
|
|
5261
|
+
validate(): void;
|
|
5262
|
+
constructor(map?: {
|
|
5263
|
+
[key: string]: any;
|
|
5264
|
+
});
|
|
5265
|
+
}
|
|
4909
5266
|
export declare class GetCompliancePackResponseBodyCompliancePack extends $dara.Model {
|
|
4910
5267
|
/**
|
|
4911
5268
|
* @remarks
|
|
@@ -4988,41 +5345,66 @@ export declare class GetCompliancePackResponseBodyCompliancePack extends $dara.M
|
|
|
4988
5345
|
* ACTIVE
|
|
4989
5346
|
*/
|
|
4990
5347
|
status?: string;
|
|
5348
|
+
/**
|
|
5349
|
+
* @remarks
|
|
5350
|
+
* The list of tags.
|
|
5351
|
+
*/
|
|
5352
|
+
tags?: GetCompliancePackResponseBodyCompliancePackTags[];
|
|
4991
5353
|
/**
|
|
4992
5354
|
* @remarks
|
|
4993
5355
|
* The information about the current compliance package template. The rules in the template do not contain custom function rules. You can quickly create the same compliance package for other accounts or account groups based on the template information.
|
|
4994
5356
|
*
|
|
4995
5357
|
* @example
|
|
4996
5358
|
* {
|
|
4997
|
-
*
|
|
5359
|
+
* "configRuleTemplates": [
|
|
4998
5360
|
* {
|
|
4999
|
-
*
|
|
5000
|
-
*
|
|
5001
|
-
*
|
|
5002
|
-
*
|
|
5003
|
-
*
|
|
5004
|
-
*
|
|
5005
|
-
*
|
|
5006
|
-
*
|
|
5007
|
-
*
|
|
5008
|
-
*
|
|
5009
|
-
*
|
|
5010
|
-
*
|
|
5011
|
-
*
|
|
5012
|
-
*
|
|
5013
|
-
*
|
|
5014
|
-
*
|
|
5015
|
-
*
|
|
5016
|
-
*
|
|
5017
|
-
*
|
|
5361
|
+
* "configRuleName": "rule-example",
|
|
5362
|
+
* "scope": {
|
|
5363
|
+
* "complianceResourceTypes": [
|
|
5364
|
+
* "ACS::ECS::Instance"
|
|
5365
|
+
* ]
|
|
5366
|
+
* },
|
|
5367
|
+
* "description": "",
|
|
5368
|
+
* "source": {
|
|
5369
|
+
* "owner": "CUSTOM_CONFIGURATION",
|
|
5370
|
+
* "identifier": "acs-config-configuration",
|
|
5371
|
+
* "sourceDetails": [
|
|
5372
|
+
* {
|
|
5373
|
+
* "messageType": "ScheduledNotification",
|
|
5374
|
+
* "maximumExecutionFrequency": "Twelve_Hours"
|
|
5375
|
+
* },
|
|
5376
|
+
* {
|
|
5377
|
+
* "messageType": "ConfigurationItemChangeNotification"
|
|
5378
|
+
* }
|
|
5379
|
+
* ],
|
|
5380
|
+
* "conditions": "{\\"ComplianceConditions\\":\\"{\\\\\\"operator\\\\\\":\\\\\\"and\\\\\\",\\\\\\"children\\\\\\":[{\\\\\\"operator\\\\\\":\\\\\\"GreaterOrEquals\\\\\\",\\\\\\"featurePath\\\\\\":\\\\\\"$.Cpu\\\\\\",\\\\\\"featureSource\\\\\\":\\\\\\"CONFIGURATION\\\\\\",\\\\\\"desired\\\\\\":\\\\\\"2\\\\\\"}]}\\"}"
|
|
5381
|
+
* },
|
|
5382
|
+
* "inputParameters": {}
|
|
5383
|
+
* },
|
|
5384
|
+
* {
|
|
5385
|
+
* "configRuleName": "name",
|
|
5386
|
+
* "scope": {
|
|
5387
|
+
* "complianceResourceTypes": [
|
|
5388
|
+
* "ACS::OSS::Bucket"
|
|
5389
|
+
* ]
|
|
5390
|
+
* },
|
|
5391
|
+
* "description": "description-1",
|
|
5392
|
+
* "source": {
|
|
5393
|
+
* "owner": "ALIYUN",
|
|
5394
|
+
* "identifier": "oss-bucket-referer-limit",
|
|
5395
|
+
* "sourceDetails": [
|
|
5396
|
+
* {
|
|
5397
|
+
* "messageType": "ConfigurationItemChangeNotification"
|
|
5398
|
+
* }
|
|
5399
|
+
* ]
|
|
5400
|
+
* },
|
|
5401
|
+
* "inputParameters": {
|
|
5402
|
+
* "allowEmptyReferer": "true",
|
|
5403
|
+
* "allowReferers": "http://www.aliyun.com"
|
|
5404
|
+
* }
|
|
5018
5405
|
* }
|
|
5019
|
-
*
|
|
5020
|
-
*
|
|
5021
|
-
* "riskLevel": 2,
|
|
5022
|
-
* "compliancePackName": "gy-test",
|
|
5023
|
-
* "description": ""
|
|
5024
|
-
* }
|
|
5025
|
-
* }
|
|
5406
|
+
* ]
|
|
5407
|
+
* }
|
|
5026
5408
|
*/
|
|
5027
5409
|
templateContent?: string;
|
|
5028
5410
|
static names(): {
|
|
@@ -6054,6 +6436,11 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6054
6436
|
* eip-8vbf3x310fn56ijfd****
|
|
6055
6437
|
*/
|
|
6056
6438
|
resourceIdsScope?: string;
|
|
6439
|
+
/**
|
|
6440
|
+
* **if can be null:**
|
|
6441
|
+
* true
|
|
6442
|
+
*/
|
|
6443
|
+
resourceNameScope?: string;
|
|
6057
6444
|
/**
|
|
6058
6445
|
* @remarks
|
|
6059
6446
|
* The type of the resource to be evaluated by the rule.
|
|
@@ -6092,6 +6479,8 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6092
6479
|
*
|
|
6093
6480
|
* @example
|
|
6094
6481
|
* 120886317861****
|
|
6482
|
+
*
|
|
6483
|
+
* @deprecated
|
|
6095
6484
|
*/
|
|
6096
6485
|
tagKeyLogicScope?: string;
|
|
6097
6486
|
/**
|
|
@@ -6102,6 +6491,8 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6102
6491
|
*
|
|
6103
6492
|
* @example
|
|
6104
6493
|
* RAM
|
|
6494
|
+
*
|
|
6495
|
+
* @deprecated
|
|
6105
6496
|
*/
|
|
6106
6497
|
tagKeyScope?: string;
|
|
6107
6498
|
/**
|
|
@@ -6112,6 +6503,8 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6112
6503
|
*
|
|
6113
6504
|
* @example
|
|
6114
6505
|
* MFA
|
|
6506
|
+
*
|
|
6507
|
+
* @deprecated
|
|
6115
6508
|
*/
|
|
6116
6509
|
tagValueScope?: string;
|
|
6117
6510
|
/**
|
|
@@ -7480,6 +7873,68 @@ export declare class IgnoreEvaluationResultsRequestResources extends $dara.Model
|
|
|
7480
7873
|
[key: string]: any;
|
|
7481
7874
|
});
|
|
7482
7875
|
}
|
|
7876
|
+
export declare class ListAggregateCompliancePacksRequestTag extends $dara.Model {
|
|
7877
|
+
/**
|
|
7878
|
+
* @remarks
|
|
7879
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
7880
|
+
*
|
|
7881
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
7882
|
+
*
|
|
7883
|
+
* @example
|
|
7884
|
+
* key-1
|
|
7885
|
+
*/
|
|
7886
|
+
key?: string;
|
|
7887
|
+
/**
|
|
7888
|
+
* @remarks
|
|
7889
|
+
* The tag values.
|
|
7890
|
+
*
|
|
7891
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
7892
|
+
*
|
|
7893
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
7894
|
+
*
|
|
7895
|
+
* @example
|
|
7896
|
+
* value-1
|
|
7897
|
+
*/
|
|
7898
|
+
value?: string;
|
|
7899
|
+
static names(): {
|
|
7900
|
+
[key: string]: string;
|
|
7901
|
+
};
|
|
7902
|
+
static types(): {
|
|
7903
|
+
[key: string]: any;
|
|
7904
|
+
};
|
|
7905
|
+
validate(): void;
|
|
7906
|
+
constructor(map?: {
|
|
7907
|
+
[key: string]: any;
|
|
7908
|
+
});
|
|
7909
|
+
}
|
|
7910
|
+
export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
|
|
7911
|
+
/**
|
|
7912
|
+
* @remarks
|
|
7913
|
+
* The tag key.
|
|
7914
|
+
*
|
|
7915
|
+
* @example
|
|
7916
|
+
* key-1
|
|
7917
|
+
*/
|
|
7918
|
+
tagKey?: string;
|
|
7919
|
+
/**
|
|
7920
|
+
* @remarks
|
|
7921
|
+
* The tag value.
|
|
7922
|
+
*
|
|
7923
|
+
* @example
|
|
7924
|
+
* value-1
|
|
7925
|
+
*/
|
|
7926
|
+
tagValue?: string;
|
|
7927
|
+
static names(): {
|
|
7928
|
+
[key: string]: string;
|
|
7929
|
+
};
|
|
7930
|
+
static types(): {
|
|
7931
|
+
[key: string]: any;
|
|
7932
|
+
};
|
|
7933
|
+
validate(): void;
|
|
7934
|
+
constructor(map?: {
|
|
7935
|
+
[key: string]: any;
|
|
7936
|
+
});
|
|
7937
|
+
}
|
|
7483
7938
|
export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacks extends $dara.Model {
|
|
7484
7939
|
/**
|
|
7485
7940
|
* @remarks
|
|
@@ -7560,6 +8015,11 @@ export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResu
|
|
|
7560
8015
|
* ACTIVE
|
|
7561
8016
|
*/
|
|
7562
8017
|
status?: string;
|
|
8018
|
+
/**
|
|
8019
|
+
* @remarks
|
|
8020
|
+
* The tags.
|
|
8021
|
+
*/
|
|
8022
|
+
tags?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
|
|
7563
8023
|
static names(): {
|
|
7564
8024
|
[key: string]: string;
|
|
7565
8025
|
};
|
|
@@ -7574,7 +8034,7 @@ export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResu
|
|
|
7574
8034
|
export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResult extends $dara.Model {
|
|
7575
8035
|
/**
|
|
7576
8036
|
* @remarks
|
|
7577
|
-
* The
|
|
8037
|
+
* The compliance packages.
|
|
7578
8038
|
*/
|
|
7579
8039
|
compliancePacks?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacks[];
|
|
7580
8040
|
/**
|
|
@@ -8104,6 +8564,40 @@ export declare class ListAggregateConfigRuleEvaluationStatisticsResponseBodyEval
|
|
|
8104
8564
|
[key: string]: any;
|
|
8105
8565
|
});
|
|
8106
8566
|
}
|
|
8567
|
+
export declare class ListAggregateConfigRulesRequestTag extends $dara.Model {
|
|
8568
|
+
/**
|
|
8569
|
+
* @remarks
|
|
8570
|
+
* The tag key.
|
|
8571
|
+
*
|
|
8572
|
+
* The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
8573
|
+
*
|
|
8574
|
+
* You can specify at most 20 tag keys.
|
|
8575
|
+
*
|
|
8576
|
+
* @example
|
|
8577
|
+
* key-1
|
|
8578
|
+
*/
|
|
8579
|
+
key?: string;
|
|
8580
|
+
/**
|
|
8581
|
+
* @remarks
|
|
8582
|
+
* The value of the tag. You can specify up to 20 tag values. The tag value can be an empty string.
|
|
8583
|
+
*
|
|
8584
|
+
* The tag value can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. The tag value cannot contain `http://` or `https://`.
|
|
8585
|
+
*
|
|
8586
|
+
* @example
|
|
8587
|
+
* value-1
|
|
8588
|
+
*/
|
|
8589
|
+
value?: string;
|
|
8590
|
+
static names(): {
|
|
8591
|
+
[key: string]: string;
|
|
8592
|
+
};
|
|
8593
|
+
static types(): {
|
|
8594
|
+
[key: string]: any;
|
|
8595
|
+
};
|
|
8596
|
+
validate(): void;
|
|
8597
|
+
constructor(map?: {
|
|
8598
|
+
[key: string]: any;
|
|
8599
|
+
});
|
|
8600
|
+
}
|
|
8107
8601
|
export declare class ListAggregateConfigRulesResponseBodyConfigRulesConfigRuleListCompliance extends $dara.Model {
|
|
8108
8602
|
/**
|
|
8109
8603
|
* @remarks
|
|
@@ -9153,29 +9647,91 @@ export declare class ListAggregateResourcesByAdvancedSearchResponseBodyQueryResu
|
|
|
9153
9647
|
[key: string]: any;
|
|
9154
9648
|
});
|
|
9155
9649
|
}
|
|
9156
|
-
export declare class
|
|
9650
|
+
export declare class ListAggregatorsRequestTag extends $dara.Model {
|
|
9157
9651
|
/**
|
|
9158
9652
|
* @remarks
|
|
9159
|
-
* The
|
|
9653
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
9654
|
+
*
|
|
9655
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
9160
9656
|
*
|
|
9161
9657
|
* @example
|
|
9162
|
-
*
|
|
9658
|
+
* key-1
|
|
9163
9659
|
*/
|
|
9164
|
-
|
|
9660
|
+
key?: string;
|
|
9165
9661
|
/**
|
|
9166
9662
|
* @remarks
|
|
9167
|
-
* The
|
|
9663
|
+
* The tag values.
|
|
9664
|
+
*
|
|
9665
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
9666
|
+
*
|
|
9667
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
9168
9668
|
*
|
|
9169
9669
|
* @example
|
|
9170
|
-
*
|
|
9670
|
+
* value-1
|
|
9171
9671
|
*/
|
|
9172
|
-
|
|
9672
|
+
value?: string;
|
|
9673
|
+
static names(): {
|
|
9674
|
+
[key: string]: string;
|
|
9675
|
+
};
|
|
9676
|
+
static types(): {
|
|
9677
|
+
[key: string]: any;
|
|
9678
|
+
};
|
|
9679
|
+
validate(): void;
|
|
9680
|
+
constructor(map?: {
|
|
9681
|
+
[key: string]: any;
|
|
9682
|
+
});
|
|
9683
|
+
}
|
|
9684
|
+
export declare class ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags extends $dara.Model {
|
|
9173
9685
|
/**
|
|
9174
9686
|
* @remarks
|
|
9175
|
-
* The
|
|
9687
|
+
* The tag keys of the resource.
|
|
9176
9688
|
*
|
|
9177
9689
|
* @example
|
|
9178
|
-
*
|
|
9690
|
+
* key-1
|
|
9691
|
+
*/
|
|
9692
|
+
tagKey?: string;
|
|
9693
|
+
/**
|
|
9694
|
+
* @remarks
|
|
9695
|
+
* The tag values of the resource.
|
|
9696
|
+
*
|
|
9697
|
+
* @example
|
|
9698
|
+
* value-1
|
|
9699
|
+
*/
|
|
9700
|
+
tagValue?: string;
|
|
9701
|
+
static names(): {
|
|
9702
|
+
[key: string]: string;
|
|
9703
|
+
};
|
|
9704
|
+
static types(): {
|
|
9705
|
+
[key: string]: any;
|
|
9706
|
+
};
|
|
9707
|
+
validate(): void;
|
|
9708
|
+
constructor(map?: {
|
|
9709
|
+
[key: string]: any;
|
|
9710
|
+
});
|
|
9711
|
+
}
|
|
9712
|
+
export declare class ListAggregatorsResponseBodyAggregatorsResultAggregators extends $dara.Model {
|
|
9713
|
+
/**
|
|
9714
|
+
* @remarks
|
|
9715
|
+
* The ID of the management account that is used to create the account group.
|
|
9716
|
+
*
|
|
9717
|
+
* @example
|
|
9718
|
+
* 100931896542****
|
|
9719
|
+
*/
|
|
9720
|
+
accountId?: number;
|
|
9721
|
+
/**
|
|
9722
|
+
* @remarks
|
|
9723
|
+
* The number of member accounts in the account group.
|
|
9724
|
+
*
|
|
9725
|
+
* @example
|
|
9726
|
+
* 2
|
|
9727
|
+
*/
|
|
9728
|
+
aggregatorAccountCount?: number;
|
|
9729
|
+
/**
|
|
9730
|
+
* @remarks
|
|
9731
|
+
* The timestamp generated when the account group was created.
|
|
9732
|
+
*
|
|
9733
|
+
* @example
|
|
9734
|
+
* 1623036305000
|
|
9179
9735
|
*/
|
|
9180
9736
|
aggregatorCreateTimestamp?: number;
|
|
9181
9737
|
/**
|
|
@@ -9233,6 +9789,11 @@ export declare class ListAggregatorsResponseBodyAggregatorsResultAggregators ext
|
|
|
9233
9789
|
* r-BU****
|
|
9234
9790
|
*/
|
|
9235
9791
|
folderId?: string;
|
|
9792
|
+
/**
|
|
9793
|
+
* @remarks
|
|
9794
|
+
* tags
|
|
9795
|
+
*/
|
|
9796
|
+
tags?: ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags[];
|
|
9236
9797
|
static names(): {
|
|
9237
9798
|
[key: string]: string;
|
|
9238
9799
|
};
|
|
@@ -9508,6 +10069,68 @@ export declare class ListCompliancePackTemplatesResponseBodyCompliancePackTempla
|
|
|
9508
10069
|
[key: string]: any;
|
|
9509
10070
|
});
|
|
9510
10071
|
}
|
|
10072
|
+
export declare class ListCompliancePacksRequestTag extends $dara.Model {
|
|
10073
|
+
/**
|
|
10074
|
+
* @remarks
|
|
10075
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
10076
|
+
*
|
|
10077
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
10078
|
+
*
|
|
10079
|
+
* @example
|
|
10080
|
+
* key-1
|
|
10081
|
+
*/
|
|
10082
|
+
key?: string;
|
|
10083
|
+
/**
|
|
10084
|
+
* @remarks
|
|
10085
|
+
* The tag values.
|
|
10086
|
+
*
|
|
10087
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
10088
|
+
*
|
|
10089
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
10090
|
+
*
|
|
10091
|
+
* @example
|
|
10092
|
+
* value-1
|
|
10093
|
+
*/
|
|
10094
|
+
value?: string;
|
|
10095
|
+
static names(): {
|
|
10096
|
+
[key: string]: string;
|
|
10097
|
+
};
|
|
10098
|
+
static types(): {
|
|
10099
|
+
[key: string]: any;
|
|
10100
|
+
};
|
|
10101
|
+
validate(): void;
|
|
10102
|
+
constructor(map?: {
|
|
10103
|
+
[key: string]: any;
|
|
10104
|
+
});
|
|
10105
|
+
}
|
|
10106
|
+
export declare class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
|
|
10107
|
+
/**
|
|
10108
|
+
* @remarks
|
|
10109
|
+
* tag key
|
|
10110
|
+
*
|
|
10111
|
+
* @example
|
|
10112
|
+
* key-1
|
|
10113
|
+
*/
|
|
10114
|
+
tagKey?: string;
|
|
10115
|
+
/**
|
|
10116
|
+
* @remarks
|
|
10117
|
+
* tag value
|
|
10118
|
+
*
|
|
10119
|
+
* @example
|
|
10120
|
+
* value-1
|
|
10121
|
+
*/
|
|
10122
|
+
tagValue?: string;
|
|
10123
|
+
static names(): {
|
|
10124
|
+
[key: string]: string;
|
|
10125
|
+
};
|
|
10126
|
+
static types(): {
|
|
10127
|
+
[key: string]: any;
|
|
10128
|
+
};
|
|
10129
|
+
validate(): void;
|
|
10130
|
+
constructor(map?: {
|
|
10131
|
+
[key: string]: any;
|
|
10132
|
+
});
|
|
10133
|
+
}
|
|
9511
10134
|
export declare class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacks extends $dara.Model {
|
|
9512
10135
|
/**
|
|
9513
10136
|
* @remarks
|
|
@@ -9580,6 +10203,11 @@ export declare class ListCompliancePacksResponseBodyCompliancePacksResultComplia
|
|
|
9580
10203
|
* ACTIVE
|
|
9581
10204
|
*/
|
|
9582
10205
|
status?: string;
|
|
10206
|
+
/**
|
|
10207
|
+
* @remarks
|
|
10208
|
+
* The tags.
|
|
10209
|
+
*/
|
|
10210
|
+
tags?: ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
|
|
9583
10211
|
static names(): {
|
|
9584
10212
|
[key: string]: string;
|
|
9585
10213
|
};
|
|
@@ -9974,6 +10602,7 @@ export declare class ListConfigRuleEvaluationResultsResponseBodyEvaluationResult
|
|
|
9974
10602
|
*
|
|
9975
10603
|
* * ConfigurationItemChangeNotification: The rule is triggered by configuration changes.
|
|
9976
10604
|
* * ScheduledNotification: The rule is periodically triggered.
|
|
10605
|
+
* * Manual: The rule is manually triggered.
|
|
9977
10606
|
*
|
|
9978
10607
|
* @example
|
|
9979
10608
|
* ConfigurationItemChangeNotification
|
|
@@ -11282,6 +11911,7 @@ export declare class ListResourceEvaluationResultsResponseBodyEvaluationResultsE
|
|
|
11282
11911
|
*
|
|
11283
11912
|
* * ConfigurationItemChangeNotification: The managed rule is triggered by configuration changes.
|
|
11284
11913
|
* * ScheduledNotification: The managed rule is periodically triggered.
|
|
11914
|
+
* * Manual: The rule is manually triggered.
|
|
11285
11915
|
*
|
|
11286
11916
|
* @example
|
|
11287
11917
|
* ScheduledNotification
|
|
@@ -11980,6 +12610,40 @@ export declare class UpdateAggregateCompliancePackRequestExcludeTagsScope extend
|
|
|
11980
12610
|
[key: string]: any;
|
|
11981
12611
|
});
|
|
11982
12612
|
}
|
|
12613
|
+
export declare class UpdateAggregateCompliancePackRequestTag extends $dara.Model {
|
|
12614
|
+
/**
|
|
12615
|
+
* @remarks
|
|
12616
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
12617
|
+
*
|
|
12618
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
12619
|
+
*
|
|
12620
|
+
* @example
|
|
12621
|
+
* key-1
|
|
12622
|
+
*/
|
|
12623
|
+
key?: string;
|
|
12624
|
+
/**
|
|
12625
|
+
* @remarks
|
|
12626
|
+
* The tag values.
|
|
12627
|
+
*
|
|
12628
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
12629
|
+
*
|
|
12630
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
12631
|
+
*
|
|
12632
|
+
* @example
|
|
12633
|
+
* value-1
|
|
12634
|
+
*/
|
|
12635
|
+
value?: string;
|
|
12636
|
+
static names(): {
|
|
12637
|
+
[key: string]: string;
|
|
12638
|
+
};
|
|
12639
|
+
static types(): {
|
|
12640
|
+
[key: string]: any;
|
|
12641
|
+
};
|
|
12642
|
+
validate(): void;
|
|
12643
|
+
constructor(map?: {
|
|
12644
|
+
[key: string]: any;
|
|
12645
|
+
});
|
|
12646
|
+
}
|
|
11983
12647
|
export declare class UpdateAggregateCompliancePackRequestTagsScope extends $dara.Model {
|
|
11984
12648
|
/**
|
|
11985
12649
|
* @remarks
|
|
@@ -12092,6 +12756,40 @@ export declare class UpdateAggregateConfigRuleRequestExcludeTagsScope extends $d
|
|
|
12092
12756
|
[key: string]: any;
|
|
12093
12757
|
});
|
|
12094
12758
|
}
|
|
12759
|
+
export declare class UpdateAggregateConfigRuleRequestTag extends $dara.Model {
|
|
12760
|
+
/**
|
|
12761
|
+
* @remarks
|
|
12762
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
12763
|
+
*
|
|
12764
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
12765
|
+
*
|
|
12766
|
+
* @example
|
|
12767
|
+
* key-1
|
|
12768
|
+
*/
|
|
12769
|
+
key?: string;
|
|
12770
|
+
/**
|
|
12771
|
+
* @remarks
|
|
12772
|
+
* The tag values.
|
|
12773
|
+
*
|
|
12774
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
12775
|
+
*
|
|
12776
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
12777
|
+
*
|
|
12778
|
+
* @example
|
|
12779
|
+
* value-1
|
|
12780
|
+
*/
|
|
12781
|
+
value?: string;
|
|
12782
|
+
static names(): {
|
|
12783
|
+
[key: string]: string;
|
|
12784
|
+
};
|
|
12785
|
+
static types(): {
|
|
12786
|
+
[key: string]: any;
|
|
12787
|
+
};
|
|
12788
|
+
validate(): void;
|
|
12789
|
+
constructor(map?: {
|
|
12790
|
+
[key: string]: any;
|
|
12791
|
+
});
|
|
12792
|
+
}
|
|
12095
12793
|
export declare class UpdateAggregateConfigRuleRequestTagsScope extends $dara.Model {
|
|
12096
12794
|
/**
|
|
12097
12795
|
* @remarks
|
|
@@ -12222,6 +12920,40 @@ export declare class UpdateAggregatorRequestAggregatorAccounts extends $dara.Mod
|
|
|
12222
12920
|
[key: string]: any;
|
|
12223
12921
|
});
|
|
12224
12922
|
}
|
|
12923
|
+
export declare class UpdateAggregatorRequestTag extends $dara.Model {
|
|
12924
|
+
/**
|
|
12925
|
+
* @remarks
|
|
12926
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
12927
|
+
*
|
|
12928
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
12929
|
+
*
|
|
12930
|
+
* @example
|
|
12931
|
+
* key-1
|
|
12932
|
+
*/
|
|
12933
|
+
key?: string;
|
|
12934
|
+
/**
|
|
12935
|
+
* @remarks
|
|
12936
|
+
* The tag values.
|
|
12937
|
+
*
|
|
12938
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
12939
|
+
*
|
|
12940
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
12941
|
+
*
|
|
12942
|
+
* @example
|
|
12943
|
+
* value-1
|
|
12944
|
+
*/
|
|
12945
|
+
value?: string;
|
|
12946
|
+
static names(): {
|
|
12947
|
+
[key: string]: string;
|
|
12948
|
+
};
|
|
12949
|
+
static types(): {
|
|
12950
|
+
[key: string]: any;
|
|
12951
|
+
};
|
|
12952
|
+
validate(): void;
|
|
12953
|
+
constructor(map?: {
|
|
12954
|
+
[key: string]: any;
|
|
12955
|
+
});
|
|
12956
|
+
}
|
|
12225
12957
|
export declare class UpdateCompliancePackRequestConfigRulesConfigRuleParameters extends $dara.Model {
|
|
12226
12958
|
/**
|
|
12227
12959
|
* @remarks
|
|
@@ -12347,6 +13079,42 @@ export declare class UpdateCompliancePackRequestExcludeTagsScope extends $dara.M
|
|
|
12347
13079
|
[key: string]: any;
|
|
12348
13080
|
});
|
|
12349
13081
|
}
|
|
13082
|
+
export declare class UpdateCompliancePackRequestTag extends $dara.Model {
|
|
13083
|
+
/**
|
|
13084
|
+
* @remarks
|
|
13085
|
+
* The tag keys.
|
|
13086
|
+
*
|
|
13087
|
+
* The tag keys cannot be an empty string. The tag keys can be up to 64 characters in length. The tag keys cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
13088
|
+
*
|
|
13089
|
+
* You can specify at most 20 tag keys in each call.
|
|
13090
|
+
*
|
|
13091
|
+
* @example
|
|
13092
|
+
* key-1
|
|
13093
|
+
*/
|
|
13094
|
+
key?: string;
|
|
13095
|
+
/**
|
|
13096
|
+
* @remarks
|
|
13097
|
+
* The tag values.
|
|
13098
|
+
*
|
|
13099
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
13100
|
+
*
|
|
13101
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
13102
|
+
*
|
|
13103
|
+
* @example
|
|
13104
|
+
* value-1
|
|
13105
|
+
*/
|
|
13106
|
+
value?: string;
|
|
13107
|
+
static names(): {
|
|
13108
|
+
[key: string]: string;
|
|
13109
|
+
};
|
|
13110
|
+
static types(): {
|
|
13111
|
+
[key: string]: any;
|
|
13112
|
+
};
|
|
13113
|
+
validate(): void;
|
|
13114
|
+
constructor(map?: {
|
|
13115
|
+
[key: string]: any;
|
|
13116
|
+
});
|
|
13117
|
+
}
|
|
12350
13118
|
export declare class UpdateCompliancePackRequestTagsScope extends $dara.Model {
|
|
12351
13119
|
/**
|
|
12352
13120
|
* @remarks
|
|
@@ -13387,6 +14155,13 @@ export declare class CreateAggregateCompliancePackRequest extends $dara.Model {
|
|
|
13387
14155
|
* 1
|
|
13388
14156
|
*/
|
|
13389
14157
|
riskLevel?: number;
|
|
14158
|
+
/**
|
|
14159
|
+
* @remarks
|
|
14160
|
+
* The tags of the resource.
|
|
14161
|
+
*
|
|
14162
|
+
* You can add up to 20 tags to a resource.
|
|
14163
|
+
*/
|
|
14164
|
+
tag?: CreateAggregateCompliancePackRequestTag[];
|
|
13390
14165
|
/**
|
|
13391
14166
|
* @remarks
|
|
13392
14167
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -13563,6 +14338,13 @@ export declare class CreateAggregateCompliancePackShrinkRequest extends $dara.Mo
|
|
|
13563
14338
|
* 1
|
|
13564
14339
|
*/
|
|
13565
14340
|
riskLevel?: number;
|
|
14341
|
+
/**
|
|
14342
|
+
* @remarks
|
|
14343
|
+
* The tags of the resource.
|
|
14344
|
+
*
|
|
14345
|
+
* You can add up to 20 tags to a resource.
|
|
14346
|
+
*/
|
|
14347
|
+
tagShrink?: string;
|
|
13566
14348
|
/**
|
|
13567
14349
|
* @remarks
|
|
13568
14350
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -14067,8 +14849,16 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14067
14849
|
*/
|
|
14068
14850
|
resourceIdsScope?: string;
|
|
14069
14851
|
/**
|
|
14070
|
-
* @
|
|
14071
|
-
*
|
|
14852
|
+
* @example
|
|
14853
|
+
* i-xxx
|
|
14854
|
+
*
|
|
14855
|
+
* **if can be null:**
|
|
14856
|
+
* true
|
|
14857
|
+
*/
|
|
14858
|
+
resourceNameScope?: string;
|
|
14859
|
+
/**
|
|
14860
|
+
* @remarks
|
|
14861
|
+
* The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
|
|
14072
14862
|
*
|
|
14073
14863
|
* This parameter is required.
|
|
14074
14864
|
*
|
|
@@ -14120,6 +14910,13 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14120
14910
|
sourceOwner?: string;
|
|
14121
14911
|
/**
|
|
14122
14912
|
* @remarks
|
|
14913
|
+
* The tags.
|
|
14914
|
+
*/
|
|
14915
|
+
tag?: CreateAggregateConfigRuleRequestTag[];
|
|
14916
|
+
/**
|
|
14917
|
+
* @remarks
|
|
14918
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
14919
|
+
*
|
|
14123
14920
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
14124
14921
|
*
|
|
14125
14922
|
* * AND
|
|
@@ -14127,26 +14924,36 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14127
14924
|
*
|
|
14128
14925
|
* @example
|
|
14129
14926
|
* AND
|
|
14927
|
+
*
|
|
14928
|
+
* @deprecated
|
|
14130
14929
|
*/
|
|
14131
14930
|
tagKeyLogicScope?: string;
|
|
14132
14931
|
/**
|
|
14133
14932
|
* @remarks
|
|
14933
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
14934
|
+
*
|
|
14134
14935
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key. Separate multiple parameter values with commas (,).
|
|
14135
14936
|
*
|
|
14136
|
-
* >
|
|
14937
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14137
14938
|
*
|
|
14138
14939
|
* @example
|
|
14139
14940
|
* ECS
|
|
14941
|
+
*
|
|
14942
|
+
* @deprecated
|
|
14140
14943
|
*/
|
|
14141
14944
|
tagKeyScope?: string;
|
|
14142
14945
|
/**
|
|
14143
14946
|
* @remarks
|
|
14144
|
-
*
|
|
14947
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
14145
14948
|
*
|
|
14146
|
-
*
|
|
14949
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
14950
|
+
*
|
|
14951
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14147
14952
|
*
|
|
14148
14953
|
* @example
|
|
14149
14954
|
* test
|
|
14955
|
+
*
|
|
14956
|
+
* @deprecated
|
|
14150
14957
|
*/
|
|
14151
14958
|
tagValueScope?: string;
|
|
14152
14959
|
/**
|
|
@@ -14354,6 +15161,14 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14354
15161
|
* lb-5cmbowstbkss9ta03****
|
|
14355
15162
|
*/
|
|
14356
15163
|
resourceIdsScope?: string;
|
|
15164
|
+
/**
|
|
15165
|
+
* @example
|
|
15166
|
+
* i-xxx
|
|
15167
|
+
*
|
|
15168
|
+
* **if can be null:**
|
|
15169
|
+
* true
|
|
15170
|
+
*/
|
|
15171
|
+
resourceNameScope?: string;
|
|
14357
15172
|
/**
|
|
14358
15173
|
* @remarks
|
|
14359
15174
|
* The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -14408,6 +15223,13 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14408
15223
|
sourceOwner?: string;
|
|
14409
15224
|
/**
|
|
14410
15225
|
* @remarks
|
|
15226
|
+
* The tags.
|
|
15227
|
+
*/
|
|
15228
|
+
tagShrink?: string;
|
|
15229
|
+
/**
|
|
15230
|
+
* @remarks
|
|
15231
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15232
|
+
*
|
|
14411
15233
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
14412
15234
|
*
|
|
14413
15235
|
* * AND
|
|
@@ -14415,26 +15237,36 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14415
15237
|
*
|
|
14416
15238
|
* @example
|
|
14417
15239
|
* AND
|
|
15240
|
+
*
|
|
15241
|
+
* @deprecated
|
|
14418
15242
|
*/
|
|
14419
15243
|
tagKeyLogicScope?: string;
|
|
14420
15244
|
/**
|
|
14421
15245
|
* @remarks
|
|
15246
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15247
|
+
*
|
|
14422
15248
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key. Separate multiple parameter values with commas (,).
|
|
14423
15249
|
*
|
|
14424
|
-
* >
|
|
15250
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14425
15251
|
*
|
|
14426
15252
|
* @example
|
|
14427
15253
|
* ECS
|
|
15254
|
+
*
|
|
15255
|
+
* @deprecated
|
|
14428
15256
|
*/
|
|
14429
15257
|
tagKeyScope?: string;
|
|
14430
15258
|
/**
|
|
14431
15259
|
* @remarks
|
|
14432
|
-
*
|
|
15260
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
14433
15261
|
*
|
|
14434
|
-
*
|
|
15262
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
15263
|
+
*
|
|
15264
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14435
15265
|
*
|
|
14436
15266
|
* @example
|
|
14437
15267
|
* test
|
|
15268
|
+
*
|
|
15269
|
+
* @deprecated
|
|
14438
15270
|
*/
|
|
14439
15271
|
tagValueScope?: string;
|
|
14440
15272
|
/**
|
|
@@ -14715,12 +15547,19 @@ export declare class CreateAggregatorRequest extends $dara.Model {
|
|
|
14715
15547
|
description?: string;
|
|
14716
15548
|
/**
|
|
14717
15549
|
* @remarks
|
|
14718
|
-
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`.
|
|
15550
|
+
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`. Multiple resource folder IDs should be separated by commas (,).
|
|
14719
15551
|
*
|
|
14720
15552
|
* @example
|
|
14721
|
-
* fd-brHdgv****
|
|
15553
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
14722
15554
|
*/
|
|
14723
15555
|
folderId?: string;
|
|
15556
|
+
/**
|
|
15557
|
+
* @remarks
|
|
15558
|
+
* The tags of the resource.
|
|
15559
|
+
*
|
|
15560
|
+
* You can add up to 20 tags to a resource.
|
|
15561
|
+
*/
|
|
15562
|
+
tag?: CreateAggregatorRequestTag[];
|
|
14724
15563
|
static names(): {
|
|
14725
15564
|
[key: string]: string;
|
|
14726
15565
|
};
|
|
@@ -14795,12 +15634,19 @@ export declare class CreateAggregatorShrinkRequest extends $dara.Model {
|
|
|
14795
15634
|
description?: string;
|
|
14796
15635
|
/**
|
|
14797
15636
|
* @remarks
|
|
14798
|
-
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`.
|
|
15637
|
+
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`. Multiple resource folder IDs should be separated by commas (,).
|
|
14799
15638
|
*
|
|
14800
15639
|
* @example
|
|
14801
|
-
* fd-brHdgv****
|
|
15640
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
14802
15641
|
*/
|
|
14803
15642
|
folderId?: string;
|
|
15643
|
+
/**
|
|
15644
|
+
* @remarks
|
|
15645
|
+
* The tags of the resource.
|
|
15646
|
+
*
|
|
15647
|
+
* You can add up to 20 tags to a resource.
|
|
15648
|
+
*/
|
|
15649
|
+
tagShrink?: string;
|
|
14804
15650
|
static names(): {
|
|
14805
15651
|
[key: string]: string;
|
|
14806
15652
|
};
|
|
@@ -14978,6 +15824,13 @@ export declare class CreateCompliancePackRequest extends $dara.Model {
|
|
|
14978
15824
|
* 1
|
|
14979
15825
|
*/
|
|
14980
15826
|
riskLevel?: number;
|
|
15827
|
+
/**
|
|
15828
|
+
* @remarks
|
|
15829
|
+
* The tags of the resource.
|
|
15830
|
+
*
|
|
15831
|
+
* You can add up to 20 tags to a resource.
|
|
15832
|
+
*/
|
|
15833
|
+
tag?: CreateCompliancePackRequestTag[];
|
|
14981
15834
|
/**
|
|
14982
15835
|
* @remarks
|
|
14983
15836
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -15141,6 +15994,13 @@ export declare class CreateCompliancePackShrinkRequest extends $dara.Model {
|
|
|
15141
15994
|
* 1
|
|
15142
15995
|
*/
|
|
15143
15996
|
riskLevel?: number;
|
|
15997
|
+
/**
|
|
15998
|
+
* @remarks
|
|
15999
|
+
* The tags of the resource.
|
|
16000
|
+
*
|
|
16001
|
+
* You can add up to 20 tags to a resource.
|
|
16002
|
+
*/
|
|
16003
|
+
tagShrink?: string;
|
|
15144
16004
|
/**
|
|
15145
16005
|
* @remarks
|
|
15146
16006
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -15276,25 +16136,34 @@ export declare class CreateConfigDeliveryChannelRequest extends $dara.Model {
|
|
|
15276
16136
|
configurationSnapshot?: boolean;
|
|
15277
16137
|
/**
|
|
15278
16138
|
* @remarks
|
|
15279
|
-
* The rule that you want to attach to the delivery channel
|
|
16139
|
+
* The rule that you want to attach to the delivery channel, used to specify subscription content filtering conditions.
|
|
15280
16140
|
*
|
|
15281
|
-
* * If
|
|
16141
|
+
* * If you specify the minimum risk level and resource types for compliance events, it should be as follows:
|
|
15282
16142
|
*
|
|
15283
16143
|
* * The setting of the lowest risk level for the events to which you want to subscribe is in the following format: `{"filterType":"RuleRiskLevel","value":"1","multiple":false}`.
|
|
15284
16144
|
*
|
|
15285
16145
|
* The `value` field indicates the lowest risk level of the events to which you want to subscribe. Valid values: 1, 2, and 3. The value 1 indicates the high risk level, the value 2 indicates the medium risk level, and the value 3 indicates the low risk level.
|
|
15286
16146
|
*
|
|
16147
|
+
* The `multiple` field indicates whether multiple values are supported for this group of filters. Risk levels only support single-value filtering, so the multiple field for compliance event type content can only be set to `false`.
|
|
16148
|
+
*
|
|
15287
16149
|
* * The setting of the resource types of the events to which you want to subscribe is in the following format: `{"filterType":"ResourceType","values":["ACS::ACK::Cluster","ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage"],"multiple":true}`.
|
|
15288
16150
|
*
|
|
15289
|
-
* The `values` field indicates the resource types of the events to which you want to subscribe.
|
|
16151
|
+
* The `values` field indicates the resource types of the events to which you want to subscribe.
|
|
15290
16152
|
*
|
|
15291
|
-
* `
|
|
16153
|
+
* The `multiple` field indicates whether multiple values are supported for this group of filters. Resource types support multi-value filtering; when selecting multiple resource types, the multiple field can be set to true.
|
|
16154
|
+
* The value of the field is a JSON array. Examples:
|
|
15292
16155
|
*
|
|
15293
|
-
*
|
|
16156
|
+
* `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
|
|
16157
|
+
*
|
|
16158
|
+
* * You can also simultaneously specify both risk levels and resource types, such as:
|
|
16159
|
+
*
|
|
16160
|
+
* `[{"filterType":"RuleRiskLevel","value":"2","multiple":false},{"filterType":"ResourceType","values":["ACS::CDN::Domain","ACS::ActionTrail::Trail"],"multiple":true}]`
|
|
16161
|
+
*
|
|
16162
|
+
* * If you specify the resource types for delivering configurations, the resource types are specified by: `{"filterType":"ResourceType","values":["ACS::ACK::Cluster","ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage"],"multiple":true}`.
|
|
15294
16163
|
*
|
|
15295
16164
|
* The `values` field specifies the resource types of the snapshots to which you want to deliver. The value of the field is a JSON array. Examples:
|
|
15296
16165
|
*
|
|
15297
|
-
*
|
|
16166
|
+
* `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
|
|
15298
16167
|
*
|
|
15299
16168
|
* @example
|
|
15300
16169
|
* [{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]
|
|
@@ -15574,6 +16443,11 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15574
16443
|
* lb-5cmbowstbkss9ta03****
|
|
15575
16444
|
*/
|
|
15576
16445
|
resourceIdsScope?: string;
|
|
16446
|
+
/**
|
|
16447
|
+
* **if can be null:**
|
|
16448
|
+
* true
|
|
16449
|
+
*/
|
|
16450
|
+
resourceNameScope?: string;
|
|
15577
16451
|
/**
|
|
15578
16452
|
* @remarks
|
|
15579
16453
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -15640,6 +16514,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15640
16514
|
*
|
|
15641
16515
|
* @example
|
|
15642
16516
|
* AND
|
|
16517
|
+
*
|
|
16518
|
+
* @deprecated
|
|
15643
16519
|
*/
|
|
15644
16520
|
tagKeyLogicScope?: string;
|
|
15645
16521
|
/**
|
|
@@ -15650,6 +16526,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15650
16526
|
*
|
|
15651
16527
|
* @example
|
|
15652
16528
|
* ECS
|
|
16529
|
+
*
|
|
16530
|
+
* @deprecated
|
|
15653
16531
|
*/
|
|
15654
16532
|
tagKeyScope?: string;
|
|
15655
16533
|
/**
|
|
@@ -15660,6 +16538,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15660
16538
|
*
|
|
15661
16539
|
* @example
|
|
15662
16540
|
* test
|
|
16541
|
+
*
|
|
16542
|
+
* @deprecated
|
|
15663
16543
|
*/
|
|
15664
16544
|
tagValueScope?: string;
|
|
15665
16545
|
/**
|
|
@@ -15811,6 +16691,11 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
15811
16691
|
* lb-5cmbowstbkss9ta03****
|
|
15812
16692
|
*/
|
|
15813
16693
|
resourceIdsScope?: string;
|
|
16694
|
+
/**
|
|
16695
|
+
* **if can be null:**
|
|
16696
|
+
* true
|
|
16697
|
+
*/
|
|
16698
|
+
resourceNameScope?: string;
|
|
15814
16699
|
/**
|
|
15815
16700
|
* @remarks
|
|
15816
16701
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -15877,6 +16762,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
15877
16762
|
*
|
|
15878
16763
|
* @example
|
|
15879
16764
|
* AND
|
|
16765
|
+
*
|
|
16766
|
+
* @deprecated
|
|
15880
16767
|
*/
|
|
15881
16768
|
tagKeyLogicScope?: string;
|
|
15882
16769
|
/**
|
|
@@ -15887,6 +16774,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
15887
16774
|
*
|
|
15888
16775
|
* @example
|
|
15889
16776
|
* ECS
|
|
16777
|
+
*
|
|
16778
|
+
* @deprecated
|
|
15890
16779
|
*/
|
|
15891
16780
|
tagKeyScope?: string;
|
|
15892
16781
|
/**
|
|
@@ -15897,6 +16786,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
15897
16786
|
*
|
|
15898
16787
|
* @example
|
|
15899
16788
|
* test
|
|
16789
|
+
*
|
|
16790
|
+
* @deprecated
|
|
15900
16791
|
*/
|
|
15901
16792
|
tagValueScope?: string;
|
|
15902
16793
|
/**
|
|
@@ -17408,6 +18299,13 @@ export declare class EvaluatePreConfigRulesRequest extends $dara.Model {
|
|
|
17408
18299
|
* This parameter is required.
|
|
17409
18300
|
*/
|
|
17410
18301
|
resourceEvaluateItems?: EvaluatePreConfigRulesRequestResourceEvaluateItems[];
|
|
18302
|
+
/**
|
|
18303
|
+
* @remarks
|
|
18304
|
+
* 下一个查询开始Token
|
|
18305
|
+
*
|
|
18306
|
+
* @example
|
|
18307
|
+
* ros
|
|
18308
|
+
*/
|
|
17411
18309
|
resourceTypeFormat?: string;
|
|
17412
18310
|
static names(): {
|
|
17413
18311
|
[key: string]: string;
|
|
@@ -17441,6 +18339,13 @@ export declare class EvaluatePreConfigRulesShrinkRequest extends $dara.Model {
|
|
|
17441
18339
|
* This parameter is required.
|
|
17442
18340
|
*/
|
|
17443
18341
|
resourceEvaluateItemsShrink?: string;
|
|
18342
|
+
/**
|
|
18343
|
+
* @remarks
|
|
18344
|
+
* 下一个查询开始Token
|
|
18345
|
+
*
|
|
18346
|
+
* @example
|
|
18347
|
+
* ros
|
|
18348
|
+
*/
|
|
17444
18349
|
resourceTypeFormat?: string;
|
|
17445
18350
|
static names(): {
|
|
17446
18351
|
[key: string]: string;
|
|
@@ -18212,6 +19117,56 @@ export declare class GetAggregateCompliancePackRequest extends $dara.Model {
|
|
|
18212
19117
|
* cp-fdc8626622af00f9****
|
|
18213
19118
|
*/
|
|
18214
19119
|
compliancePackId?: string;
|
|
19120
|
+
/**
|
|
19121
|
+
* @remarks
|
|
19122
|
+
* The tags of the resource.
|
|
19123
|
+
*
|
|
19124
|
+
* You can add up to 20 tags to a resource.
|
|
19125
|
+
*/
|
|
19126
|
+
tag?: GetAggregateCompliancePackRequestTag[];
|
|
19127
|
+
static names(): {
|
|
19128
|
+
[key: string]: string;
|
|
19129
|
+
};
|
|
19130
|
+
static types(): {
|
|
19131
|
+
[key: string]: any;
|
|
19132
|
+
};
|
|
19133
|
+
validate(): void;
|
|
19134
|
+
constructor(map?: {
|
|
19135
|
+
[key: string]: any;
|
|
19136
|
+
});
|
|
19137
|
+
}
|
|
19138
|
+
export declare class GetAggregateCompliancePackShrinkRequest extends $dara.Model {
|
|
19139
|
+
/**
|
|
19140
|
+
* @remarks
|
|
19141
|
+
* The ID of the account group.
|
|
19142
|
+
*
|
|
19143
|
+
* For more information about how to obtain the ID of the account group, see [ListAggregators](https://help.aliyun.com/document_detail/255797.html).
|
|
19144
|
+
*
|
|
19145
|
+
* This parameter is required.
|
|
19146
|
+
*
|
|
19147
|
+
* @example
|
|
19148
|
+
* ca-f632626622af0079****
|
|
19149
|
+
*/
|
|
19150
|
+
aggregatorId?: string;
|
|
19151
|
+
/**
|
|
19152
|
+
* @remarks
|
|
19153
|
+
* The ID of the compliance package.
|
|
19154
|
+
*
|
|
19155
|
+
* For more information about how to obtain the ID of a compliance package, see [ListAggregateCompliancePacks](https://help.aliyun.com/document_detail/262059.html).
|
|
19156
|
+
*
|
|
19157
|
+
* This parameter is required.
|
|
19158
|
+
*
|
|
19159
|
+
* @example
|
|
19160
|
+
* cp-fdc8626622af00f9****
|
|
19161
|
+
*/
|
|
19162
|
+
compliancePackId?: string;
|
|
19163
|
+
/**
|
|
19164
|
+
* @remarks
|
|
19165
|
+
* The tags of the resource.
|
|
19166
|
+
*
|
|
19167
|
+
* You can add up to 20 tags to a resource.
|
|
19168
|
+
*/
|
|
19169
|
+
tagShrink?: string;
|
|
18215
19170
|
static names(): {
|
|
18216
19171
|
[key: string]: string;
|
|
18217
19172
|
};
|
|
@@ -18577,7 +19532,7 @@ export declare class GetAggregateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
18577
19532
|
export declare class GetAggregateConfigRuleResponseBody extends $dara.Model {
|
|
18578
19533
|
/**
|
|
18579
19534
|
* @remarks
|
|
18580
|
-
* The rules.
|
|
19535
|
+
* The information about the rules.
|
|
18581
19536
|
*/
|
|
18582
19537
|
configRule?: GetAggregateConfigRuleResponseBodyConfigRule;
|
|
18583
19538
|
/**
|
|
@@ -18795,7 +19750,7 @@ export declare class GetAggregateConfigRulesReportRequest extends $dara.Model {
|
|
|
18795
19750
|
export declare class GetAggregateConfigRulesReportResponseBody extends $dara.Model {
|
|
18796
19751
|
/**
|
|
18797
19752
|
* @remarks
|
|
18798
|
-
* The
|
|
19753
|
+
* The compliance evaluation report.
|
|
18799
19754
|
*/
|
|
18800
19755
|
configRulesReport?: GetAggregateConfigRulesReportResponseBodyConfigRulesReport;
|
|
18801
19756
|
/**
|
|
@@ -19853,6 +20808,42 @@ export declare class GetAggregatorRequest extends $dara.Model {
|
|
|
19853
20808
|
* ca-88ea626622af0055****
|
|
19854
20809
|
*/
|
|
19855
20810
|
aggregatorId?: string;
|
|
20811
|
+
/**
|
|
20812
|
+
* @remarks
|
|
20813
|
+
* The tags of the resource.
|
|
20814
|
+
*
|
|
20815
|
+
* You can add up to 20 tags to a resource.
|
|
20816
|
+
*/
|
|
20817
|
+
tag?: GetAggregatorRequestTag[];
|
|
20818
|
+
static names(): {
|
|
20819
|
+
[key: string]: string;
|
|
20820
|
+
};
|
|
20821
|
+
static types(): {
|
|
20822
|
+
[key: string]: any;
|
|
20823
|
+
};
|
|
20824
|
+
validate(): void;
|
|
20825
|
+
constructor(map?: {
|
|
20826
|
+
[key: string]: any;
|
|
20827
|
+
});
|
|
20828
|
+
}
|
|
20829
|
+
export declare class GetAggregatorShrinkRequest extends $dara.Model {
|
|
20830
|
+
/**
|
|
20831
|
+
* @remarks
|
|
20832
|
+
* The ID of the account group.
|
|
20833
|
+
*
|
|
20834
|
+
* This parameter is required.
|
|
20835
|
+
*
|
|
20836
|
+
* @example
|
|
20837
|
+
* ca-88ea626622af0055****
|
|
20838
|
+
*/
|
|
20839
|
+
aggregatorId?: string;
|
|
20840
|
+
/**
|
|
20841
|
+
* @remarks
|
|
20842
|
+
* The tags of the resource.
|
|
20843
|
+
*
|
|
20844
|
+
* You can add up to 20 tags to a resource.
|
|
20845
|
+
*/
|
|
20846
|
+
tagShrink?: string;
|
|
19856
20847
|
static names(): {
|
|
19857
20848
|
[key: string]: string;
|
|
19858
20849
|
};
|
|
@@ -19919,6 +20910,44 @@ export declare class GetCompliancePackRequest extends $dara.Model {
|
|
|
19919
20910
|
* cp-a8a8626622af0082****
|
|
19920
20911
|
*/
|
|
19921
20912
|
compliancePackId?: string;
|
|
20913
|
+
/**
|
|
20914
|
+
* @remarks
|
|
20915
|
+
* The tags of the resource.
|
|
20916
|
+
*
|
|
20917
|
+
* You can add up to 20 tags to a resource.
|
|
20918
|
+
*/
|
|
20919
|
+
tag?: GetCompliancePackRequestTag[];
|
|
20920
|
+
static names(): {
|
|
20921
|
+
[key: string]: string;
|
|
20922
|
+
};
|
|
20923
|
+
static types(): {
|
|
20924
|
+
[key: string]: any;
|
|
20925
|
+
};
|
|
20926
|
+
validate(): void;
|
|
20927
|
+
constructor(map?: {
|
|
20928
|
+
[key: string]: any;
|
|
20929
|
+
});
|
|
20930
|
+
}
|
|
20931
|
+
export declare class GetCompliancePackShrinkRequest extends $dara.Model {
|
|
20932
|
+
/**
|
|
20933
|
+
* @remarks
|
|
20934
|
+
* The ID of the compliance package.
|
|
20935
|
+
*
|
|
20936
|
+
* For more information about how to obtain the ID of a compliance package, see [ListCompliancePacks](https://help.aliyun.com/document_detail/263332.html).
|
|
20937
|
+
*
|
|
20938
|
+
* This parameter is required.
|
|
20939
|
+
*
|
|
20940
|
+
* @example
|
|
20941
|
+
* cp-a8a8626622af0082****
|
|
20942
|
+
*/
|
|
20943
|
+
compliancePackId?: string;
|
|
20944
|
+
/**
|
|
20945
|
+
* @remarks
|
|
20946
|
+
* The tags of the resource.
|
|
20947
|
+
*
|
|
20948
|
+
* You can add up to 20 tags to a resource.
|
|
20949
|
+
*/
|
|
20950
|
+
tagShrink?: string;
|
|
19922
20951
|
static names(): {
|
|
19923
20952
|
[key: string]: string;
|
|
19924
20953
|
};
|
|
@@ -21866,6 +22895,71 @@ export declare class ListAggregateCompliancePacksRequest extends $dara.Model {
|
|
|
21866
22895
|
* ACTIVE
|
|
21867
22896
|
*/
|
|
21868
22897
|
status?: string;
|
|
22898
|
+
/**
|
|
22899
|
+
* @remarks
|
|
22900
|
+
* The tags.
|
|
22901
|
+
*/
|
|
22902
|
+
tag?: ListAggregateCompliancePacksRequestTag[];
|
|
22903
|
+
static names(): {
|
|
22904
|
+
[key: string]: string;
|
|
22905
|
+
};
|
|
22906
|
+
static types(): {
|
|
22907
|
+
[key: string]: any;
|
|
22908
|
+
};
|
|
22909
|
+
validate(): void;
|
|
22910
|
+
constructor(map?: {
|
|
22911
|
+
[key: string]: any;
|
|
22912
|
+
});
|
|
22913
|
+
}
|
|
22914
|
+
export declare class ListAggregateCompliancePacksShrinkRequest extends $dara.Model {
|
|
22915
|
+
/**
|
|
22916
|
+
* @remarks
|
|
22917
|
+
* The ID of the account group.
|
|
22918
|
+
*
|
|
22919
|
+
* For more information about how to obtain the ID of an account group, see [ListAggregators](https://help.aliyun.com/document_detail/255797.html).
|
|
22920
|
+
*
|
|
22921
|
+
* This parameter is required.
|
|
22922
|
+
*
|
|
22923
|
+
* @example
|
|
22924
|
+
* ca-f632626622af0079****
|
|
22925
|
+
*/
|
|
22926
|
+
aggregatorId?: string;
|
|
22927
|
+
/**
|
|
22928
|
+
* @remarks
|
|
22929
|
+
* The number of the page to return.
|
|
22930
|
+
*
|
|
22931
|
+
* Pages start from page 1. Default value: 1.
|
|
22932
|
+
*
|
|
22933
|
+
* @example
|
|
22934
|
+
* 1
|
|
22935
|
+
*/
|
|
22936
|
+
pageNumber?: number;
|
|
22937
|
+
/**
|
|
22938
|
+
* @remarks
|
|
22939
|
+
* The number of entries to return on each page.
|
|
22940
|
+
*
|
|
22941
|
+
* Valid values: 1 to 100. Default value: 10.
|
|
22942
|
+
*
|
|
22943
|
+
* @example
|
|
22944
|
+
* 20
|
|
22945
|
+
*/
|
|
22946
|
+
pageSize?: number;
|
|
22947
|
+
/**
|
|
22948
|
+
* @remarks
|
|
22949
|
+
* The status of the one or more compliance packages to be queried. Valid values:
|
|
22950
|
+
*
|
|
22951
|
+
* * ACTIVE: compliance packages that are available for use.
|
|
22952
|
+
* * CREATING: compliance packages that are being created.
|
|
22953
|
+
*
|
|
22954
|
+
* @example
|
|
22955
|
+
* ACTIVE
|
|
22956
|
+
*/
|
|
22957
|
+
status?: string;
|
|
22958
|
+
/**
|
|
22959
|
+
* @remarks
|
|
22960
|
+
* The tags.
|
|
22961
|
+
*/
|
|
22962
|
+
tagShrink?: string;
|
|
21869
22963
|
static names(): {
|
|
21870
22964
|
[key: string]: string;
|
|
21871
22965
|
};
|
|
@@ -21880,7 +22974,7 @@ export declare class ListAggregateCompliancePacksRequest extends $dara.Model {
|
|
|
21880
22974
|
export declare class ListAggregateCompliancePacksResponseBody extends $dara.Model {
|
|
21881
22975
|
/**
|
|
21882
22976
|
* @remarks
|
|
21883
|
-
* The
|
|
22977
|
+
* The compliance packages returned.
|
|
21884
22978
|
*/
|
|
21885
22979
|
compliancePacksResult?: ListAggregateCompliancePacksResponseBodyCompliancePacksResult;
|
|
21886
22980
|
/**
|
|
@@ -22211,7 +23305,130 @@ export declare class ListAggregateConfigRuleEvaluationStatisticsResponse extends
|
|
|
22211
23305
|
[key: string]: any;
|
|
22212
23306
|
});
|
|
22213
23307
|
}
|
|
22214
|
-
export declare class ListAggregateConfigRulesRequest extends $dara.Model {
|
|
23308
|
+
export declare class ListAggregateConfigRulesRequest extends $dara.Model {
|
|
23309
|
+
/**
|
|
23310
|
+
* @remarks
|
|
23311
|
+
* The ID of the account group.
|
|
23312
|
+
*
|
|
23313
|
+
* For more information about how to obtain the ID of an account group, see [ListAggregators](https://help.aliyun.com/document_detail/255797.html).
|
|
23314
|
+
*
|
|
23315
|
+
* This parameter is required.
|
|
23316
|
+
*
|
|
23317
|
+
* @example
|
|
23318
|
+
* ca-f632626622af0079****
|
|
23319
|
+
*/
|
|
23320
|
+
aggregatorId?: string;
|
|
23321
|
+
/**
|
|
23322
|
+
* @remarks
|
|
23323
|
+
* The compliance package ID.
|
|
23324
|
+
*
|
|
23325
|
+
* @example
|
|
23326
|
+
* cp-fe416457e0d90022****
|
|
23327
|
+
*/
|
|
23328
|
+
compliancePackId?: string;
|
|
23329
|
+
/**
|
|
23330
|
+
* @remarks
|
|
23331
|
+
* The compliance evaluation result. Valid values:
|
|
23332
|
+
*
|
|
23333
|
+
* * COMPLIANT: The resources are evaluated as compliant.
|
|
23334
|
+
* * NON_COMPLIANT: The resources are evaluated as non-compliant.
|
|
23335
|
+
* * NOT_APPLICABLE: The rule does not apply to the resources.
|
|
23336
|
+
* * INSUFFICIENT_DATA: No data is available.
|
|
23337
|
+
*
|
|
23338
|
+
* @example
|
|
23339
|
+
* COMPLIANT
|
|
23340
|
+
*/
|
|
23341
|
+
complianceType?: string;
|
|
23342
|
+
/**
|
|
23343
|
+
* @remarks
|
|
23344
|
+
* The name of the rule.
|
|
23345
|
+
*
|
|
23346
|
+
* @example
|
|
23347
|
+
* test-rule-name
|
|
23348
|
+
*/
|
|
23349
|
+
configRuleName?: string;
|
|
23350
|
+
/**
|
|
23351
|
+
* @remarks
|
|
23352
|
+
* The status of the rule. Valid values:
|
|
23353
|
+
*
|
|
23354
|
+
* * ACTIVE: The rule is being used to monitor resource configurations.
|
|
23355
|
+
* * DELETING: The rule is being deleted.
|
|
23356
|
+
* * EVALUATING: The rule is triggered and is being used to monitor resource configurations.
|
|
23357
|
+
* * INACTIVE: The rule is disabled.
|
|
23358
|
+
*
|
|
23359
|
+
* @example
|
|
23360
|
+
* ACTIVE
|
|
23361
|
+
*/
|
|
23362
|
+
configRuleState?: string;
|
|
23363
|
+
/**
|
|
23364
|
+
* @remarks
|
|
23365
|
+
* The keyword that is used for queries.
|
|
23366
|
+
*
|
|
23367
|
+
* You can perform a fuzzy search by rule ID, rule name, rule description, or managed rule ID.
|
|
23368
|
+
*
|
|
23369
|
+
* @example
|
|
23370
|
+
* ecs
|
|
23371
|
+
*/
|
|
23372
|
+
keyword?: string;
|
|
23373
|
+
/**
|
|
23374
|
+
* @remarks
|
|
23375
|
+
* The page number.
|
|
23376
|
+
*
|
|
23377
|
+
* Pages start from page 1. Default value: 1
|
|
23378
|
+
*
|
|
23379
|
+
* @example
|
|
23380
|
+
* 1
|
|
23381
|
+
*/
|
|
23382
|
+
pageNumber?: number;
|
|
23383
|
+
/**
|
|
23384
|
+
* @remarks
|
|
23385
|
+
* The number of entries per page.
|
|
23386
|
+
*
|
|
23387
|
+
* Valid values: 1 to 100. Minimum value: 1. Default value: 10
|
|
23388
|
+
*
|
|
23389
|
+
* @example
|
|
23390
|
+
* 10
|
|
23391
|
+
*/
|
|
23392
|
+
pageSize?: number;
|
|
23393
|
+
/**
|
|
23394
|
+
* @remarks
|
|
23395
|
+
* Resource type for the rule to evaluate.
|
|
23396
|
+
*
|
|
23397
|
+
* @example
|
|
23398
|
+
* ACS::ECS::Instance
|
|
23399
|
+
*/
|
|
23400
|
+
resourceTypes?: string;
|
|
23401
|
+
/**
|
|
23402
|
+
* @remarks
|
|
23403
|
+
* The risk level of the resources that do not comply with the rule. Valid values:
|
|
23404
|
+
*
|
|
23405
|
+
* * 1: high
|
|
23406
|
+
* * 2: medium
|
|
23407
|
+
* * 3: low
|
|
23408
|
+
*
|
|
23409
|
+
* @example
|
|
23410
|
+
* 1
|
|
23411
|
+
*/
|
|
23412
|
+
riskLevel?: number;
|
|
23413
|
+
/**
|
|
23414
|
+
* @remarks
|
|
23415
|
+
* The tags of the resource.
|
|
23416
|
+
*
|
|
23417
|
+
* You can add up to 20 tags to a resource.
|
|
23418
|
+
*/
|
|
23419
|
+
tag?: ListAggregateConfigRulesRequestTag[];
|
|
23420
|
+
static names(): {
|
|
23421
|
+
[key: string]: string;
|
|
23422
|
+
};
|
|
23423
|
+
static types(): {
|
|
23424
|
+
[key: string]: any;
|
|
23425
|
+
};
|
|
23426
|
+
validate(): void;
|
|
23427
|
+
constructor(map?: {
|
|
23428
|
+
[key: string]: any;
|
|
23429
|
+
});
|
|
23430
|
+
}
|
|
23431
|
+
export declare class ListAggregateConfigRulesShrinkRequest extends $dara.Model {
|
|
22215
23432
|
/**
|
|
22216
23433
|
* @remarks
|
|
22217
23434
|
* The ID of the account group.
|
|
@@ -22316,6 +23533,13 @@ export declare class ListAggregateConfigRulesRequest extends $dara.Model {
|
|
|
22316
23533
|
* 1
|
|
22317
23534
|
*/
|
|
22318
23535
|
riskLevel?: number;
|
|
23536
|
+
/**
|
|
23537
|
+
* @remarks
|
|
23538
|
+
* The tags of the resource.
|
|
23539
|
+
*
|
|
23540
|
+
* You can add up to 20 tags to a resource.
|
|
23541
|
+
*/
|
|
23542
|
+
tagShrink?: string;
|
|
22319
23543
|
static names(): {
|
|
22320
23544
|
[key: string]: string;
|
|
22321
23545
|
};
|
|
@@ -23067,6 +24291,50 @@ export declare class ListAggregatorsRequest extends $dara.Model {
|
|
|
23067
24291
|
* TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
|
|
23068
24292
|
*/
|
|
23069
24293
|
nextToken?: string;
|
|
24294
|
+
/**
|
|
24295
|
+
* @remarks
|
|
24296
|
+
* The tags of the resource.
|
|
24297
|
+
*
|
|
24298
|
+
* You can add up to 20 tags to a resource.
|
|
24299
|
+
*/
|
|
24300
|
+
tag?: ListAggregatorsRequestTag[];
|
|
24301
|
+
static names(): {
|
|
24302
|
+
[key: string]: string;
|
|
24303
|
+
};
|
|
24304
|
+
static types(): {
|
|
24305
|
+
[key: string]: any;
|
|
24306
|
+
};
|
|
24307
|
+
validate(): void;
|
|
24308
|
+
constructor(map?: {
|
|
24309
|
+
[key: string]: any;
|
|
24310
|
+
});
|
|
24311
|
+
}
|
|
24312
|
+
export declare class ListAggregatorsShrinkRequest extends $dara.Model {
|
|
24313
|
+
/**
|
|
24314
|
+
* @remarks
|
|
24315
|
+
* The maximum number of entries to return in a request. Valid values: 1 to 100.
|
|
24316
|
+
*
|
|
24317
|
+
* This parameter is required.
|
|
24318
|
+
*
|
|
24319
|
+
* @example
|
|
24320
|
+
* 10
|
|
24321
|
+
*/
|
|
24322
|
+
maxResults?: number;
|
|
24323
|
+
/**
|
|
24324
|
+
* @remarks
|
|
24325
|
+
* The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of `NextToken`.
|
|
24326
|
+
*
|
|
24327
|
+
* @example
|
|
24328
|
+
* TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
|
|
24329
|
+
*/
|
|
24330
|
+
nextToken?: string;
|
|
24331
|
+
/**
|
|
24332
|
+
* @remarks
|
|
24333
|
+
* The tags of the resource.
|
|
24334
|
+
*
|
|
24335
|
+
* You can add up to 20 tags to a resource.
|
|
24336
|
+
*/
|
|
24337
|
+
tagShrink?: string;
|
|
23070
24338
|
static names(): {
|
|
23071
24339
|
[key: string]: string;
|
|
23072
24340
|
};
|
|
@@ -23242,6 +24510,63 @@ export declare class ListCompliancePacksRequest extends $dara.Model {
|
|
|
23242
24510
|
* ACTIVE
|
|
23243
24511
|
*/
|
|
23244
24512
|
status?: string;
|
|
24513
|
+
/**
|
|
24514
|
+
* @remarks
|
|
24515
|
+
* The tags of the resource.
|
|
24516
|
+
*
|
|
24517
|
+
* You can add up to 20 tags to a resource.
|
|
24518
|
+
*/
|
|
24519
|
+
tag?: ListCompliancePacksRequestTag[];
|
|
24520
|
+
static names(): {
|
|
24521
|
+
[key: string]: string;
|
|
24522
|
+
};
|
|
24523
|
+
static types(): {
|
|
24524
|
+
[key: string]: any;
|
|
24525
|
+
};
|
|
24526
|
+
validate(): void;
|
|
24527
|
+
constructor(map?: {
|
|
24528
|
+
[key: string]: any;
|
|
24529
|
+
});
|
|
24530
|
+
}
|
|
24531
|
+
export declare class ListCompliancePacksShrinkRequest extends $dara.Model {
|
|
24532
|
+
/**
|
|
24533
|
+
* @remarks
|
|
24534
|
+
* The page number.
|
|
24535
|
+
*
|
|
24536
|
+
* Pages start from page 1. Default value: 1
|
|
24537
|
+
*
|
|
24538
|
+
* @example
|
|
24539
|
+
* 1
|
|
24540
|
+
*/
|
|
24541
|
+
pageNumber?: number;
|
|
24542
|
+
/**
|
|
24543
|
+
* @remarks
|
|
24544
|
+
* The number of entries per page.
|
|
24545
|
+
*
|
|
24546
|
+
* Valid values: 1 to 100. Minimum value: 1. Default value: 10.
|
|
24547
|
+
*
|
|
24548
|
+
* @example
|
|
24549
|
+
* 10
|
|
24550
|
+
*/
|
|
24551
|
+
pageSize?: number;
|
|
24552
|
+
/**
|
|
24553
|
+
* @remarks
|
|
24554
|
+
* The status of the compliance package to be queried. Valid values:
|
|
24555
|
+
*
|
|
24556
|
+
* * ACTIVE: The compliance package is active.
|
|
24557
|
+
* * CREATING: The compliance package is being created.
|
|
24558
|
+
*
|
|
24559
|
+
* @example
|
|
24560
|
+
* ACTIVE
|
|
24561
|
+
*/
|
|
24562
|
+
status?: string;
|
|
24563
|
+
/**
|
|
24564
|
+
* @remarks
|
|
24565
|
+
* The tags of the resource.
|
|
24566
|
+
*
|
|
24567
|
+
* You can add up to 20 tags to a resource.
|
|
24568
|
+
*/
|
|
24569
|
+
tagShrink?: string;
|
|
23245
24570
|
static names(): {
|
|
23246
24571
|
[key: string]: string;
|
|
23247
24572
|
};
|
|
@@ -23397,7 +24722,7 @@ export declare class ListConfigRuleEvaluationResultsRequest extends $dara.Model
|
|
|
23397
24722
|
configRuleId?: string;
|
|
23398
24723
|
/**
|
|
23399
24724
|
* @remarks
|
|
23400
|
-
* The maximum number of entries to return
|
|
24725
|
+
* The maximum number of entries to return in a request. Valid values: 1 to 100.
|
|
23401
24726
|
*
|
|
23402
24727
|
* @example
|
|
23403
24728
|
* 10
|
|
@@ -23958,6 +25283,7 @@ export declare class ListIntegratedServiceResponse extends $dara.Model {
|
|
|
23958
25283
|
});
|
|
23959
25284
|
}
|
|
23960
25285
|
export declare class ListManagedRulesRequest extends $dara.Model {
|
|
25286
|
+
filterType?: string;
|
|
23961
25287
|
/**
|
|
23962
25288
|
* @remarks
|
|
23963
25289
|
* The keyword of the managed rule.
|
|
@@ -26211,6 +27537,13 @@ export declare class UpdateAggregateCompliancePackRequest extends $dara.Model {
|
|
|
26211
27537
|
* 1
|
|
26212
27538
|
*/
|
|
26213
27539
|
riskLevel?: number;
|
|
27540
|
+
/**
|
|
27541
|
+
* @remarks
|
|
27542
|
+
* The tags of the resource.
|
|
27543
|
+
*
|
|
27544
|
+
* You can add up to 20 tags to a resource.
|
|
27545
|
+
*/
|
|
27546
|
+
tag?: UpdateAggregateCompliancePackRequestTag[];
|
|
26214
27547
|
/**
|
|
26215
27548
|
* @remarks
|
|
26216
27549
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -26368,6 +27701,13 @@ export declare class UpdateAggregateCompliancePackShrinkRequest extends $dara.Mo
|
|
|
26368
27701
|
* 1
|
|
26369
27702
|
*/
|
|
26370
27703
|
riskLevel?: number;
|
|
27704
|
+
/**
|
|
27705
|
+
* @remarks
|
|
27706
|
+
* The tags of the resource.
|
|
27707
|
+
*
|
|
27708
|
+
* You can add up to 20 tags to a resource.
|
|
27709
|
+
*/
|
|
27710
|
+
tagShrink?: string;
|
|
26371
27711
|
/**
|
|
26372
27712
|
* @remarks
|
|
26373
27713
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -26840,13 +28180,13 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
26840
28180
|
};
|
|
26841
28181
|
/**
|
|
26842
28182
|
* @remarks
|
|
26843
|
-
* The
|
|
28183
|
+
* The interval at which the rule is triggered. Valid values:
|
|
26844
28184
|
*
|
|
26845
|
-
* * One_Hour
|
|
26846
|
-
* * Three_Hours
|
|
26847
|
-
* * Six_Hours
|
|
26848
|
-
* * Twelve_Hours
|
|
26849
|
-
* * TwentyFour_Hours
|
|
28185
|
+
* * One_Hour
|
|
28186
|
+
* * Three_Hours
|
|
28187
|
+
* * Six_Hours
|
|
28188
|
+
* * Twelve_Hours
|
|
28189
|
+
* * TwentyFour_Hours
|
|
26850
28190
|
*
|
|
26851
28191
|
* > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
|
|
26852
28192
|
*
|
|
@@ -26882,6 +28222,17 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
26882
28222
|
* lb-5cmbowstbkss9ta03****
|
|
26883
28223
|
*/
|
|
26884
28224
|
resourceIdsScope?: string;
|
|
28225
|
+
/**
|
|
28226
|
+
* @remarks
|
|
28227
|
+
* The names of the resource groups to which the rule applies.
|
|
28228
|
+
*
|
|
28229
|
+
* @example
|
|
28230
|
+
* i-xxx
|
|
28231
|
+
*
|
|
28232
|
+
* **if can be null:**
|
|
28233
|
+
* true
|
|
28234
|
+
*/
|
|
28235
|
+
resourceNameScope?: string;
|
|
26885
28236
|
/**
|
|
26886
28237
|
* @remarks
|
|
26887
28238
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -26892,11 +28243,11 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
26892
28243
|
resourceTypesScope?: string[];
|
|
26893
28244
|
/**
|
|
26894
28245
|
* @remarks
|
|
26895
|
-
* The risk level of the resources that
|
|
28246
|
+
* The risk level of the resources that do not comply with the rule. Valid values:
|
|
26896
28247
|
*
|
|
26897
|
-
* * 1: high
|
|
26898
|
-
* * 2: medium
|
|
26899
|
-
* * 3: low
|
|
28248
|
+
* * 1: high
|
|
28249
|
+
* * 2: medium
|
|
28250
|
+
* * 3: low
|
|
26900
28251
|
*
|
|
26901
28252
|
* @example
|
|
26902
28253
|
* 3
|
|
@@ -26904,6 +28255,15 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
26904
28255
|
riskLevel?: number;
|
|
26905
28256
|
/**
|
|
26906
28257
|
* @remarks
|
|
28258
|
+
* The tags of the resource.
|
|
28259
|
+
*
|
|
28260
|
+
* You can add up to 20 tags to a resource.
|
|
28261
|
+
*/
|
|
28262
|
+
tag?: UpdateAggregateConfigRuleRequestTag[];
|
|
28263
|
+
/**
|
|
28264
|
+
* @remarks
|
|
28265
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28266
|
+
*
|
|
26907
28267
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
26908
28268
|
*
|
|
26909
28269
|
* * AND
|
|
@@ -26911,26 +28271,36 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
26911
28271
|
*
|
|
26912
28272
|
* @example
|
|
26913
28273
|
* AND
|
|
28274
|
+
*
|
|
28275
|
+
* @deprecated
|
|
26914
28276
|
*/
|
|
26915
28277
|
tagKeyLogicScope?: string;
|
|
26916
28278
|
/**
|
|
26917
28279
|
* @remarks
|
|
28280
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28281
|
+
*
|
|
26918
28282
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
26919
28283
|
*
|
|
26920
28284
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
26921
28285
|
*
|
|
26922
28286
|
* @example
|
|
26923
28287
|
* ECS
|
|
28288
|
+
*
|
|
28289
|
+
* @deprecated
|
|
26924
28290
|
*/
|
|
26925
28291
|
tagKeyScope?: string;
|
|
26926
28292
|
/**
|
|
26927
28293
|
* @remarks
|
|
28294
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28295
|
+
*
|
|
26928
28296
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
26929
28297
|
*
|
|
26930
28298
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
26931
28299
|
*
|
|
26932
28300
|
* @example
|
|
26933
28301
|
* test
|
|
28302
|
+
*
|
|
28303
|
+
* @deprecated
|
|
26934
28304
|
*/
|
|
26935
28305
|
tagValueScope?: string;
|
|
26936
28306
|
/**
|
|
@@ -27100,13 +28470,13 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27100
28470
|
inputParametersShrink?: string;
|
|
27101
28471
|
/**
|
|
27102
28472
|
* @remarks
|
|
27103
|
-
* The
|
|
28473
|
+
* The interval at which the rule is triggered. Valid values:
|
|
27104
28474
|
*
|
|
27105
|
-
* * One_Hour
|
|
27106
|
-
* * Three_Hours
|
|
27107
|
-
* * Six_Hours
|
|
27108
|
-
* * Twelve_Hours
|
|
27109
|
-
* * TwentyFour_Hours
|
|
28475
|
+
* * One_Hour
|
|
28476
|
+
* * Three_Hours
|
|
28477
|
+
* * Six_Hours
|
|
28478
|
+
* * Twelve_Hours
|
|
28479
|
+
* * TwentyFour_Hours
|
|
27110
28480
|
*
|
|
27111
28481
|
* > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
|
|
27112
28482
|
*
|
|
@@ -27142,6 +28512,17 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27142
28512
|
* lb-5cmbowstbkss9ta03****
|
|
27143
28513
|
*/
|
|
27144
28514
|
resourceIdsScope?: string;
|
|
28515
|
+
/**
|
|
28516
|
+
* @remarks
|
|
28517
|
+
* The names of the resource groups to which the rule applies.
|
|
28518
|
+
*
|
|
28519
|
+
* @example
|
|
28520
|
+
* i-xxx
|
|
28521
|
+
*
|
|
28522
|
+
* **if can be null:**
|
|
28523
|
+
* true
|
|
28524
|
+
*/
|
|
28525
|
+
resourceNameScope?: string;
|
|
27145
28526
|
/**
|
|
27146
28527
|
* @remarks
|
|
27147
28528
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -27152,11 +28533,11 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27152
28533
|
resourceTypesScopeShrink?: string;
|
|
27153
28534
|
/**
|
|
27154
28535
|
* @remarks
|
|
27155
|
-
* The risk level of the resources that
|
|
28536
|
+
* The risk level of the resources that do not comply with the rule. Valid values:
|
|
27156
28537
|
*
|
|
27157
|
-
* * 1: high
|
|
27158
|
-
* * 2: medium
|
|
27159
|
-
* * 3: low
|
|
28538
|
+
* * 1: high
|
|
28539
|
+
* * 2: medium
|
|
28540
|
+
* * 3: low
|
|
27160
28541
|
*
|
|
27161
28542
|
* @example
|
|
27162
28543
|
* 3
|
|
@@ -27164,6 +28545,15 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27164
28545
|
riskLevel?: number;
|
|
27165
28546
|
/**
|
|
27166
28547
|
* @remarks
|
|
28548
|
+
* The tags of the resource.
|
|
28549
|
+
*
|
|
28550
|
+
* You can add up to 20 tags to a resource.
|
|
28551
|
+
*/
|
|
28552
|
+
tagShrink?: string;
|
|
28553
|
+
/**
|
|
28554
|
+
* @remarks
|
|
28555
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28556
|
+
*
|
|
27167
28557
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
27168
28558
|
*
|
|
27169
28559
|
* * AND
|
|
@@ -27171,26 +28561,36 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27171
28561
|
*
|
|
27172
28562
|
* @example
|
|
27173
28563
|
* AND
|
|
28564
|
+
*
|
|
28565
|
+
* @deprecated
|
|
27174
28566
|
*/
|
|
27175
28567
|
tagKeyLogicScope?: string;
|
|
27176
28568
|
/**
|
|
27177
28569
|
* @remarks
|
|
28570
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28571
|
+
*
|
|
27178
28572
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
27179
28573
|
*
|
|
27180
28574
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27181
28575
|
*
|
|
27182
28576
|
* @example
|
|
27183
28577
|
* ECS
|
|
28578
|
+
*
|
|
28579
|
+
* @deprecated
|
|
27184
28580
|
*/
|
|
27185
28581
|
tagKeyScope?: string;
|
|
27186
28582
|
/**
|
|
27187
28583
|
* @remarks
|
|
28584
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28585
|
+
*
|
|
27188
28586
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
27189
28587
|
*
|
|
27190
28588
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27191
28589
|
*
|
|
27192
28590
|
* @example
|
|
27193
28591
|
* test
|
|
28592
|
+
*
|
|
28593
|
+
* @deprecated
|
|
27194
28594
|
*/
|
|
27195
28595
|
tagValueScope?: string;
|
|
27196
28596
|
/**
|
|
@@ -27440,6 +28840,14 @@ export declare class UpdateAggregatorRequest extends $dara.Model {
|
|
|
27440
28840
|
* Test_Aggregator_Description
|
|
27441
28841
|
*/
|
|
27442
28842
|
description?: string;
|
|
28843
|
+
folderId?: string;
|
|
28844
|
+
/**
|
|
28845
|
+
* @remarks
|
|
28846
|
+
* The tags of the resource.
|
|
28847
|
+
*
|
|
28848
|
+
* You can add up to 20 tags to a resource.
|
|
28849
|
+
*/
|
|
28850
|
+
tag?: UpdateAggregatorRequestTag[];
|
|
27443
28851
|
static names(): {
|
|
27444
28852
|
[key: string]: string;
|
|
27445
28853
|
};
|
|
@@ -27502,6 +28910,14 @@ export declare class UpdateAggregatorShrinkRequest extends $dara.Model {
|
|
|
27502
28910
|
* Test_Aggregator_Description
|
|
27503
28911
|
*/
|
|
27504
28912
|
description?: string;
|
|
28913
|
+
folderId?: string;
|
|
28914
|
+
/**
|
|
28915
|
+
* @remarks
|
|
28916
|
+
* The tags of the resource.
|
|
28917
|
+
*
|
|
28918
|
+
* You can add up to 20 tags to a resource.
|
|
28919
|
+
*/
|
|
28920
|
+
tagShrink?: string;
|
|
27505
28921
|
static names(): {
|
|
27506
28922
|
[key: string]: string;
|
|
27507
28923
|
};
|
|
@@ -27669,6 +29085,13 @@ export declare class UpdateCompliancePackRequest extends $dara.Model {
|
|
|
27669
29085
|
* 1
|
|
27670
29086
|
*/
|
|
27671
29087
|
riskLevel?: number;
|
|
29088
|
+
/**
|
|
29089
|
+
* @remarks
|
|
29090
|
+
* The tags of the resource.
|
|
29091
|
+
*
|
|
29092
|
+
* You can add up to 20 tags to a resource.
|
|
29093
|
+
*/
|
|
29094
|
+
tag?: UpdateCompliancePackRequestTag[];
|
|
27672
29095
|
/**
|
|
27673
29096
|
* @remarks
|
|
27674
29097
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -27814,6 +29237,13 @@ export declare class UpdateCompliancePackShrinkRequest extends $dara.Model {
|
|
|
27814
29237
|
* 1
|
|
27815
29238
|
*/
|
|
27816
29239
|
riskLevel?: number;
|
|
29240
|
+
/**
|
|
29241
|
+
* @remarks
|
|
29242
|
+
* The tags of the resource.
|
|
29243
|
+
*
|
|
29244
|
+
* You can add up to 20 tags to a resource.
|
|
29245
|
+
*/
|
|
29246
|
+
tagShrink?: string;
|
|
27817
29247
|
/**
|
|
27818
29248
|
* @remarks
|
|
27819
29249
|
* The tag key of the resource that you want to evaluate by using the compliance package.
|
|
@@ -28269,6 +29699,11 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
28269
29699
|
* lb-5cmbowstbkss9ta03****
|
|
28270
29700
|
*/
|
|
28271
29701
|
resourceIdsScope?: string;
|
|
29702
|
+
/**
|
|
29703
|
+
* **if can be null:**
|
|
29704
|
+
* true
|
|
29705
|
+
*/
|
|
29706
|
+
resourceNameScope?: string;
|
|
28272
29707
|
/**
|
|
28273
29708
|
* @remarks
|
|
28274
29709
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -28305,6 +29740,8 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
28305
29740
|
*
|
|
28306
29741
|
* @example
|
|
28307
29742
|
* AND
|
|
29743
|
+
*
|
|
29744
|
+
* @deprecated
|
|
28308
29745
|
*/
|
|
28309
29746
|
tagKeyLogicScope?: string;
|
|
28310
29747
|
/**
|
|
@@ -28315,6 +29752,8 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
28315
29752
|
*
|
|
28316
29753
|
* @example
|
|
28317
29754
|
* ECS
|
|
29755
|
+
*
|
|
29756
|
+
* @deprecated
|
|
28318
29757
|
*/
|
|
28319
29758
|
tagKeyScope?: string;
|
|
28320
29759
|
/**
|
|
@@ -28325,6 +29764,8 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
28325
29764
|
*
|
|
28326
29765
|
* @example
|
|
28327
29766
|
* test
|
|
29767
|
+
*
|
|
29768
|
+
* @deprecated
|
|
28328
29769
|
*/
|
|
28329
29770
|
tagValueScope?: string;
|
|
28330
29771
|
/**
|
|
@@ -28489,6 +29930,11 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
28489
29930
|
* lb-5cmbowstbkss9ta03****
|
|
28490
29931
|
*/
|
|
28491
29932
|
resourceIdsScope?: string;
|
|
29933
|
+
/**
|
|
29934
|
+
* **if can be null:**
|
|
29935
|
+
* true
|
|
29936
|
+
*/
|
|
29937
|
+
resourceNameScope?: string;
|
|
28492
29938
|
/**
|
|
28493
29939
|
* @remarks
|
|
28494
29940
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -28525,6 +29971,8 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
28525
29971
|
*
|
|
28526
29972
|
* @example
|
|
28527
29973
|
* AND
|
|
29974
|
+
*
|
|
29975
|
+
* @deprecated
|
|
28528
29976
|
*/
|
|
28529
29977
|
tagKeyLogicScope?: string;
|
|
28530
29978
|
/**
|
|
@@ -28535,6 +29983,8 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
28535
29983
|
*
|
|
28536
29984
|
* @example
|
|
28537
29985
|
* ECS
|
|
29986
|
+
*
|
|
29987
|
+
* @deprecated
|
|
28538
29988
|
*/
|
|
28539
29989
|
tagKeyScope?: string;
|
|
28540
29990
|
/**
|
|
@@ -28545,6 +29995,8 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
28545
29995
|
*
|
|
28546
29996
|
* @example
|
|
28547
29997
|
* test
|
|
29998
|
+
*
|
|
29999
|
+
* @deprecated
|
|
28548
30000
|
*/
|
|
28549
30001
|
tagValueScope?: string;
|
|
28550
30002
|
/**
|
|
@@ -30030,11 +31482,11 @@ export default class Client extends OpenApi {
|
|
|
30030
31482
|
* @remarks
|
|
30031
31483
|
* The topic provides an example on how to query the details of a compliance package whose ID is `cp-fdc8626622af00f9****` in an account group whose ID is `ca-f632626622af0079****`.
|
|
30032
31484
|
*
|
|
30033
|
-
* @param
|
|
31485
|
+
* @param tmpReq - GetAggregateCompliancePackRequest
|
|
30034
31486
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30035
31487
|
* @returns GetAggregateCompliancePackResponse
|
|
30036
31488
|
*/
|
|
30037
|
-
getAggregateCompliancePackWithOptions(
|
|
31489
|
+
getAggregateCompliancePackWithOptions(tmpReq: GetAggregateCompliancePackRequest, runtime: $dara.RuntimeOptions): Promise<GetAggregateCompliancePackResponse>;
|
|
30038
31490
|
/**
|
|
30039
31491
|
* Queries the details of a compliance package in an account group.
|
|
30040
31492
|
*
|
|
@@ -30400,11 +31852,11 @@ export default class Client extends OpenApi {
|
|
|
30400
31852
|
* @remarks
|
|
30401
31853
|
* The sample request in this topic shows you how to query the details of the `ca-88ea626622af0055****` account group. The return result shows that the account group is named `Test_Group`, its description is `Test account group`, and it is of the `CUSTOM` type. The account group is in the `1` state, which indicates that it is created.
|
|
30402
31854
|
*
|
|
30403
|
-
* @param
|
|
31855
|
+
* @param tmpReq - GetAggregatorRequest
|
|
30404
31856
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30405
31857
|
* @returns GetAggregatorResponse
|
|
30406
31858
|
*/
|
|
30407
|
-
getAggregatorWithOptions(
|
|
31859
|
+
getAggregatorWithOptions(tmpReq: GetAggregatorRequest, runtime: $dara.RuntimeOptions): Promise<GetAggregatorResponse>;
|
|
30408
31860
|
/**
|
|
30409
31861
|
* Queries the details of an account group. You can query the name, creation time, member, and type of an account group.
|
|
30410
31862
|
*
|
|
@@ -30421,11 +31873,11 @@ export default class Client extends OpenApi {
|
|
|
30421
31873
|
* @remarks
|
|
30422
31874
|
* This topic provides an example on how to query the details of a compliance package whose ID is `cp-fdc8626622af00f9****`. The returned result shows that the name of the compliance package is `ClassifiedProtectionPreCheck`, the compliance package is in the `ACTIVE` state, and the risk level of the rules in the compliance package is `1`, which indicates high risk level.
|
|
30423
31875
|
*
|
|
30424
|
-
* @param
|
|
31876
|
+
* @param tmpReq - GetCompliancePackRequest
|
|
30425
31877
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30426
31878
|
* @returns GetCompliancePackResponse
|
|
30427
31879
|
*/
|
|
30428
|
-
getCompliancePackWithOptions(
|
|
31880
|
+
getCompliancePackWithOptions(tmpReq: GetCompliancePackRequest, runtime: $dara.RuntimeOptions): Promise<GetCompliancePackResponse>;
|
|
30429
31881
|
/**
|
|
30430
31882
|
* Queries the details of a compliance package.
|
|
30431
31883
|
*
|
|
@@ -30930,11 +32382,11 @@ export default class Client extends OpenApi {
|
|
|
30930
32382
|
* @remarks
|
|
30931
32383
|
* In this topic, the `ca-f632626622af0079****` account group is used as an example. The return result shows one compliance package whose ID is `cp-fdc8626622af00f9****`.
|
|
30932
32384
|
*
|
|
30933
|
-
* @param
|
|
32385
|
+
* @param tmpReq - ListAggregateCompliancePacksRequest
|
|
30934
32386
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30935
32387
|
* @returns ListAggregateCompliancePacksResponse
|
|
30936
32388
|
*/
|
|
30937
|
-
listAggregateCompliancePacksWithOptions(
|
|
32389
|
+
listAggregateCompliancePacksWithOptions(tmpReq: ListAggregateCompliancePacksRequest, runtime: $dara.RuntimeOptions): Promise<ListAggregateCompliancePacksResponse>;
|
|
30938
32390
|
/**
|
|
30939
32391
|
* Queries a list of compliance packages in an account group.
|
|
30940
32392
|
*
|
|
@@ -31008,11 +32460,11 @@ export default class Client extends OpenApi {
|
|
|
31008
32460
|
* @remarks
|
|
31009
32461
|
* This topic provides an example on how to query the rules in an account group whose ID is `ca-f632626622af0079****`. The returned result shows a total of one rule and two evaluated resources. The resources are both evaluated as `COMPLIANT`.
|
|
31010
32462
|
*
|
|
31011
|
-
* @param
|
|
32463
|
+
* @param tmpReq - ListAggregateConfigRulesRequest
|
|
31012
32464
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
31013
32465
|
* @returns ListAggregateConfigRulesResponse
|
|
31014
32466
|
*/
|
|
31015
|
-
listAggregateConfigRulesWithOptions(
|
|
32467
|
+
listAggregateConfigRulesWithOptions(tmpReq: ListAggregateConfigRulesRequest, runtime: $dara.RuntimeOptions): Promise<ListAggregateConfigRulesResponse>;
|
|
31016
32468
|
/**
|
|
31017
32469
|
* Queries a list of rules in an account group.
|
|
31018
32470
|
*
|
|
@@ -31163,11 +32615,11 @@ export default class Client extends OpenApi {
|
|
|
31163
32615
|
* @remarks
|
|
31164
32616
|
* The sample request in this topic shows you how to query account groups. A maximum of 10 entries can be returned for the request. As shown in the responses, the account group returned is named as `Test_Group`, its description is `Test account group`, and it is of the `CUSTOM` type, which indicates a custom account group. The account group contains two member accounts.
|
|
31165
32617
|
*
|
|
31166
|
-
* @param
|
|
32618
|
+
* @param tmpReq - ListAggregatorsRequest
|
|
31167
32619
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
31168
32620
|
* @returns ListAggregatorsResponse
|
|
31169
32621
|
*/
|
|
31170
|
-
listAggregatorsWithOptions(
|
|
32622
|
+
listAggregatorsWithOptions(tmpReq: ListAggregatorsRequest, runtime: $dara.RuntimeOptions): Promise<ListAggregatorsResponse>;
|
|
31171
32623
|
/**
|
|
31172
32624
|
* Queries all account groups within the current management account or delegated administrator account.
|
|
31173
32625
|
*
|
|
@@ -31205,11 +32657,11 @@ export default class Client extends OpenApi {
|
|
|
31205
32657
|
* @remarks
|
|
31206
32658
|
* This topic provides an example of how to query compliance packages. The return result shows the details of the `cp-fdc8626622af00f9****` compliance package.
|
|
31207
32659
|
*
|
|
31208
|
-
* @param
|
|
32660
|
+
* @param tmpReq - ListCompliancePacksRequest
|
|
31209
32661
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
31210
32662
|
* @returns ListCompliancePacksResponse
|
|
31211
32663
|
*/
|
|
31212
|
-
listCompliancePacksWithOptions(
|
|
32664
|
+
listCompliancePacksWithOptions(tmpReq: ListCompliancePacksRequest, runtime: $dara.RuntimeOptions): Promise<ListCompliancePacksResponse>;
|
|
31213
32665
|
/**
|
|
31214
32666
|
* Queries a list of compliance packages.
|
|
31215
32667
|
*
|