@alicloud/config20200907 3.0.11 → 3.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1043 -119
- package/dist/client.js +199 -834
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1436 -1141
package/dist/client.d.ts
CHANGED
|
@@ -362,7 +362,25 @@ export declare class CreateAggregateCompliancePackRequestExcludeTagsScope extend
|
|
|
362
362
|
});
|
|
363
363
|
}
|
|
364
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
|
+
*/
|
|
365
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
|
+
*/
|
|
366
384
|
value?: string;
|
|
367
385
|
static names(): {
|
|
368
386
|
[key: string]: string;
|
|
@@ -488,7 +506,29 @@ export declare class CreateAggregateConfigRuleRequestExcludeTagsScope extends $d
|
|
|
488
506
|
});
|
|
489
507
|
}
|
|
490
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
|
+
*/
|
|
491
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
|
+
*/
|
|
492
532
|
value?: string;
|
|
493
533
|
static names(): {
|
|
494
534
|
[key: string]: string;
|
|
@@ -622,7 +662,27 @@ export declare class CreateAggregatorRequestAggregatorAccounts extends $dara.Mod
|
|
|
622
662
|
});
|
|
623
663
|
}
|
|
624
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
|
+
*/
|
|
625
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
|
+
*/
|
|
626
686
|
value?: string;
|
|
627
687
|
static names(): {
|
|
628
688
|
[key: string]: string;
|
|
@@ -761,7 +821,29 @@ export declare class CreateCompliancePackRequestExcludeTagsScope extends $dara.M
|
|
|
761
821
|
});
|
|
762
822
|
}
|
|
763
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
|
+
*/
|
|
764
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
|
+
*/
|
|
765
847
|
value?: string;
|
|
766
848
|
static names(): {
|
|
767
849
|
[key: string]: string;
|
|
@@ -2053,7 +2135,27 @@ export declare class GetAggregateAdvancedSearchFileResponseBodyResourceSearch ex
|
|
|
2053
2135
|
});
|
|
2054
2136
|
}
|
|
2055
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
|
+
*/
|
|
2056
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
|
+
*/
|
|
2057
2159
|
value?: string;
|
|
2058
2160
|
static names(): {
|
|
2059
2161
|
[key: string]: string;
|
|
@@ -2317,7 +2419,21 @@ export declare class GetAggregateCompliancePackResponseBodyCompliancePackScope e
|
|
|
2317
2419
|
});
|
|
2318
2420
|
}
|
|
2319
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
|
+
*/
|
|
2320
2429
|
tagKey?: string;
|
|
2430
|
+
/**
|
|
2431
|
+
* @remarks
|
|
2432
|
+
* The tag values of the resource.
|
|
2433
|
+
*
|
|
2434
|
+
* @example
|
|
2435
|
+
* value-1
|
|
2436
|
+
*/
|
|
2321
2437
|
tagValue?: string;
|
|
2322
2438
|
static names(): {
|
|
2323
2439
|
[key: string]: string;
|
|
@@ -2420,6 +2536,10 @@ export declare class GetAggregateCompliancePackResponseBodyCompliancePack extend
|
|
|
2420
2536
|
* ACTIVE
|
|
2421
2537
|
*/
|
|
2422
2538
|
status?: string;
|
|
2539
|
+
/**
|
|
2540
|
+
* @remarks
|
|
2541
|
+
* The tags.
|
|
2542
|
+
*/
|
|
2423
2543
|
tags?: GetAggregateCompliancePackResponseBodyCompliancePackTags[];
|
|
2424
2544
|
/**
|
|
2425
2545
|
* @remarks
|
|
@@ -3536,6 +3656,17 @@ export declare class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.
|
|
|
3536
3656
|
* eip-8vbf3x310fn56ijfd****
|
|
3537
3657
|
*/
|
|
3538
3658
|
resourceIdsScope?: string;
|
|
3659
|
+
/**
|
|
3660
|
+
* @remarks
|
|
3661
|
+
* The names of the resource to which the rule applies.
|
|
3662
|
+
*
|
|
3663
|
+
* @example
|
|
3664
|
+
* i-xxx
|
|
3665
|
+
*
|
|
3666
|
+
* **if can be null:**
|
|
3667
|
+
* true
|
|
3668
|
+
*/
|
|
3669
|
+
resourceNameScope?: string;
|
|
3539
3670
|
/**
|
|
3540
3671
|
* @remarks
|
|
3541
3672
|
* The type of the resource evaluated by the rule.
|
|
@@ -3563,10 +3694,15 @@ export declare class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.
|
|
|
3563
3694
|
source?: GetAggregateConfigRuleResponseBodyConfigRuleSource;
|
|
3564
3695
|
/**
|
|
3565
3696
|
* @remarks
|
|
3566
|
-
*
|
|
3697
|
+
* When retrieving details of rules created using the parameter `TagsScope`, this field will not be returned.
|
|
3567
3698
|
*
|
|
3568
|
-
*
|
|
3569
|
-
*
|
|
3699
|
+
* To retrieve rules created using the deprecated field `TagKeyScope` (not recommended): for example, when the parameter `TagKeyScope` has a value of ECS,OSS, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels ECS and OSS.
|
|
3700
|
+
*
|
|
3701
|
+
* Values:
|
|
3702
|
+
*
|
|
3703
|
+
* - AND: And.
|
|
3704
|
+
*
|
|
3705
|
+
* - OR: Or.
|
|
3570
3706
|
*
|
|
3571
3707
|
* @example
|
|
3572
3708
|
* AND
|
|
@@ -3574,18 +3710,26 @@ export declare class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.
|
|
|
3574
3710
|
tagKeyLogicScope?: string;
|
|
3575
3711
|
/**
|
|
3576
3712
|
* @remarks
|
|
3713
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3714
|
+
*
|
|
3577
3715
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
3578
3716
|
*
|
|
3579
3717
|
* @example
|
|
3580
3718
|
* RAM
|
|
3719
|
+
*
|
|
3720
|
+
* @deprecated
|
|
3581
3721
|
*/
|
|
3582
3722
|
tagKeyScope?: string;
|
|
3583
3723
|
/**
|
|
3584
3724
|
* @remarks
|
|
3725
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3726
|
+
*
|
|
3585
3727
|
* The tag value used to filter resources. The rule applies only to the resources with the specified tag value.
|
|
3586
3728
|
*
|
|
3587
3729
|
* @example
|
|
3588
3730
|
* MFA
|
|
3731
|
+
*
|
|
3732
|
+
* @deprecated
|
|
3589
3733
|
*/
|
|
3590
3734
|
tagValueScope?: string;
|
|
3591
3735
|
/**
|
|
@@ -3768,8 +3912,8 @@ export declare class GetAggregateConfigRulesReportResponseBodyConfigRulesReport
|
|
|
3768
3912
|
* @remarks
|
|
3769
3913
|
* The status of the compliance evaluation report. Valid values:
|
|
3770
3914
|
*
|
|
3771
|
-
* * NONE: The compliance evaluation report
|
|
3772
|
-
* * CREATING: The compliance evaluation report
|
|
3915
|
+
* * NONE: The compliance evaluation report is not generated.
|
|
3916
|
+
* * CREATING: The compliance evaluation report is being generated.
|
|
3773
3917
|
* * COMPLETE: The compliance evaluation report was generated.
|
|
3774
3918
|
*
|
|
3775
3919
|
* @example
|
|
@@ -3778,7 +3922,7 @@ export declare class GetAggregateConfigRulesReportResponseBodyConfigRulesReport
|
|
|
3778
3922
|
reportStatus?: string;
|
|
3779
3923
|
/**
|
|
3780
3924
|
* @remarks
|
|
3781
|
-
* The URL
|
|
3925
|
+
* The URL used to download the compliance evaluation report.
|
|
3782
3926
|
*/
|
|
3783
3927
|
reportUrl?: string;
|
|
3784
3928
|
static names(): {
|
|
@@ -4588,7 +4732,29 @@ export declare class GetAggregateResourceInventoryResponseBodyResourceInventory
|
|
|
4588
4732
|
});
|
|
4589
4733
|
}
|
|
4590
4734
|
export declare class GetAggregatorRequestTag extends $dara.Model {
|
|
4735
|
+
/**
|
|
4736
|
+
* @remarks
|
|
4737
|
+
* The tag key.
|
|
4738
|
+
*
|
|
4739
|
+
* 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://`.
|
|
4740
|
+
*
|
|
4741
|
+
* You can specify at most 20 tag keys.
|
|
4742
|
+
*
|
|
4743
|
+
* @example
|
|
4744
|
+
* key-1
|
|
4745
|
+
*/
|
|
4591
4746
|
key?: string;
|
|
4747
|
+
/**
|
|
4748
|
+
* @remarks
|
|
4749
|
+
* The tag values.
|
|
4750
|
+
*
|
|
4751
|
+
* 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://`.
|
|
4752
|
+
*
|
|
4753
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
4754
|
+
*
|
|
4755
|
+
* @example
|
|
4756
|
+
* value-1
|
|
4757
|
+
*/
|
|
4592
4758
|
value?: string;
|
|
4593
4759
|
static names(): {
|
|
4594
4760
|
[key: string]: string;
|
|
@@ -4654,7 +4820,21 @@ export declare class GetAggregatorResponseBodyAggregatorAggregatorAccounts exten
|
|
|
4654
4820
|
});
|
|
4655
4821
|
}
|
|
4656
4822
|
export declare class GetAggregatorResponseBodyAggregatorTags extends $dara.Model {
|
|
4823
|
+
/**
|
|
4824
|
+
* @remarks
|
|
4825
|
+
* The tag key.
|
|
4826
|
+
*
|
|
4827
|
+
* @example
|
|
4828
|
+
* key-1
|
|
4829
|
+
*/
|
|
4657
4830
|
tagKey?: string;
|
|
4831
|
+
/**
|
|
4832
|
+
* @remarks
|
|
4833
|
+
* The tag value.
|
|
4834
|
+
*
|
|
4835
|
+
* @example
|
|
4836
|
+
* value-1
|
|
4837
|
+
*/
|
|
4658
4838
|
tagValue?: string;
|
|
4659
4839
|
static names(): {
|
|
4660
4840
|
[key: string]: string;
|
|
@@ -4754,6 +4934,10 @@ export declare class GetAggregatorResponseBodyAggregator extends $dara.Model {
|
|
|
4754
4934
|
* fd-brHdgv****
|
|
4755
4935
|
*/
|
|
4756
4936
|
folderId?: string;
|
|
4937
|
+
/**
|
|
4938
|
+
* @remarks
|
|
4939
|
+
* tags
|
|
4940
|
+
*/
|
|
4757
4941
|
tags?: GetAggregatorResponseBodyAggregatorTags[];
|
|
4758
4942
|
static names(): {
|
|
4759
4943
|
[key: string]: string;
|
|
@@ -4767,7 +4951,25 @@ export declare class GetAggregatorResponseBodyAggregator extends $dara.Model {
|
|
|
4767
4951
|
});
|
|
4768
4952
|
}
|
|
4769
4953
|
export declare class GetCompliancePackRequestTag extends $dara.Model {
|
|
4954
|
+
/**
|
|
4955
|
+
* @remarks
|
|
4956
|
+
* The tag key.
|
|
4957
|
+
*
|
|
4958
|
+
* 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://`.
|
|
4959
|
+
*
|
|
4960
|
+
* You can specify at most 20 tag keys.
|
|
4961
|
+
*
|
|
4962
|
+
* @example
|
|
4963
|
+
* key-1
|
|
4964
|
+
*/
|
|
4770
4965
|
key?: string;
|
|
4966
|
+
/**
|
|
4967
|
+
* @remarks
|
|
4968
|
+
* The tag value. The tag value can be up to 256 characters in length and cannot contain `http://` or `https://`.
|
|
4969
|
+
*
|
|
4970
|
+
* @example
|
|
4971
|
+
* value-1
|
|
4972
|
+
*/
|
|
4771
4973
|
value?: string;
|
|
4772
4974
|
static names(): {
|
|
4773
4975
|
[key: string]: string;
|
|
@@ -4891,7 +5093,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackConfigRules exte
|
|
|
4891
5093
|
export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope extends $dara.Model {
|
|
4892
5094
|
/**
|
|
4893
5095
|
* @remarks
|
|
4894
|
-
* The tag
|
|
5096
|
+
* The key of the tag.
|
|
4895
5097
|
*
|
|
4896
5098
|
* @example
|
|
4897
5099
|
* key-2
|
|
@@ -4899,7 +5101,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTags
|
|
|
4899
5101
|
tagKey?: string;
|
|
4900
5102
|
/**
|
|
4901
5103
|
* @remarks
|
|
4902
|
-
* The tag
|
|
5104
|
+
* The value of the tag.
|
|
4903
5105
|
*
|
|
4904
5106
|
* @example
|
|
4905
5107
|
* value-2
|
|
@@ -4919,7 +5121,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTags
|
|
|
4919
5121
|
export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $dara.Model {
|
|
4920
5122
|
/**
|
|
4921
5123
|
* @remarks
|
|
4922
|
-
* The tag
|
|
5124
|
+
* The key of the tag.
|
|
4923
5125
|
*
|
|
4924
5126
|
* @example
|
|
4925
5127
|
* key-1
|
|
@@ -4927,7 +5129,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope e
|
|
|
4927
5129
|
tagKey?: string;
|
|
4928
5130
|
/**
|
|
4929
5131
|
* @remarks
|
|
4930
|
-
* The tag
|
|
5132
|
+
* The value of the tag.
|
|
4931
5133
|
*
|
|
4932
5134
|
* @example
|
|
4933
5135
|
* value-1
|
|
@@ -4947,7 +5149,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope e
|
|
|
4947
5149
|
export declare class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Model {
|
|
4948
5150
|
/**
|
|
4949
5151
|
* @remarks
|
|
4950
|
-
*
|
|
5152
|
+
* The IDs of regions that are excluded. Separate multiple region IDs with commas (,).
|
|
4951
5153
|
*
|
|
4952
5154
|
* @example
|
|
4953
5155
|
* cn-hangzhou
|
|
@@ -4955,7 +5157,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4955
5157
|
excludeRegionIdsScope?: string;
|
|
4956
5158
|
/**
|
|
4957
5159
|
* @remarks
|
|
4958
|
-
*
|
|
5160
|
+
* 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 (,).
|
|
4959
5161
|
*
|
|
4960
5162
|
* @example
|
|
4961
5163
|
* rg-aekzc7r7rhx****
|
|
@@ -4971,7 +5173,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4971
5173
|
excludeResourceIdsScope?: string;
|
|
4972
5174
|
/**
|
|
4973
5175
|
* @remarks
|
|
4974
|
-
*
|
|
5176
|
+
* The scope of the tag that is excluded.
|
|
4975
5177
|
*
|
|
4976
5178
|
* This parameter is required.
|
|
4977
5179
|
*/
|
|
@@ -4994,7 +5196,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4994
5196
|
resourceGroupIdsScope?: string;
|
|
4995
5197
|
/**
|
|
4996
5198
|
* @remarks
|
|
4997
|
-
*
|
|
5199
|
+
* The IDs of the resources to which the rule applies. Separate multiple resource IDs with commas (,).
|
|
4998
5200
|
*
|
|
4999
5201
|
* @example
|
|
5000
5202
|
* eip-8vbf3x310fn56ijfd****
|
|
@@ -5018,7 +5220,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
5018
5220
|
tagValueScope?: string;
|
|
5019
5221
|
/**
|
|
5020
5222
|
* @remarks
|
|
5021
|
-
*
|
|
5223
|
+
* The tag scope.
|
|
5022
5224
|
*
|
|
5023
5225
|
* This parameter is required.
|
|
5024
5226
|
*/
|
|
@@ -5035,7 +5237,21 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
5035
5237
|
});
|
|
5036
5238
|
}
|
|
5037
5239
|
export declare class GetCompliancePackResponseBodyCompliancePackTags extends $dara.Model {
|
|
5240
|
+
/**
|
|
5241
|
+
* @remarks
|
|
5242
|
+
* The tag keys of the resource.
|
|
5243
|
+
*
|
|
5244
|
+
* @example
|
|
5245
|
+
* key-1
|
|
5246
|
+
*/
|
|
5038
5247
|
tagKey?: string;
|
|
5248
|
+
/**
|
|
5249
|
+
* @remarks
|
|
5250
|
+
* The tag values of the resource.
|
|
5251
|
+
*
|
|
5252
|
+
* @example
|
|
5253
|
+
* value-1
|
|
5254
|
+
*/
|
|
5039
5255
|
tagValue?: string;
|
|
5040
5256
|
static names(): {
|
|
5041
5257
|
[key: string]: string;
|
|
@@ -5130,6 +5346,10 @@ export declare class GetCompliancePackResponseBodyCompliancePack extends $dara.M
|
|
|
5130
5346
|
* ACTIVE
|
|
5131
5347
|
*/
|
|
5132
5348
|
status?: string;
|
|
5349
|
+
/**
|
|
5350
|
+
* @remarks
|
|
5351
|
+
* The list of tags.
|
|
5352
|
+
*/
|
|
5133
5353
|
tags?: GetCompliancePackResponseBodyCompliancePackTags[];
|
|
5134
5354
|
/**
|
|
5135
5355
|
* @remarks
|
|
@@ -5137,35 +5357,55 @@ export declare class GetCompliancePackResponseBodyCompliancePack extends $dara.M
|
|
|
5137
5357
|
*
|
|
5138
5358
|
* @example
|
|
5139
5359
|
* {
|
|
5140
|
-
*
|
|
5360
|
+
* "configRuleTemplates": [
|
|
5141
5361
|
* {
|
|
5142
|
-
*
|
|
5143
|
-
*
|
|
5144
|
-
*
|
|
5145
|
-
*
|
|
5146
|
-
*
|
|
5147
|
-
*
|
|
5148
|
-
*
|
|
5149
|
-
*
|
|
5150
|
-
*
|
|
5151
|
-
*
|
|
5152
|
-
*
|
|
5153
|
-
*
|
|
5154
|
-
*
|
|
5155
|
-
*
|
|
5156
|
-
*
|
|
5157
|
-
*
|
|
5158
|
-
*
|
|
5159
|
-
*
|
|
5160
|
-
*
|
|
5362
|
+
* "configRuleName": "rule-example",
|
|
5363
|
+
* "scope": {
|
|
5364
|
+
* "complianceResourceTypes": [
|
|
5365
|
+
* "ACS::ECS::Instance"
|
|
5366
|
+
* ]
|
|
5367
|
+
* },
|
|
5368
|
+
* "description": "",
|
|
5369
|
+
* "source": {
|
|
5370
|
+
* "owner": "CUSTOM_CONFIGURATION",
|
|
5371
|
+
* "identifier": "acs-config-configuration",
|
|
5372
|
+
* "sourceDetails": [
|
|
5373
|
+
* {
|
|
5374
|
+
* "messageType": "ScheduledNotification",
|
|
5375
|
+
* "maximumExecutionFrequency": "Twelve_Hours"
|
|
5376
|
+
* },
|
|
5377
|
+
* {
|
|
5378
|
+
* "messageType": "ConfigurationItemChangeNotification"
|
|
5379
|
+
* }
|
|
5380
|
+
* ],
|
|
5381
|
+
* "conditions": "{\\"ComplianceConditions\\":\\"{\\\\\\"operator\\\\\\":\\\\\\"and\\\\\\",\\\\\\"children\\\\\\":[{\\\\\\"operator\\\\\\":\\\\\\"GreaterOrEquals\\\\\\",\\\\\\"featurePath\\\\\\":\\\\\\"$.Cpu\\\\\\",\\\\\\"featureSource\\\\\\":\\\\\\"CONFIGURATION\\\\\\",\\\\\\"desired\\\\\\":\\\\\\"2\\\\\\"}]}\\"}"
|
|
5382
|
+
* },
|
|
5383
|
+
* "inputParameters": {}
|
|
5384
|
+
* },
|
|
5385
|
+
* {
|
|
5386
|
+
* "configRuleName": "name",
|
|
5387
|
+
* "scope": {
|
|
5388
|
+
* "complianceResourceTypes": [
|
|
5389
|
+
* "ACS::OSS::Bucket"
|
|
5390
|
+
* ]
|
|
5391
|
+
* },
|
|
5392
|
+
* "description": "description-1",
|
|
5393
|
+
* "source": {
|
|
5394
|
+
* "owner": "ALIYUN",
|
|
5395
|
+
* "identifier": "oss-bucket-referer-limit",
|
|
5396
|
+
* "sourceDetails": [
|
|
5397
|
+
* {
|
|
5398
|
+
* "messageType": "ConfigurationItemChangeNotification"
|
|
5399
|
+
* }
|
|
5400
|
+
* ]
|
|
5401
|
+
* },
|
|
5402
|
+
* "inputParameters": {
|
|
5403
|
+
* "allowEmptyReferer": "true",
|
|
5404
|
+
* "allowReferers": "http://www.aliyun.com"
|
|
5405
|
+
* }
|
|
5161
5406
|
* }
|
|
5162
|
-
*
|
|
5163
|
-
*
|
|
5164
|
-
* "riskLevel": 2,
|
|
5165
|
-
* "compliancePackName": "gy-test",
|
|
5166
|
-
* "description": ""
|
|
5167
|
-
* }
|
|
5168
|
-
* }
|
|
5407
|
+
* ]
|
|
5408
|
+
* }
|
|
5169
5409
|
*/
|
|
5170
5410
|
templateContent?: string;
|
|
5171
5411
|
static names(): {
|
|
@@ -6197,6 +6437,17 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6197
6437
|
* eip-8vbf3x310fn56ijfd****
|
|
6198
6438
|
*/
|
|
6199
6439
|
resourceIdsScope?: string;
|
|
6440
|
+
/**
|
|
6441
|
+
* @remarks
|
|
6442
|
+
* The names of the resource to which the rule applies.
|
|
6443
|
+
*
|
|
6444
|
+
* @example
|
|
6445
|
+
* i-xxx
|
|
6446
|
+
*
|
|
6447
|
+
* **if can be null:**
|
|
6448
|
+
* true
|
|
6449
|
+
*/
|
|
6450
|
+
resourceNameScope?: string;
|
|
6200
6451
|
/**
|
|
6201
6452
|
* @remarks
|
|
6202
6453
|
* The type of the resource to be evaluated by the rule.
|
|
@@ -6229,9 +6480,15 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6229
6480
|
source?: GetConfigRuleResponseBodyConfigRuleSource;
|
|
6230
6481
|
/**
|
|
6231
6482
|
* @remarks
|
|
6232
|
-
*
|
|
6483
|
+
* When retrieving details of rules created using the parameter `TagsScope`, this field will not be returned.
|
|
6233
6484
|
*
|
|
6234
|
-
*
|
|
6485
|
+
* To retrieve rules created using the deprecated field `TagKeyScope` (not recommended): for example, when the parameter `TagKeyScope` has a value of ECS,OSS, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels ECS and OSS.
|
|
6486
|
+
*
|
|
6487
|
+
* Values:
|
|
6488
|
+
*
|
|
6489
|
+
* - AND: And.
|
|
6490
|
+
*
|
|
6491
|
+
* - OR: Or.
|
|
6235
6492
|
*
|
|
6236
6493
|
* @example
|
|
6237
6494
|
* 120886317861****
|
|
@@ -6239,22 +6496,30 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6239
6496
|
tagKeyLogicScope?: string;
|
|
6240
6497
|
/**
|
|
6241
6498
|
* @remarks
|
|
6499
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
6500
|
+
*
|
|
6242
6501
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
6243
6502
|
*
|
|
6244
|
-
* >
|
|
6503
|
+
* > The TagKeyScope and `TagValueScope` parameters are returned at the same time.``
|
|
6245
6504
|
*
|
|
6246
6505
|
* @example
|
|
6247
6506
|
* RAM
|
|
6507
|
+
*
|
|
6508
|
+
* @deprecated
|
|
6248
6509
|
*/
|
|
6249
6510
|
tagKeyScope?: string;
|
|
6250
6511
|
/**
|
|
6251
6512
|
* @remarks
|
|
6252
|
-
*
|
|
6513
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
6253
6514
|
*
|
|
6254
|
-
*
|
|
6515
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
6516
|
+
*
|
|
6517
|
+
* > The TagKeyScope and `TagValueScope` parameters are returned at the same time.``
|
|
6255
6518
|
*
|
|
6256
6519
|
* @example
|
|
6257
6520
|
* MFA
|
|
6521
|
+
*
|
|
6522
|
+
* @deprecated
|
|
6258
6523
|
*/
|
|
6259
6524
|
tagValueScope?: string;
|
|
6260
6525
|
/**
|
|
@@ -7624,7 +7889,27 @@ export declare class IgnoreEvaluationResultsRequestResources extends $dara.Model
|
|
|
7624
7889
|
});
|
|
7625
7890
|
}
|
|
7626
7891
|
export declare class ListAggregateCompliancePacksRequestTag extends $dara.Model {
|
|
7892
|
+
/**
|
|
7893
|
+
* @remarks
|
|
7894
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
7895
|
+
*
|
|
7896
|
+
* 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://`.
|
|
7897
|
+
*
|
|
7898
|
+
* @example
|
|
7899
|
+
* key-1
|
|
7900
|
+
*/
|
|
7627
7901
|
key?: string;
|
|
7902
|
+
/**
|
|
7903
|
+
* @remarks
|
|
7904
|
+
* The tag values.
|
|
7905
|
+
*
|
|
7906
|
+
* 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://`.
|
|
7907
|
+
*
|
|
7908
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
7909
|
+
*
|
|
7910
|
+
* @example
|
|
7911
|
+
* value-1
|
|
7912
|
+
*/
|
|
7628
7913
|
value?: string;
|
|
7629
7914
|
static names(): {
|
|
7630
7915
|
[key: string]: string;
|
|
@@ -7638,7 +7923,21 @@ export declare class ListAggregateCompliancePacksRequestTag extends $dara.Model
|
|
|
7638
7923
|
});
|
|
7639
7924
|
}
|
|
7640
7925
|
export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
|
|
7926
|
+
/**
|
|
7927
|
+
* @remarks
|
|
7928
|
+
* The tag key.
|
|
7929
|
+
*
|
|
7930
|
+
* @example
|
|
7931
|
+
* key-1
|
|
7932
|
+
*/
|
|
7641
7933
|
tagKey?: string;
|
|
7934
|
+
/**
|
|
7935
|
+
* @remarks
|
|
7936
|
+
* The tag value.
|
|
7937
|
+
*
|
|
7938
|
+
* @example
|
|
7939
|
+
* value-1
|
|
7940
|
+
*/
|
|
7642
7941
|
tagValue?: string;
|
|
7643
7942
|
static names(): {
|
|
7644
7943
|
[key: string]: string;
|
|
@@ -7731,6 +8030,10 @@ export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResu
|
|
|
7731
8030
|
* ACTIVE
|
|
7732
8031
|
*/
|
|
7733
8032
|
status?: string;
|
|
8033
|
+
/**
|
|
8034
|
+
* @remarks
|
|
8035
|
+
* The tags.
|
|
8036
|
+
*/
|
|
7734
8037
|
tags?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
|
|
7735
8038
|
static names(): {
|
|
7736
8039
|
[key: string]: string;
|
|
@@ -7746,7 +8049,7 @@ export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResu
|
|
|
7746
8049
|
export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResult extends $dara.Model {
|
|
7747
8050
|
/**
|
|
7748
8051
|
* @remarks
|
|
7749
|
-
* The
|
|
8052
|
+
* The compliance packages.
|
|
7750
8053
|
*/
|
|
7751
8054
|
compliancePacks?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacks[];
|
|
7752
8055
|
/**
|
|
@@ -8125,6 +8428,11 @@ export declare class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluat
|
|
|
8125
8428
|
* 1624869012713
|
|
8126
8429
|
*/
|
|
8127
8430
|
configRuleInvokedTimestamp?: number;
|
|
8431
|
+
/**
|
|
8432
|
+
* @example
|
|
8433
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
8434
|
+
*/
|
|
8435
|
+
evaluationId?: string;
|
|
8128
8436
|
/**
|
|
8129
8437
|
* @remarks
|
|
8130
8438
|
* The identifying information about the compliance evaluation result.
|
|
@@ -8141,6 +8449,11 @@ export declare class ListAggregateConfigRuleEvaluationResultsResponseBodyEvaluat
|
|
|
8141
8449
|
* ScheduledNotification
|
|
8142
8450
|
*/
|
|
8143
8451
|
invokingEventMessageType?: string;
|
|
8452
|
+
/**
|
|
8453
|
+
* @example
|
|
8454
|
+
* 1744696393000
|
|
8455
|
+
*/
|
|
8456
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
8144
8457
|
/**
|
|
8145
8458
|
* @remarks
|
|
8146
8459
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -8277,7 +8590,27 @@ export declare class ListAggregateConfigRuleEvaluationStatisticsResponseBodyEval
|
|
|
8277
8590
|
});
|
|
8278
8591
|
}
|
|
8279
8592
|
export declare class ListAggregateConfigRulesRequestTag extends $dara.Model {
|
|
8593
|
+
/**
|
|
8594
|
+
* @remarks
|
|
8595
|
+
* The tag key.
|
|
8596
|
+
*
|
|
8597
|
+
* 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://`.
|
|
8598
|
+
*
|
|
8599
|
+
* You can specify at most 20 tag keys.
|
|
8600
|
+
*
|
|
8601
|
+
* @example
|
|
8602
|
+
* key-1
|
|
8603
|
+
*/
|
|
8280
8604
|
key?: string;
|
|
8605
|
+
/**
|
|
8606
|
+
* @remarks
|
|
8607
|
+
* The value of the tag. You can specify up to 20 tag values. The tag value can be an empty string.
|
|
8608
|
+
*
|
|
8609
|
+
* 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://`.
|
|
8610
|
+
*
|
|
8611
|
+
* @example
|
|
8612
|
+
* value-1
|
|
8613
|
+
*/
|
|
8281
8614
|
value?: string;
|
|
8282
8615
|
static names(): {
|
|
8283
8616
|
[key: string]: string;
|
|
@@ -8685,6 +9018,13 @@ export declare class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResou
|
|
|
8685
9018
|
* {\\"key1\\":[\\"value2\\"]}
|
|
8686
9019
|
*/
|
|
8687
9020
|
tags?: string;
|
|
9021
|
+
/**
|
|
9022
|
+
* @remarks
|
|
9023
|
+
* The time when the resource was last updated. The value must be a timestamp in milliseconds.
|
|
9024
|
+
*
|
|
9025
|
+
* @example
|
|
9026
|
+
* 1722441600000
|
|
9027
|
+
*/
|
|
8688
9028
|
updateTime?: number;
|
|
8689
9029
|
/**
|
|
8690
9030
|
* @remarks
|
|
@@ -8708,7 +9048,7 @@ export declare class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResou
|
|
|
8708
9048
|
export declare class ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfiles extends $dara.Model {
|
|
8709
9049
|
/**
|
|
8710
9050
|
* @remarks
|
|
8711
|
-
* The
|
|
9051
|
+
* The details of the resources.
|
|
8712
9052
|
*/
|
|
8713
9053
|
discoveredResourceProfileList?: ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfilesDiscoveredResourceProfileList[];
|
|
8714
9054
|
/**
|
|
@@ -9101,6 +9441,11 @@ export declare class ListAggregateResourceEvaluationResultsResponseBodyEvaluatio
|
|
|
9101
9441
|
* 1624932227157
|
|
9102
9442
|
*/
|
|
9103
9443
|
configRuleInvokedTimestamp?: number;
|
|
9444
|
+
/**
|
|
9445
|
+
* @example
|
|
9446
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
9447
|
+
*/
|
|
9448
|
+
evaluationId?: string;
|
|
9104
9449
|
/**
|
|
9105
9450
|
* @remarks
|
|
9106
9451
|
* The identifying information about the compliance evaluation result.
|
|
@@ -9117,6 +9462,11 @@ export declare class ListAggregateResourceEvaluationResultsResponseBodyEvaluatio
|
|
|
9117
9462
|
* ScheduledNotification
|
|
9118
9463
|
*/
|
|
9119
9464
|
invokingEventMessageType?: string;
|
|
9465
|
+
/**
|
|
9466
|
+
* @example
|
|
9467
|
+
* 1744696665000
|
|
9468
|
+
*/
|
|
9469
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
9120
9470
|
/**
|
|
9121
9471
|
* @remarks
|
|
9122
9472
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -9340,7 +9690,27 @@ export declare class ListAggregateResourcesByAdvancedSearchResponseBodyQueryResu
|
|
|
9340
9690
|
});
|
|
9341
9691
|
}
|
|
9342
9692
|
export declare class ListAggregatorsRequestTag extends $dara.Model {
|
|
9693
|
+
/**
|
|
9694
|
+
* @remarks
|
|
9695
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
9696
|
+
*
|
|
9697
|
+
* 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://`.
|
|
9698
|
+
*
|
|
9699
|
+
* @example
|
|
9700
|
+
* key-1
|
|
9701
|
+
*/
|
|
9343
9702
|
key?: string;
|
|
9703
|
+
/**
|
|
9704
|
+
* @remarks
|
|
9705
|
+
* The tag values.
|
|
9706
|
+
*
|
|
9707
|
+
* 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://`.
|
|
9708
|
+
*
|
|
9709
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
9710
|
+
*
|
|
9711
|
+
* @example
|
|
9712
|
+
* value-1
|
|
9713
|
+
*/
|
|
9344
9714
|
value?: string;
|
|
9345
9715
|
static names(): {
|
|
9346
9716
|
[key: string]: string;
|
|
@@ -9354,7 +9724,21 @@ export declare class ListAggregatorsRequestTag extends $dara.Model {
|
|
|
9354
9724
|
});
|
|
9355
9725
|
}
|
|
9356
9726
|
export declare class ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags extends $dara.Model {
|
|
9727
|
+
/**
|
|
9728
|
+
* @remarks
|
|
9729
|
+
* The tag keys of the resource.
|
|
9730
|
+
*
|
|
9731
|
+
* @example
|
|
9732
|
+
* key-1
|
|
9733
|
+
*/
|
|
9357
9734
|
tagKey?: string;
|
|
9735
|
+
/**
|
|
9736
|
+
* @remarks
|
|
9737
|
+
* The tag values of the resource.
|
|
9738
|
+
*
|
|
9739
|
+
* @example
|
|
9740
|
+
* value-1
|
|
9741
|
+
*/
|
|
9358
9742
|
tagValue?: string;
|
|
9359
9743
|
static names(): {
|
|
9360
9744
|
[key: string]: string;
|
|
@@ -9447,6 +9831,10 @@ export declare class ListAggregatorsResponseBodyAggregatorsResultAggregators ext
|
|
|
9447
9831
|
* r-BU****
|
|
9448
9832
|
*/
|
|
9449
9833
|
folderId?: string;
|
|
9834
|
+
/**
|
|
9835
|
+
* @remarks
|
|
9836
|
+
* tags
|
|
9837
|
+
*/
|
|
9450
9838
|
tags?: ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags[];
|
|
9451
9839
|
static names(): {
|
|
9452
9840
|
[key: string]: string;
|
|
@@ -9724,7 +10112,27 @@ export declare class ListCompliancePackTemplatesResponseBodyCompliancePackTempla
|
|
|
9724
10112
|
});
|
|
9725
10113
|
}
|
|
9726
10114
|
export declare class ListCompliancePacksRequestTag extends $dara.Model {
|
|
10115
|
+
/**
|
|
10116
|
+
* @remarks
|
|
10117
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
10118
|
+
*
|
|
10119
|
+
* 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://`.
|
|
10120
|
+
*
|
|
10121
|
+
* @example
|
|
10122
|
+
* key-1
|
|
10123
|
+
*/
|
|
9727
10124
|
key?: string;
|
|
10125
|
+
/**
|
|
10126
|
+
* @remarks
|
|
10127
|
+
* The tag values.
|
|
10128
|
+
*
|
|
10129
|
+
* 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://`.
|
|
10130
|
+
*
|
|
10131
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
10132
|
+
*
|
|
10133
|
+
* @example
|
|
10134
|
+
* value-1
|
|
10135
|
+
*/
|
|
9728
10136
|
value?: string;
|
|
9729
10137
|
static names(): {
|
|
9730
10138
|
[key: string]: string;
|
|
@@ -9738,7 +10146,21 @@ export declare class ListCompliancePacksRequestTag extends $dara.Model {
|
|
|
9738
10146
|
});
|
|
9739
10147
|
}
|
|
9740
10148
|
export declare class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
|
|
10149
|
+
/**
|
|
10150
|
+
* @remarks
|
|
10151
|
+
* tag key
|
|
10152
|
+
*
|
|
10153
|
+
* @example
|
|
10154
|
+
* key-1
|
|
10155
|
+
*/
|
|
9741
10156
|
tagKey?: string;
|
|
10157
|
+
/**
|
|
10158
|
+
* @remarks
|
|
10159
|
+
* tag value
|
|
10160
|
+
*
|
|
10161
|
+
* @example
|
|
10162
|
+
* value-1
|
|
10163
|
+
*/
|
|
9742
10164
|
tagValue?: string;
|
|
9743
10165
|
static names(): {
|
|
9744
10166
|
[key: string]: string;
|
|
@@ -9823,6 +10245,10 @@ export declare class ListCompliancePacksResponseBodyCompliancePacksResultComplia
|
|
|
9823
10245
|
* ACTIVE
|
|
9824
10246
|
*/
|
|
9825
10247
|
status?: string;
|
|
10248
|
+
/**
|
|
10249
|
+
* @remarks
|
|
10250
|
+
* The tags.
|
|
10251
|
+
*/
|
|
9826
10252
|
tags?: ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
|
|
9827
10253
|
static names(): {
|
|
9828
10254
|
[key: string]: string;
|
|
@@ -10207,6 +10633,11 @@ export declare class ListConfigRuleEvaluationResultsResponseBodyEvaluationResult
|
|
|
10207
10633
|
* 1622802307081
|
|
10208
10634
|
*/
|
|
10209
10635
|
configRuleInvokedTimestamp?: number;
|
|
10636
|
+
/**
|
|
10637
|
+
* @example
|
|
10638
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
10639
|
+
*/
|
|
10640
|
+
evaluationId?: string;
|
|
10210
10641
|
/**
|
|
10211
10642
|
* @remarks
|
|
10212
10643
|
* The identifying information about the compliance evaluation result.
|
|
@@ -10218,11 +10649,17 @@ export declare class ListConfigRuleEvaluationResultsResponseBodyEvaluationResult
|
|
|
10218
10649
|
*
|
|
10219
10650
|
* * ConfigurationItemChangeNotification: The rule is triggered by configuration changes.
|
|
10220
10651
|
* * ScheduledNotification: The rule is periodically triggered.
|
|
10652
|
+
* * Manual: The rule is manually triggered.
|
|
10221
10653
|
*
|
|
10222
10654
|
* @example
|
|
10223
10655
|
* ConfigurationItemChangeNotification
|
|
10224
10656
|
*/
|
|
10225
10657
|
invokingEventMessageType?: string;
|
|
10658
|
+
/**
|
|
10659
|
+
* @example
|
|
10660
|
+
* 1744696665000
|
|
10661
|
+
*/
|
|
10662
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
10226
10663
|
/**
|
|
10227
10664
|
* @remarks
|
|
10228
10665
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -10731,6 +11168,13 @@ export declare class ListDiscoveredResourcesResponseBodyDiscoveredResourceProfil
|
|
|
10731
11168
|
* {\\"key1\\":[\\"value2\\"]}
|
|
10732
11169
|
*/
|
|
10733
11170
|
tags?: string;
|
|
11171
|
+
/**
|
|
11172
|
+
* @remarks
|
|
11173
|
+
* The time when the resource was last updated. The value must be a timestamp in milliseconds.
|
|
11174
|
+
*
|
|
11175
|
+
* @example
|
|
11176
|
+
* 1722441600000
|
|
11177
|
+
*/
|
|
10734
11178
|
updateTime?: number;
|
|
10735
11179
|
/**
|
|
10736
11180
|
* @remarks
|
|
@@ -11515,6 +11959,11 @@ export declare class ListResourceEvaluationResultsResponseBodyEvaluationResultsE
|
|
|
11515
11959
|
* 1624932227157
|
|
11516
11960
|
*/
|
|
11517
11961
|
configRuleInvokedTimestamp?: number;
|
|
11962
|
+
/**
|
|
11963
|
+
* @example
|
|
11964
|
+
* 00000089-4e0d-58b5-a96a-8e54112110f3
|
|
11965
|
+
*/
|
|
11966
|
+
evaluationId?: string;
|
|
11518
11967
|
/**
|
|
11519
11968
|
* @remarks
|
|
11520
11969
|
* The identifying information about the compliance evaluation result.
|
|
@@ -11526,11 +11975,17 @@ export declare class ListResourceEvaluationResultsResponseBodyEvaluationResultsE
|
|
|
11526
11975
|
*
|
|
11527
11976
|
* * ConfigurationItemChangeNotification: The managed rule is triggered by configuration changes.
|
|
11528
11977
|
* * ScheduledNotification: The managed rule is periodically triggered.
|
|
11978
|
+
* * Manual: The rule is manually triggered.
|
|
11529
11979
|
*
|
|
11530
11980
|
* @example
|
|
11531
11981
|
* ScheduledNotification
|
|
11532
11982
|
*/
|
|
11533
11983
|
invokingEventMessageType?: string;
|
|
11984
|
+
/**
|
|
11985
|
+
* @example
|
|
11986
|
+
* 1744696393000
|
|
11987
|
+
*/
|
|
11988
|
+
lastNonCompliantRecordTimestamp?: number;
|
|
11534
11989
|
/**
|
|
11535
11990
|
* @remarks
|
|
11536
11991
|
* Indicates whether the remediation template is enabled. Valid values:
|
|
@@ -12535,7 +12990,27 @@ export declare class UpdateAggregatorRequestAggregatorAccounts extends $dara.Mod
|
|
|
12535
12990
|
});
|
|
12536
12991
|
}
|
|
12537
12992
|
export declare class UpdateAggregatorRequestTag extends $dara.Model {
|
|
12993
|
+
/**
|
|
12994
|
+
* @remarks
|
|
12995
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
12996
|
+
*
|
|
12997
|
+
* 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://`.
|
|
12998
|
+
*
|
|
12999
|
+
* @example
|
|
13000
|
+
* key-1
|
|
13001
|
+
*/
|
|
12538
13002
|
key?: string;
|
|
13003
|
+
/**
|
|
13004
|
+
* @remarks
|
|
13005
|
+
* The tag values.
|
|
13006
|
+
*
|
|
13007
|
+
* 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://`.
|
|
13008
|
+
*
|
|
13009
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
13010
|
+
*
|
|
13011
|
+
* @example
|
|
13012
|
+
* value-1
|
|
13013
|
+
*/
|
|
12539
13014
|
value?: string;
|
|
12540
13015
|
static names(): {
|
|
12541
13016
|
[key: string]: string;
|
|
@@ -12674,7 +13149,29 @@ export declare class UpdateCompliancePackRequestExcludeTagsScope extends $dara.M
|
|
|
12674
13149
|
});
|
|
12675
13150
|
}
|
|
12676
13151
|
export declare class UpdateCompliancePackRequestTag extends $dara.Model {
|
|
13152
|
+
/**
|
|
13153
|
+
* @remarks
|
|
13154
|
+
* The tag keys.
|
|
13155
|
+
*
|
|
13156
|
+
* 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://`.
|
|
13157
|
+
*
|
|
13158
|
+
* You can specify at most 20 tag keys in each call.
|
|
13159
|
+
*
|
|
13160
|
+
* @example
|
|
13161
|
+
* key-1
|
|
13162
|
+
*/
|
|
12677
13163
|
key?: string;
|
|
13164
|
+
/**
|
|
13165
|
+
* @remarks
|
|
13166
|
+
* The tag values.
|
|
13167
|
+
*
|
|
13168
|
+
* 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://`.
|
|
13169
|
+
*
|
|
13170
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
13171
|
+
*
|
|
13172
|
+
* @example
|
|
13173
|
+
* value-1
|
|
13174
|
+
*/
|
|
12678
13175
|
value?: string;
|
|
12679
13176
|
static names(): {
|
|
12680
13177
|
[key: string]: string;
|
|
@@ -13727,6 +14224,12 @@ export declare class CreateAggregateCompliancePackRequest extends $dara.Model {
|
|
|
13727
14224
|
* 1
|
|
13728
14225
|
*/
|
|
13729
14226
|
riskLevel?: number;
|
|
14227
|
+
/**
|
|
14228
|
+
* @remarks
|
|
14229
|
+
* The tags of the resource.
|
|
14230
|
+
*
|
|
14231
|
+
* You can add up to 20 tags to a resource.
|
|
14232
|
+
*/
|
|
13730
14233
|
tag?: CreateAggregateCompliancePackRequestTag[];
|
|
13731
14234
|
/**
|
|
13732
14235
|
* @remarks
|
|
@@ -13904,6 +14407,12 @@ export declare class CreateAggregateCompliancePackShrinkRequest extends $dara.Mo
|
|
|
13904
14407
|
* 1
|
|
13905
14408
|
*/
|
|
13906
14409
|
riskLevel?: number;
|
|
14410
|
+
/**
|
|
14411
|
+
* @remarks
|
|
14412
|
+
* The tags of the resource.
|
|
14413
|
+
*
|
|
14414
|
+
* You can add up to 20 tags to a resource.
|
|
14415
|
+
*/
|
|
13907
14416
|
tagShrink?: string;
|
|
13908
14417
|
/**
|
|
13909
14418
|
* @remarks
|
|
@@ -14408,6 +14917,17 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14408
14917
|
* lb-5cmbowstbkss9ta03****
|
|
14409
14918
|
*/
|
|
14410
14919
|
resourceIdsScope?: string;
|
|
14920
|
+
/**
|
|
14921
|
+
* @remarks
|
|
14922
|
+
* The names of the resource to which the rule applies.
|
|
14923
|
+
*
|
|
14924
|
+
* @example
|
|
14925
|
+
* i-xxx
|
|
14926
|
+
*
|
|
14927
|
+
* **if can be null:**
|
|
14928
|
+
* true
|
|
14929
|
+
*/
|
|
14930
|
+
resourceNameScope?: string;
|
|
14411
14931
|
/**
|
|
14412
14932
|
* @remarks
|
|
14413
14933
|
* The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -14460,13 +14980,22 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14460
14980
|
* ALIYUN
|
|
14461
14981
|
*/
|
|
14462
14982
|
sourceOwner?: string;
|
|
14983
|
+
/**
|
|
14984
|
+
* @remarks
|
|
14985
|
+
* The tags.
|
|
14986
|
+
*/
|
|
14463
14987
|
tag?: CreateAggregateConfigRuleRequestTag[];
|
|
14464
14988
|
/**
|
|
14465
14989
|
* @remarks
|
|
14466
|
-
* The logical relationship
|
|
14990
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
14991
|
+
*
|
|
14992
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
14467
14993
|
*
|
|
14468
|
-
*
|
|
14469
|
-
*
|
|
14994
|
+
* Values:
|
|
14995
|
+
*
|
|
14996
|
+
* - AND: And.
|
|
14997
|
+
*
|
|
14998
|
+
* - OR: Or.
|
|
14470
14999
|
*
|
|
14471
15000
|
* @example
|
|
14472
15001
|
* AND
|
|
@@ -14474,22 +15003,30 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14474
15003
|
tagKeyLogicScope?: string;
|
|
14475
15004
|
/**
|
|
14476
15005
|
* @remarks
|
|
15006
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15007
|
+
*
|
|
14477
15008
|
* 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 (,).
|
|
14478
15009
|
*
|
|
14479
|
-
* >
|
|
15010
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14480
15011
|
*
|
|
14481
15012
|
* @example
|
|
14482
15013
|
* ECS
|
|
15014
|
+
*
|
|
15015
|
+
* @deprecated
|
|
14483
15016
|
*/
|
|
14484
15017
|
tagKeyScope?: string;
|
|
14485
15018
|
/**
|
|
14486
15019
|
* @remarks
|
|
14487
|
-
*
|
|
15020
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15021
|
+
*
|
|
15022
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
14488
15023
|
*
|
|
14489
|
-
* >
|
|
15024
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14490
15025
|
*
|
|
14491
15026
|
* @example
|
|
14492
15027
|
* test
|
|
15028
|
+
*
|
|
15029
|
+
* @deprecated
|
|
14493
15030
|
*/
|
|
14494
15031
|
tagValueScope?: string;
|
|
14495
15032
|
/**
|
|
@@ -14697,6 +15234,17 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14697
15234
|
* lb-5cmbowstbkss9ta03****
|
|
14698
15235
|
*/
|
|
14699
15236
|
resourceIdsScope?: string;
|
|
15237
|
+
/**
|
|
15238
|
+
* @remarks
|
|
15239
|
+
* The names of the resource to which the rule applies.
|
|
15240
|
+
*
|
|
15241
|
+
* @example
|
|
15242
|
+
* i-xxx
|
|
15243
|
+
*
|
|
15244
|
+
* **if can be null:**
|
|
15245
|
+
* true
|
|
15246
|
+
*/
|
|
15247
|
+
resourceNameScope?: string;
|
|
14700
15248
|
/**
|
|
14701
15249
|
* @remarks
|
|
14702
15250
|
* The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -14749,13 +15297,22 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14749
15297
|
* ALIYUN
|
|
14750
15298
|
*/
|
|
14751
15299
|
sourceOwner?: string;
|
|
15300
|
+
/**
|
|
15301
|
+
* @remarks
|
|
15302
|
+
* The tags.
|
|
15303
|
+
*/
|
|
14752
15304
|
tagShrink?: string;
|
|
14753
15305
|
/**
|
|
14754
15306
|
* @remarks
|
|
14755
|
-
* The logical relationship
|
|
15307
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
15308
|
+
*
|
|
15309
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
14756
15310
|
*
|
|
14757
|
-
*
|
|
14758
|
-
*
|
|
15311
|
+
* Values:
|
|
15312
|
+
*
|
|
15313
|
+
* - AND: And.
|
|
15314
|
+
*
|
|
15315
|
+
* - OR: Or.
|
|
14759
15316
|
*
|
|
14760
15317
|
* @example
|
|
14761
15318
|
* AND
|
|
@@ -14763,22 +15320,30 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14763
15320
|
tagKeyLogicScope?: string;
|
|
14764
15321
|
/**
|
|
14765
15322
|
* @remarks
|
|
15323
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15324
|
+
*
|
|
14766
15325
|
* 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 (,).
|
|
14767
15326
|
*
|
|
14768
|
-
* >
|
|
15327
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14769
15328
|
*
|
|
14770
15329
|
* @example
|
|
14771
15330
|
* ECS
|
|
15331
|
+
*
|
|
15332
|
+
* @deprecated
|
|
14772
15333
|
*/
|
|
14773
15334
|
tagKeyScope?: string;
|
|
14774
15335
|
/**
|
|
14775
15336
|
* @remarks
|
|
14776
|
-
*
|
|
15337
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15338
|
+
*
|
|
15339
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
14777
15340
|
*
|
|
14778
|
-
* >
|
|
15341
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14779
15342
|
*
|
|
14780
15343
|
* @example
|
|
14781
15344
|
* test
|
|
15345
|
+
*
|
|
15346
|
+
* @deprecated
|
|
14782
15347
|
*/
|
|
14783
15348
|
tagValueScope?: string;
|
|
14784
15349
|
/**
|
|
@@ -15059,12 +15624,18 @@ export declare class CreateAggregatorRequest extends $dara.Model {
|
|
|
15059
15624
|
description?: string;
|
|
15060
15625
|
/**
|
|
15061
15626
|
* @remarks
|
|
15062
|
-
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`.
|
|
15627
|
+
* 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 (,).
|
|
15063
15628
|
*
|
|
15064
15629
|
* @example
|
|
15065
|
-
* fd-brHdgv****
|
|
15630
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
15066
15631
|
*/
|
|
15067
15632
|
folderId?: string;
|
|
15633
|
+
/**
|
|
15634
|
+
* @remarks
|
|
15635
|
+
* The tags of the resource.
|
|
15636
|
+
*
|
|
15637
|
+
* You can add up to 20 tags to a resource.
|
|
15638
|
+
*/
|
|
15068
15639
|
tag?: CreateAggregatorRequestTag[];
|
|
15069
15640
|
static names(): {
|
|
15070
15641
|
[key: string]: string;
|
|
@@ -15140,12 +15711,18 @@ export declare class CreateAggregatorShrinkRequest extends $dara.Model {
|
|
|
15140
15711
|
description?: string;
|
|
15141
15712
|
/**
|
|
15142
15713
|
* @remarks
|
|
15143
|
-
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`.
|
|
15714
|
+
* 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 (,).
|
|
15144
15715
|
*
|
|
15145
15716
|
* @example
|
|
15146
|
-
* fd-brHdgv****
|
|
15717
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
15147
15718
|
*/
|
|
15148
15719
|
folderId?: string;
|
|
15720
|
+
/**
|
|
15721
|
+
* @remarks
|
|
15722
|
+
* The tags of the resource.
|
|
15723
|
+
*
|
|
15724
|
+
* You can add up to 20 tags to a resource.
|
|
15725
|
+
*/
|
|
15149
15726
|
tagShrink?: string;
|
|
15150
15727
|
static names(): {
|
|
15151
15728
|
[key: string]: string;
|
|
@@ -15324,6 +15901,12 @@ export declare class CreateCompliancePackRequest extends $dara.Model {
|
|
|
15324
15901
|
* 1
|
|
15325
15902
|
*/
|
|
15326
15903
|
riskLevel?: number;
|
|
15904
|
+
/**
|
|
15905
|
+
* @remarks
|
|
15906
|
+
* The tags of the resource.
|
|
15907
|
+
*
|
|
15908
|
+
* You can add up to 20 tags to a resource.
|
|
15909
|
+
*/
|
|
15327
15910
|
tag?: CreateCompliancePackRequestTag[];
|
|
15328
15911
|
/**
|
|
15329
15912
|
* @remarks
|
|
@@ -15488,6 +16071,12 @@ export declare class CreateCompliancePackShrinkRequest extends $dara.Model {
|
|
|
15488
16071
|
* 1
|
|
15489
16072
|
*/
|
|
15490
16073
|
riskLevel?: number;
|
|
16074
|
+
/**
|
|
16075
|
+
* @remarks
|
|
16076
|
+
* The tags of the resource.
|
|
16077
|
+
*
|
|
16078
|
+
* You can add up to 20 tags to a resource.
|
|
16079
|
+
*/
|
|
15491
16080
|
tagShrink?: string;
|
|
15492
16081
|
/**
|
|
15493
16082
|
* @remarks
|
|
@@ -15624,25 +16213,34 @@ export declare class CreateConfigDeliveryChannelRequest extends $dara.Model {
|
|
|
15624
16213
|
configurationSnapshot?: boolean;
|
|
15625
16214
|
/**
|
|
15626
16215
|
* @remarks
|
|
15627
|
-
* The rule that you want to attach to the delivery channel
|
|
16216
|
+
* The rule that you want to attach to the delivery channel, used to specify subscription content filtering conditions.
|
|
15628
16217
|
*
|
|
15629
|
-
* * If
|
|
16218
|
+
* * If you specify the minimum risk level and resource types for compliance events, it should be as follows:
|
|
15630
16219
|
*
|
|
15631
16220
|
* * 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}`.
|
|
15632
16221
|
*
|
|
15633
16222
|
* 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.
|
|
15634
16223
|
*
|
|
16224
|
+
* 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`.
|
|
16225
|
+
*
|
|
15635
16226
|
* * 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}`.
|
|
15636
16227
|
*
|
|
15637
|
-
* The `values` field indicates the resource types of the events to which you want to subscribe.
|
|
16228
|
+
* The `values` field indicates the resource types of the events to which you want to subscribe.
|
|
15638
16229
|
*
|
|
15639
|
-
* `
|
|
16230
|
+
* 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.
|
|
16231
|
+
* The value of the field is a JSON array. Examples:
|
|
15640
16232
|
*
|
|
15641
|
-
*
|
|
16233
|
+
* `[{"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}]`
|
|
16234
|
+
*
|
|
16235
|
+
* * You can also simultaneously specify both risk levels and resource types, such as:
|
|
16236
|
+
*
|
|
16237
|
+
* `[{"filterType":"RuleRiskLevel","value":"2","multiple":false},{"filterType":"ResourceType","values":["ACS::CDN::Domain","ACS::ActionTrail::Trail"],"multiple":true}]`
|
|
16238
|
+
*
|
|
16239
|
+
* * 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}`.
|
|
15642
16240
|
*
|
|
15643
16241
|
* 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:
|
|
15644
16242
|
*
|
|
15645
|
-
*
|
|
16243
|
+
* `[{"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}]`
|
|
15646
16244
|
*
|
|
15647
16245
|
* @example
|
|
15648
16246
|
* [{"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}]
|
|
@@ -15922,6 +16520,17 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15922
16520
|
* lb-5cmbowstbkss9ta03****
|
|
15923
16521
|
*/
|
|
15924
16522
|
resourceIdsScope?: string;
|
|
16523
|
+
/**
|
|
16524
|
+
* @remarks
|
|
16525
|
+
* The names of the resource to which the rule applies.
|
|
16526
|
+
*
|
|
16527
|
+
* @example
|
|
16528
|
+
* i-xxx
|
|
16529
|
+
*
|
|
16530
|
+
* **if can be null:**
|
|
16531
|
+
* true
|
|
16532
|
+
*/
|
|
16533
|
+
resourceNameScope?: string;
|
|
15925
16534
|
/**
|
|
15926
16535
|
* @remarks
|
|
15927
16536
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -15981,10 +16590,15 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15981
16590
|
tag?: CreateConfigRuleRequestTag[];
|
|
15982
16591
|
/**
|
|
15983
16592
|
* @remarks
|
|
15984
|
-
* The logical relationship
|
|
16593
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
15985
16594
|
*
|
|
15986
|
-
*
|
|
15987
|
-
*
|
|
16595
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
16596
|
+
*
|
|
16597
|
+
* Values:
|
|
16598
|
+
*
|
|
16599
|
+
* - AND: And.
|
|
16600
|
+
*
|
|
16601
|
+
* - OR: Or.
|
|
15988
16602
|
*
|
|
15989
16603
|
* @example
|
|
15990
16604
|
* AND
|
|
@@ -15998,6 +16612,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15998
16612
|
*
|
|
15999
16613
|
* @example
|
|
16000
16614
|
* ECS
|
|
16615
|
+
*
|
|
16616
|
+
* @deprecated
|
|
16001
16617
|
*/
|
|
16002
16618
|
tagKeyScope?: string;
|
|
16003
16619
|
/**
|
|
@@ -16008,6 +16624,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
16008
16624
|
*
|
|
16009
16625
|
* @example
|
|
16010
16626
|
* test
|
|
16627
|
+
*
|
|
16628
|
+
* @deprecated
|
|
16011
16629
|
*/
|
|
16012
16630
|
tagValueScope?: string;
|
|
16013
16631
|
/**
|
|
@@ -16159,6 +16777,17 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16159
16777
|
* lb-5cmbowstbkss9ta03****
|
|
16160
16778
|
*/
|
|
16161
16779
|
resourceIdsScope?: string;
|
|
16780
|
+
/**
|
|
16781
|
+
* @remarks
|
|
16782
|
+
* The names of the resource to which the rule applies.
|
|
16783
|
+
*
|
|
16784
|
+
* @example
|
|
16785
|
+
* i-xxx
|
|
16786
|
+
*
|
|
16787
|
+
* **if can be null:**
|
|
16788
|
+
* true
|
|
16789
|
+
*/
|
|
16790
|
+
resourceNameScope?: string;
|
|
16162
16791
|
/**
|
|
16163
16792
|
* @remarks
|
|
16164
16793
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -16218,10 +16847,15 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16218
16847
|
tagShrink?: string;
|
|
16219
16848
|
/**
|
|
16220
16849
|
* @remarks
|
|
16221
|
-
* The logical relationship
|
|
16850
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
16851
|
+
*
|
|
16852
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
16222
16853
|
*
|
|
16223
|
-
*
|
|
16224
|
-
*
|
|
16854
|
+
* Values:
|
|
16855
|
+
*
|
|
16856
|
+
* - AND: And.
|
|
16857
|
+
*
|
|
16858
|
+
* - OR: Or.
|
|
16225
16859
|
*
|
|
16226
16860
|
* @example
|
|
16227
16861
|
* AND
|
|
@@ -16235,6 +16869,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16235
16869
|
*
|
|
16236
16870
|
* @example
|
|
16237
16871
|
* ECS
|
|
16872
|
+
*
|
|
16873
|
+
* @deprecated
|
|
16238
16874
|
*/
|
|
16239
16875
|
tagKeyScope?: string;
|
|
16240
16876
|
/**
|
|
@@ -16245,6 +16881,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16245
16881
|
*
|
|
16246
16882
|
* @example
|
|
16247
16883
|
* test
|
|
16884
|
+
*
|
|
16885
|
+
* @deprecated
|
|
16248
16886
|
*/
|
|
16249
16887
|
tagValueScope?: string;
|
|
16250
16888
|
/**
|
|
@@ -18574,6 +19212,12 @@ export declare class GetAggregateCompliancePackRequest extends $dara.Model {
|
|
|
18574
19212
|
* cp-fdc8626622af00f9****
|
|
18575
19213
|
*/
|
|
18576
19214
|
compliancePackId?: string;
|
|
19215
|
+
/**
|
|
19216
|
+
* @remarks
|
|
19217
|
+
* The tags of the resource.
|
|
19218
|
+
*
|
|
19219
|
+
* You can add up to 20 tags to a resource.
|
|
19220
|
+
*/
|
|
18577
19221
|
tag?: GetAggregateCompliancePackRequestTag[];
|
|
18578
19222
|
static names(): {
|
|
18579
19223
|
[key: string]: string;
|
|
@@ -18607,10 +19251,16 @@ export declare class GetAggregateCompliancePackShrinkRequest extends $dara.Model
|
|
|
18607
19251
|
*
|
|
18608
19252
|
* This parameter is required.
|
|
18609
19253
|
*
|
|
18610
|
-
* @example
|
|
18611
|
-
* cp-fdc8626622af00f9****
|
|
19254
|
+
* @example
|
|
19255
|
+
* cp-fdc8626622af00f9****
|
|
19256
|
+
*/
|
|
19257
|
+
compliancePackId?: string;
|
|
19258
|
+
/**
|
|
19259
|
+
* @remarks
|
|
19260
|
+
* The tags of the resource.
|
|
19261
|
+
*
|
|
19262
|
+
* You can add up to 20 tags to a resource.
|
|
18612
19263
|
*/
|
|
18613
|
-
compliancePackId?: string;
|
|
18614
19264
|
tagShrink?: string;
|
|
18615
19265
|
static names(): {
|
|
18616
19266
|
[key: string]: string;
|
|
@@ -18977,7 +19627,7 @@ export declare class GetAggregateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
18977
19627
|
export declare class GetAggregateConfigRuleResponseBody extends $dara.Model {
|
|
18978
19628
|
/**
|
|
18979
19629
|
* @remarks
|
|
18980
|
-
* The rules.
|
|
19630
|
+
* The information about the rules.
|
|
18981
19631
|
*/
|
|
18982
19632
|
configRule?: GetAggregateConfigRuleResponseBodyConfigRule;
|
|
18983
19633
|
/**
|
|
@@ -19195,7 +19845,7 @@ export declare class GetAggregateConfigRulesReportRequest extends $dara.Model {
|
|
|
19195
19845
|
export declare class GetAggregateConfigRulesReportResponseBody extends $dara.Model {
|
|
19196
19846
|
/**
|
|
19197
19847
|
* @remarks
|
|
19198
|
-
* The
|
|
19848
|
+
* The compliance evaluation report.
|
|
19199
19849
|
*/
|
|
19200
19850
|
configRulesReport?: GetAggregateConfigRulesReportResponseBodyConfigRulesReport;
|
|
19201
19851
|
/**
|
|
@@ -19272,7 +19922,7 @@ export declare class GetAggregateDiscoveredResourceRequest extends $dara.Model {
|
|
|
19272
19922
|
region?: string;
|
|
19273
19923
|
/**
|
|
19274
19924
|
* @remarks
|
|
19275
|
-
* The ID of the Alibaba Cloud account to which the specified resource belongs in the account group.
|
|
19925
|
+
* Required. The ID of the Alibaba Cloud account to which the specified resource belongs in the account group.
|
|
19276
19926
|
*
|
|
19277
19927
|
* @example
|
|
19278
19928
|
* 100931896542****
|
|
@@ -19885,7 +20535,7 @@ export declare class GetAggregateResourceConfigurationTimelineRequest extends $d
|
|
|
19885
20535
|
region?: string;
|
|
19886
20536
|
/**
|
|
19887
20537
|
* @remarks
|
|
19888
|
-
* The ID of the Alibaba Cloud account to which the resource in the account group
|
|
20538
|
+
* Required. The ID of the Alibaba Cloud account to which the specified resource belongs in the account group.
|
|
19889
20539
|
*
|
|
19890
20540
|
* @example
|
|
19891
20541
|
* 100931896542****
|
|
@@ -20253,6 +20903,12 @@ export declare class GetAggregatorRequest extends $dara.Model {
|
|
|
20253
20903
|
* ca-88ea626622af0055****
|
|
20254
20904
|
*/
|
|
20255
20905
|
aggregatorId?: string;
|
|
20906
|
+
/**
|
|
20907
|
+
* @remarks
|
|
20908
|
+
* The tags of the resource.
|
|
20909
|
+
*
|
|
20910
|
+
* You can add up to 20 tags to a resource.
|
|
20911
|
+
*/
|
|
20256
20912
|
tag?: GetAggregatorRequestTag[];
|
|
20257
20913
|
static names(): {
|
|
20258
20914
|
[key: string]: string;
|
|
@@ -20276,6 +20932,12 @@ export declare class GetAggregatorShrinkRequest extends $dara.Model {
|
|
|
20276
20932
|
* ca-88ea626622af0055****
|
|
20277
20933
|
*/
|
|
20278
20934
|
aggregatorId?: string;
|
|
20935
|
+
/**
|
|
20936
|
+
* @remarks
|
|
20937
|
+
* The tags of the resource.
|
|
20938
|
+
*
|
|
20939
|
+
* You can add up to 20 tags to a resource.
|
|
20940
|
+
*/
|
|
20279
20941
|
tagShrink?: string;
|
|
20280
20942
|
static names(): {
|
|
20281
20943
|
[key: string]: string;
|
|
@@ -20343,6 +21005,12 @@ export declare class GetCompliancePackRequest extends $dara.Model {
|
|
|
20343
21005
|
* cp-a8a8626622af0082****
|
|
20344
21006
|
*/
|
|
20345
21007
|
compliancePackId?: string;
|
|
21008
|
+
/**
|
|
21009
|
+
* @remarks
|
|
21010
|
+
* The tags of the resource.
|
|
21011
|
+
*
|
|
21012
|
+
* You can add up to 20 tags to a resource.
|
|
21013
|
+
*/
|
|
20346
21014
|
tag?: GetCompliancePackRequestTag[];
|
|
20347
21015
|
static names(): {
|
|
20348
21016
|
[key: string]: string;
|
|
@@ -20368,6 +21036,12 @@ export declare class GetCompliancePackShrinkRequest extends $dara.Model {
|
|
|
20368
21036
|
* cp-a8a8626622af0082****
|
|
20369
21037
|
*/
|
|
20370
21038
|
compliancePackId?: string;
|
|
21039
|
+
/**
|
|
21040
|
+
* @remarks
|
|
21041
|
+
* The tags of the resource.
|
|
21042
|
+
*
|
|
21043
|
+
* You can add up to 20 tags to a resource.
|
|
21044
|
+
*/
|
|
20371
21045
|
tagShrink?: string;
|
|
20372
21046
|
static names(): {
|
|
20373
21047
|
[key: string]: string;
|
|
@@ -22316,6 +22990,10 @@ export declare class ListAggregateCompliancePacksRequest extends $dara.Model {
|
|
|
22316
22990
|
* ACTIVE
|
|
22317
22991
|
*/
|
|
22318
22992
|
status?: string;
|
|
22993
|
+
/**
|
|
22994
|
+
* @remarks
|
|
22995
|
+
* The tags.
|
|
22996
|
+
*/
|
|
22319
22997
|
tag?: ListAggregateCompliancePacksRequestTag[];
|
|
22320
22998
|
static names(): {
|
|
22321
22999
|
[key: string]: string;
|
|
@@ -22372,6 +23050,10 @@ export declare class ListAggregateCompliancePacksShrinkRequest extends $dara.Mod
|
|
|
22372
23050
|
* ACTIVE
|
|
22373
23051
|
*/
|
|
22374
23052
|
status?: string;
|
|
23053
|
+
/**
|
|
23054
|
+
* @remarks
|
|
23055
|
+
* The tags.
|
|
23056
|
+
*/
|
|
22375
23057
|
tagShrink?: string;
|
|
22376
23058
|
static names(): {
|
|
22377
23059
|
[key: string]: string;
|
|
@@ -22387,7 +23069,7 @@ export declare class ListAggregateCompliancePacksShrinkRequest extends $dara.Mod
|
|
|
22387
23069
|
export declare class ListAggregateCompliancePacksResponseBody extends $dara.Model {
|
|
22388
23070
|
/**
|
|
22389
23071
|
* @remarks
|
|
22390
|
-
* The
|
|
23072
|
+
* The compliance packages returned.
|
|
22391
23073
|
*/
|
|
22392
23074
|
compliancePacksResult?: ListAggregateCompliancePacksResponseBodyCompliancePacksResult;
|
|
22393
23075
|
/**
|
|
@@ -22823,6 +23505,12 @@ export declare class ListAggregateConfigRulesRequest extends $dara.Model {
|
|
|
22823
23505
|
* 1
|
|
22824
23506
|
*/
|
|
22825
23507
|
riskLevel?: number;
|
|
23508
|
+
/**
|
|
23509
|
+
* @remarks
|
|
23510
|
+
* The tags of the resource.
|
|
23511
|
+
*
|
|
23512
|
+
* You can add up to 20 tags to a resource.
|
|
23513
|
+
*/
|
|
22826
23514
|
tag?: ListAggregateConfigRulesRequestTag[];
|
|
22827
23515
|
static names(): {
|
|
22828
23516
|
[key: string]: string;
|
|
@@ -22940,6 +23628,12 @@ export declare class ListAggregateConfigRulesShrinkRequest extends $dara.Model {
|
|
|
22940
23628
|
* 1
|
|
22941
23629
|
*/
|
|
22942
23630
|
riskLevel?: number;
|
|
23631
|
+
/**
|
|
23632
|
+
* @remarks
|
|
23633
|
+
* The tags of the resource.
|
|
23634
|
+
*
|
|
23635
|
+
* You can add up to 20 tags to a resource.
|
|
23636
|
+
*/
|
|
22943
23637
|
tagShrink?: string;
|
|
22944
23638
|
static names(): {
|
|
22945
23639
|
[key: string]: string;
|
|
@@ -23007,7 +23701,25 @@ export declare class ListAggregateDiscoveredResourcesRequest extends $dara.Model
|
|
|
23007
23701
|
* ca-c560626622af0005****
|
|
23008
23702
|
*/
|
|
23009
23703
|
aggregatorId?: string;
|
|
23704
|
+
/**
|
|
23705
|
+
* @remarks
|
|
23706
|
+
* The end time of the time range for querying resources. The value is a timestamp in the UTC format. When you specify this parameter, take note of the following limits:
|
|
23707
|
+
*
|
|
23708
|
+
* * The value must be a timestamp in milliseconds.
|
|
23709
|
+
* * The value cannot be less than the value of the StartUpdateTimestamp parameter. The interval between the value and the value of the StartUpdateTimestamp parameter must be less than or equal to 30 days.
|
|
23710
|
+
* * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left empty at the same time.
|
|
23711
|
+
*
|
|
23712
|
+
* @example
|
|
23713
|
+
* 1724947200000
|
|
23714
|
+
*/
|
|
23010
23715
|
endUpdateTimestamp?: number;
|
|
23716
|
+
/**
|
|
23717
|
+
* @remarks
|
|
23718
|
+
* The types of resources that are excluded. Separate multiple values with commas (,). If this parameter conflicts with the ResourceTypes parameter, this parameter prevails.
|
|
23719
|
+
*
|
|
23720
|
+
* @example
|
|
23721
|
+
* ACS::ECS::Instance,ACS::ECS::NetworkInterface
|
|
23722
|
+
*/
|
|
23011
23723
|
excludeResourceTypes?: string;
|
|
23012
23724
|
/**
|
|
23013
23725
|
* @remarks
|
|
@@ -23077,6 +23789,17 @@ export declare class ListAggregateDiscoveredResourcesRequest extends $dara.Model
|
|
|
23077
23789
|
* ACS::ECS::NetworkInterface
|
|
23078
23790
|
*/
|
|
23079
23791
|
resourceTypes?: string;
|
|
23792
|
+
/**
|
|
23793
|
+
* @remarks
|
|
23794
|
+
* The start time of the time range for querying resources. The value is a timestamp in the Coordinated Universal Time (UTC) format. When you specify this parameter, take note of the following limits:
|
|
23795
|
+
*
|
|
23796
|
+
* * The value must be a timestamp in milliseconds.
|
|
23797
|
+
* * The value cannot be greater than the value of the EndUpdateTimestamp parameter. The interval between the value and the value of the EndUpdateTimestamp parameter must be less than or equal to 30 days.
|
|
23798
|
+
* * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left empty at the same time.
|
|
23799
|
+
*
|
|
23800
|
+
* @example
|
|
23801
|
+
* 1722441600000
|
|
23802
|
+
*/
|
|
23080
23803
|
startUpdateTimestamp?: number;
|
|
23081
23804
|
static names(): {
|
|
23082
23805
|
[key: string]: string;
|
|
@@ -23092,7 +23815,7 @@ export declare class ListAggregateDiscoveredResourcesRequest extends $dara.Model
|
|
|
23092
23815
|
export declare class ListAggregateDiscoveredResourcesResponseBody extends $dara.Model {
|
|
23093
23816
|
/**
|
|
23094
23817
|
* @remarks
|
|
23095
|
-
* The
|
|
23818
|
+
* The information about the resources.
|
|
23096
23819
|
*/
|
|
23097
23820
|
discoveredResourceProfiles?: ListAggregateDiscoveredResourcesResponseBodyDiscoveredResourceProfiles;
|
|
23098
23821
|
/**
|
|
@@ -23692,6 +24415,12 @@ export declare class ListAggregatorsRequest extends $dara.Model {
|
|
|
23692
24415
|
* TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
|
|
23693
24416
|
*/
|
|
23694
24417
|
nextToken?: string;
|
|
24418
|
+
/**
|
|
24419
|
+
* @remarks
|
|
24420
|
+
* The tags of the resource.
|
|
24421
|
+
*
|
|
24422
|
+
* You can add up to 20 tags to a resource.
|
|
24423
|
+
*/
|
|
23695
24424
|
tag?: ListAggregatorsRequestTag[];
|
|
23696
24425
|
static names(): {
|
|
23697
24426
|
[key: string]: string;
|
|
@@ -23723,6 +24452,12 @@ export declare class ListAggregatorsShrinkRequest extends $dara.Model {
|
|
|
23723
24452
|
* TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
|
|
23724
24453
|
*/
|
|
23725
24454
|
nextToken?: string;
|
|
24455
|
+
/**
|
|
24456
|
+
* @remarks
|
|
24457
|
+
* The tags of the resource.
|
|
24458
|
+
*
|
|
24459
|
+
* You can add up to 20 tags to a resource.
|
|
24460
|
+
*/
|
|
23726
24461
|
tagShrink?: string;
|
|
23727
24462
|
static names(): {
|
|
23728
24463
|
[key: string]: string;
|
|
@@ -23899,6 +24634,12 @@ export declare class ListCompliancePacksRequest extends $dara.Model {
|
|
|
23899
24634
|
* ACTIVE
|
|
23900
24635
|
*/
|
|
23901
24636
|
status?: string;
|
|
24637
|
+
/**
|
|
24638
|
+
* @remarks
|
|
24639
|
+
* The tags of the resource.
|
|
24640
|
+
*
|
|
24641
|
+
* You can add up to 20 tags to a resource.
|
|
24642
|
+
*/
|
|
23902
24643
|
tag?: ListCompliancePacksRequestTag[];
|
|
23903
24644
|
static names(): {
|
|
23904
24645
|
[key: string]: string;
|
|
@@ -23943,6 +24684,12 @@ export declare class ListCompliancePacksShrinkRequest extends $dara.Model {
|
|
|
23943
24684
|
* ACTIVE
|
|
23944
24685
|
*/
|
|
23945
24686
|
status?: string;
|
|
24687
|
+
/**
|
|
24688
|
+
* @remarks
|
|
24689
|
+
* The tags of the resource.
|
|
24690
|
+
*
|
|
24691
|
+
* You can add up to 20 tags to a resource.
|
|
24692
|
+
*/
|
|
23946
24693
|
tagShrink?: string;
|
|
23947
24694
|
static names(): {
|
|
23948
24695
|
[key: string]: string;
|
|
@@ -24099,7 +24846,7 @@ export declare class ListConfigRuleEvaluationResultsRequest extends $dara.Model
|
|
|
24099
24846
|
configRuleId?: string;
|
|
24100
24847
|
/**
|
|
24101
24848
|
* @remarks
|
|
24102
|
-
* The maximum number of entries to return
|
|
24849
|
+
* The maximum number of entries to return in a request. Valid values: 1 to 100.
|
|
24103
24850
|
*
|
|
24104
24851
|
* @example
|
|
24105
24852
|
* 10
|
|
@@ -24505,7 +25252,25 @@ export declare class ListConfigRulesResponse extends $dara.Model {
|
|
|
24505
25252
|
});
|
|
24506
25253
|
}
|
|
24507
25254
|
export declare class ListDiscoveredResourcesRequest extends $dara.Model {
|
|
25255
|
+
/**
|
|
25256
|
+
* @remarks
|
|
25257
|
+
* The end time of the time range for querying resources. The value is a timestamp in the UTC format. When you specify this parameter, take note of the following limits:
|
|
25258
|
+
*
|
|
25259
|
+
* * The value must be a timestamp in milliseconds.
|
|
25260
|
+
* * The value cannot be less than the value of the StartUpdateTimestamp parameter. The interval between the value and the value of the StartUpdateTimestamp parameter must be less than or equal to 30 days.
|
|
25261
|
+
* * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left empty at the same time.
|
|
25262
|
+
*
|
|
25263
|
+
* @example
|
|
25264
|
+
* 1724947200000
|
|
25265
|
+
*/
|
|
24508
25266
|
endUpdateTimestamp?: number;
|
|
25267
|
+
/**
|
|
25268
|
+
* @remarks
|
|
25269
|
+
* The types of resources that are excluded. Separate multiple values with commas (,). If this parameter conflicts with the ResourceTypes parameter, this parameter prevails.
|
|
25270
|
+
*
|
|
25271
|
+
* @example
|
|
25272
|
+
* ACS::ECS::Instance,ACS::ECS::NetworkInterface
|
|
25273
|
+
*/
|
|
24509
25274
|
excludeResourceTypes?: string;
|
|
24510
25275
|
/**
|
|
24511
25276
|
* @remarks
|
|
@@ -24563,6 +25328,17 @@ export declare class ListDiscoveredResourcesRequest extends $dara.Model {
|
|
|
24563
25328
|
* ACS::ECS::NetworkInterface
|
|
24564
25329
|
*/
|
|
24565
25330
|
resourceTypes?: string;
|
|
25331
|
+
/**
|
|
25332
|
+
* @remarks
|
|
25333
|
+
* The start time of the time range for querying resources. The value is a timestamp in the UTC format. When you specify this parameter, take note of the following limits:
|
|
25334
|
+
*
|
|
25335
|
+
* * The value must be a timestamp in milliseconds.
|
|
25336
|
+
* * The value cannot be greater than the value of the EndUpdateTimestamp parameter. The interval between the value and the value of the EndUpdateTimestamp parameter must be less than or equal to 30 days.
|
|
25337
|
+
* * The StartUpdateTimestamp and EndUpdateTimestamp parameters must be specified at the same time or left blank at the same time.
|
|
25338
|
+
*
|
|
25339
|
+
* @example
|
|
25340
|
+
* 1722441600000
|
|
25341
|
+
*/
|
|
24566
25342
|
startUpdateTimestamp?: number;
|
|
24567
25343
|
static names(): {
|
|
24568
25344
|
[key: string]: string;
|
|
@@ -24660,6 +25436,18 @@ export declare class ListIntegratedServiceResponse extends $dara.Model {
|
|
|
24660
25436
|
});
|
|
24661
25437
|
}
|
|
24662
25438
|
export declare class ListManagedRulesRequest extends $dara.Model {
|
|
25439
|
+
/**
|
|
25440
|
+
* @remarks
|
|
25441
|
+
* The scope for filtering managed rules allows you to filter out managed rules without resource coverage. The possible values are:
|
|
25442
|
+
*
|
|
25443
|
+
* - ALL: All rules.
|
|
25444
|
+
*
|
|
25445
|
+
* - UNCOVERED_RESOURCE: Filters managed rules where some resources are not covered.
|
|
25446
|
+
*
|
|
25447
|
+
* @example
|
|
25448
|
+
* ALL
|
|
25449
|
+
*/
|
|
25450
|
+
filterType?: string;
|
|
24663
25451
|
/**
|
|
24664
25452
|
* @remarks
|
|
24665
25453
|
* The keyword of the managed rule.
|
|
@@ -27556,13 +28344,13 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27556
28344
|
};
|
|
27557
28345
|
/**
|
|
27558
28346
|
* @remarks
|
|
27559
|
-
* The
|
|
28347
|
+
* The interval at which the rule is triggered. Valid values:
|
|
27560
28348
|
*
|
|
27561
|
-
* * One_Hour
|
|
27562
|
-
* * Three_Hours
|
|
27563
|
-
* * Six_Hours
|
|
27564
|
-
* * Twelve_Hours
|
|
27565
|
-
* * TwentyFour_Hours
|
|
28349
|
+
* * One_Hour
|
|
28350
|
+
* * Three_Hours
|
|
28351
|
+
* * Six_Hours
|
|
28352
|
+
* * Twelve_Hours
|
|
28353
|
+
* * TwentyFour_Hours
|
|
27566
28354
|
*
|
|
27567
28355
|
* > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
|
|
27568
28356
|
*
|
|
@@ -27598,6 +28386,17 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27598
28386
|
* lb-5cmbowstbkss9ta03****
|
|
27599
28387
|
*/
|
|
27600
28388
|
resourceIdsScope?: string;
|
|
28389
|
+
/**
|
|
28390
|
+
* @remarks
|
|
28391
|
+
* The names of the resource to which the rule applies.
|
|
28392
|
+
*
|
|
28393
|
+
* @example
|
|
28394
|
+
* i-xxx
|
|
28395
|
+
*
|
|
28396
|
+
* **if can be null:**
|
|
28397
|
+
* true
|
|
28398
|
+
*/
|
|
28399
|
+
resourceNameScope?: string;
|
|
27601
28400
|
/**
|
|
27602
28401
|
* @remarks
|
|
27603
28402
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -27608,11 +28407,11 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27608
28407
|
resourceTypesScope?: string[];
|
|
27609
28408
|
/**
|
|
27610
28409
|
* @remarks
|
|
27611
|
-
* The risk level of the resources that
|
|
28410
|
+
* The risk level of the resources that do not comply with the rule. Valid values:
|
|
27612
28411
|
*
|
|
27613
|
-
* * 1: high
|
|
27614
|
-
* * 2: medium
|
|
27615
|
-
* * 3: low
|
|
28412
|
+
* * 1: high
|
|
28413
|
+
* * 2: medium
|
|
28414
|
+
* * 3: low
|
|
27616
28415
|
*
|
|
27617
28416
|
* @example
|
|
27618
28417
|
* 3
|
|
@@ -27627,10 +28426,15 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27627
28426
|
tag?: UpdateAggregateConfigRuleRequestTag[];
|
|
27628
28427
|
/**
|
|
27629
28428
|
* @remarks
|
|
27630
|
-
* The logical relationship
|
|
28429
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
28430
|
+
*
|
|
28431
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
27631
28432
|
*
|
|
27632
|
-
*
|
|
27633
|
-
*
|
|
28433
|
+
* Values:
|
|
28434
|
+
*
|
|
28435
|
+
* - AND: And.
|
|
28436
|
+
*
|
|
28437
|
+
* - OR: Or.
|
|
27634
28438
|
*
|
|
27635
28439
|
* @example
|
|
27636
28440
|
* AND
|
|
@@ -27638,22 +28442,30 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27638
28442
|
tagKeyLogicScope?: string;
|
|
27639
28443
|
/**
|
|
27640
28444
|
* @remarks
|
|
28445
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28446
|
+
*
|
|
27641
28447
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
27642
28448
|
*
|
|
27643
28449
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27644
28450
|
*
|
|
27645
28451
|
* @example
|
|
27646
28452
|
* ECS
|
|
28453
|
+
*
|
|
28454
|
+
* @deprecated
|
|
27647
28455
|
*/
|
|
27648
28456
|
tagKeyScope?: string;
|
|
27649
28457
|
/**
|
|
27650
28458
|
* @remarks
|
|
28459
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28460
|
+
*
|
|
27651
28461
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
27652
28462
|
*
|
|
27653
28463
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27654
28464
|
*
|
|
27655
28465
|
* @example
|
|
27656
28466
|
* test
|
|
28467
|
+
*
|
|
28468
|
+
* @deprecated
|
|
27657
28469
|
*/
|
|
27658
28470
|
tagValueScope?: string;
|
|
27659
28471
|
/**
|
|
@@ -27823,13 +28635,13 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27823
28635
|
inputParametersShrink?: string;
|
|
27824
28636
|
/**
|
|
27825
28637
|
* @remarks
|
|
27826
|
-
* The
|
|
28638
|
+
* The interval at which the rule is triggered. Valid values:
|
|
27827
28639
|
*
|
|
27828
|
-
* * One_Hour
|
|
27829
|
-
* * Three_Hours
|
|
27830
|
-
* * Six_Hours
|
|
27831
|
-
* * Twelve_Hours
|
|
27832
|
-
* * TwentyFour_Hours
|
|
28640
|
+
* * One_Hour
|
|
28641
|
+
* * Three_Hours
|
|
28642
|
+
* * Six_Hours
|
|
28643
|
+
* * Twelve_Hours
|
|
28644
|
+
* * TwentyFour_Hours
|
|
27833
28645
|
*
|
|
27834
28646
|
* > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
|
|
27835
28647
|
*
|
|
@@ -27865,6 +28677,17 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27865
28677
|
* lb-5cmbowstbkss9ta03****
|
|
27866
28678
|
*/
|
|
27867
28679
|
resourceIdsScope?: string;
|
|
28680
|
+
/**
|
|
28681
|
+
* @remarks
|
|
28682
|
+
* The names of the resource to which the rule applies.
|
|
28683
|
+
*
|
|
28684
|
+
* @example
|
|
28685
|
+
* i-xxx
|
|
28686
|
+
*
|
|
28687
|
+
* **if can be null:**
|
|
28688
|
+
* true
|
|
28689
|
+
*/
|
|
28690
|
+
resourceNameScope?: string;
|
|
27868
28691
|
/**
|
|
27869
28692
|
* @remarks
|
|
27870
28693
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -27875,11 +28698,11 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27875
28698
|
resourceTypesScopeShrink?: string;
|
|
27876
28699
|
/**
|
|
27877
28700
|
* @remarks
|
|
27878
|
-
* The risk level of the resources that
|
|
28701
|
+
* The risk level of the resources that do not comply with the rule. Valid values:
|
|
27879
28702
|
*
|
|
27880
|
-
* * 1: high
|
|
27881
|
-
* * 2: medium
|
|
27882
|
-
* * 3: low
|
|
28703
|
+
* * 1: high
|
|
28704
|
+
* * 2: medium
|
|
28705
|
+
* * 3: low
|
|
27883
28706
|
*
|
|
27884
28707
|
* @example
|
|
27885
28708
|
* 3
|
|
@@ -27894,10 +28717,15 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27894
28717
|
tagShrink?: string;
|
|
27895
28718
|
/**
|
|
27896
28719
|
* @remarks
|
|
27897
|
-
* The logical relationship
|
|
28720
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
28721
|
+
*
|
|
28722
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
28723
|
+
*
|
|
28724
|
+
* Values:
|
|
28725
|
+
*
|
|
28726
|
+
* - AND: And.
|
|
27898
28727
|
*
|
|
27899
|
-
*
|
|
27900
|
-
* * OR
|
|
28728
|
+
* - OR: Or.
|
|
27901
28729
|
*
|
|
27902
28730
|
* @example
|
|
27903
28731
|
* AND
|
|
@@ -27905,22 +28733,30 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27905
28733
|
tagKeyLogicScope?: string;
|
|
27906
28734
|
/**
|
|
27907
28735
|
* @remarks
|
|
28736
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28737
|
+
*
|
|
27908
28738
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
27909
28739
|
*
|
|
27910
28740
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27911
28741
|
*
|
|
27912
28742
|
* @example
|
|
27913
28743
|
* ECS
|
|
28744
|
+
*
|
|
28745
|
+
* @deprecated
|
|
27914
28746
|
*/
|
|
27915
28747
|
tagKeyScope?: string;
|
|
27916
28748
|
/**
|
|
27917
28749
|
* @remarks
|
|
28750
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28751
|
+
*
|
|
27918
28752
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
27919
28753
|
*
|
|
27920
28754
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27921
28755
|
*
|
|
27922
28756
|
* @example
|
|
27923
28757
|
* test
|
|
28758
|
+
*
|
|
28759
|
+
* @deprecated
|
|
27924
28760
|
*/
|
|
27925
28761
|
tagValueScope?: string;
|
|
27926
28762
|
/**
|
|
@@ -28170,6 +29006,20 @@ export declare class UpdateAggregatorRequest extends $dara.Model {
|
|
|
28170
29006
|
* Test_Aggregator_Description
|
|
28171
29007
|
*/
|
|
28172
29008
|
description?: string;
|
|
29009
|
+
/**
|
|
29010
|
+
* @remarks
|
|
29011
|
+
* The folder ID. Separate multiple folder IDs with commas (,).
|
|
29012
|
+
*
|
|
29013
|
+
* @example
|
|
29014
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
29015
|
+
*/
|
|
29016
|
+
folderId?: string;
|
|
29017
|
+
/**
|
|
29018
|
+
* @remarks
|
|
29019
|
+
* The tags of the resource.
|
|
29020
|
+
*
|
|
29021
|
+
* You can add up to 20 tags to a resource.
|
|
29022
|
+
*/
|
|
28173
29023
|
tag?: UpdateAggregatorRequestTag[];
|
|
28174
29024
|
static names(): {
|
|
28175
29025
|
[key: string]: string;
|
|
@@ -28233,6 +29083,20 @@ export declare class UpdateAggregatorShrinkRequest extends $dara.Model {
|
|
|
28233
29083
|
* Test_Aggregator_Description
|
|
28234
29084
|
*/
|
|
28235
29085
|
description?: string;
|
|
29086
|
+
/**
|
|
29087
|
+
* @remarks
|
|
29088
|
+
* The folder ID. Separate multiple folder IDs with commas (,).
|
|
29089
|
+
*
|
|
29090
|
+
* @example
|
|
29091
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
29092
|
+
*/
|
|
29093
|
+
folderId?: string;
|
|
29094
|
+
/**
|
|
29095
|
+
* @remarks
|
|
29096
|
+
* The tags of the resource.
|
|
29097
|
+
*
|
|
29098
|
+
* You can add up to 20 tags to a resource.
|
|
29099
|
+
*/
|
|
28236
29100
|
tagShrink?: string;
|
|
28237
29101
|
static names(): {
|
|
28238
29102
|
[key: string]: string;
|
|
@@ -28401,6 +29265,12 @@ export declare class UpdateCompliancePackRequest extends $dara.Model {
|
|
|
28401
29265
|
* 1
|
|
28402
29266
|
*/
|
|
28403
29267
|
riskLevel?: number;
|
|
29268
|
+
/**
|
|
29269
|
+
* @remarks
|
|
29270
|
+
* The tags of the resource.
|
|
29271
|
+
*
|
|
29272
|
+
* You can add up to 20 tags to a resource.
|
|
29273
|
+
*/
|
|
28404
29274
|
tag?: UpdateCompliancePackRequestTag[];
|
|
28405
29275
|
/**
|
|
28406
29276
|
* @remarks
|
|
@@ -28547,6 +29417,12 @@ export declare class UpdateCompliancePackShrinkRequest extends $dara.Model {
|
|
|
28547
29417
|
* 1
|
|
28548
29418
|
*/
|
|
28549
29419
|
riskLevel?: number;
|
|
29420
|
+
/**
|
|
29421
|
+
* @remarks
|
|
29422
|
+
* The tags of the resource.
|
|
29423
|
+
*
|
|
29424
|
+
* You can add up to 20 tags to a resource.
|
|
29425
|
+
*/
|
|
28550
29426
|
tagShrink?: string;
|
|
28551
29427
|
/**
|
|
28552
29428
|
* @remarks
|
|
@@ -29003,6 +29879,17 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
29003
29879
|
* lb-5cmbowstbkss9ta03****
|
|
29004
29880
|
*/
|
|
29005
29881
|
resourceIdsScope?: string;
|
|
29882
|
+
/**
|
|
29883
|
+
* @remarks
|
|
29884
|
+
* The names of the resource to which the rule applies.
|
|
29885
|
+
*
|
|
29886
|
+
* @example
|
|
29887
|
+
* i-xxx
|
|
29888
|
+
*
|
|
29889
|
+
* **if can be null:**
|
|
29890
|
+
* true
|
|
29891
|
+
*/
|
|
29892
|
+
resourceNameScope?: string;
|
|
29006
29893
|
/**
|
|
29007
29894
|
* @remarks
|
|
29008
29895
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -29032,10 +29919,15 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
29032
29919
|
tag?: UpdateConfigRuleRequestTag[];
|
|
29033
29920
|
/**
|
|
29034
29921
|
* @remarks
|
|
29035
|
-
* The logical relationship
|
|
29922
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
29923
|
+
*
|
|
29924
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
29925
|
+
*
|
|
29926
|
+
* Values:
|
|
29036
29927
|
*
|
|
29037
|
-
*
|
|
29038
|
-
*
|
|
29928
|
+
* - AND: And.
|
|
29929
|
+
*
|
|
29930
|
+
* - OR: Or.
|
|
29039
29931
|
*
|
|
29040
29932
|
* @example
|
|
29041
29933
|
* AND
|
|
@@ -29043,22 +29935,30 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
29043
29935
|
tagKeyLogicScope?: string;
|
|
29044
29936
|
/**
|
|
29045
29937
|
* @remarks
|
|
29938
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
29939
|
+
*
|
|
29046
29940
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
29047
29941
|
*
|
|
29048
29942
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
29049
29943
|
*
|
|
29050
29944
|
* @example
|
|
29051
29945
|
* ECS
|
|
29946
|
+
*
|
|
29947
|
+
* @deprecated
|
|
29052
29948
|
*/
|
|
29053
29949
|
tagKeyScope?: string;
|
|
29054
29950
|
/**
|
|
29055
29951
|
* @remarks
|
|
29952
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
29953
|
+
*
|
|
29056
29954
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
29057
29955
|
*
|
|
29058
29956
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
29059
29957
|
*
|
|
29060
29958
|
* @example
|
|
29061
29959
|
* test
|
|
29960
|
+
*
|
|
29961
|
+
* @deprecated
|
|
29062
29962
|
*/
|
|
29063
29963
|
tagValueScope?: string;
|
|
29064
29964
|
/**
|
|
@@ -29223,6 +30123,17 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
29223
30123
|
* lb-5cmbowstbkss9ta03****
|
|
29224
30124
|
*/
|
|
29225
30125
|
resourceIdsScope?: string;
|
|
30126
|
+
/**
|
|
30127
|
+
* @remarks
|
|
30128
|
+
* The names of the resource to which the rule applies.
|
|
30129
|
+
*
|
|
30130
|
+
* @example
|
|
30131
|
+
* i-xxx
|
|
30132
|
+
*
|
|
30133
|
+
* **if can be null:**
|
|
30134
|
+
* true
|
|
30135
|
+
*/
|
|
30136
|
+
resourceNameScope?: string;
|
|
29226
30137
|
/**
|
|
29227
30138
|
* @remarks
|
|
29228
30139
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -29252,10 +30163,15 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
29252
30163
|
tagShrink?: string;
|
|
29253
30164
|
/**
|
|
29254
30165
|
* @remarks
|
|
29255
|
-
* The logical relationship
|
|
30166
|
+
* The logical relationship when parameter `TagsScope` takes multiple values, for example: When the parameter `TagsScope` is `"TagsScope.1.TagKey":"a", "TagsScope.1.TagValue":"a", "TagsScope.2.TagKey":"b", "TagsScope.2.TagValue":"b"`, if this parameter is set to` AND`, it means that the rule only applies to resources bound with both tags `a:a` and `b:b`. If not specified, the default logic is `OR`.
|
|
30167
|
+
*
|
|
30168
|
+
* It can also be used for the deprecated field `TagKeyScope` (not recommended), for example: When the parameter `TagKeyScope` has a value of `ECS`,`OSS`, if this parameter is set to `AND`, it means that the rule only applies to resources bound with both labels `ECS` and `OSS`.
|
|
29256
30169
|
*
|
|
29257
|
-
*
|
|
29258
|
-
*
|
|
30170
|
+
* Values:
|
|
30171
|
+
*
|
|
30172
|
+
* - AND: And.
|
|
30173
|
+
*
|
|
30174
|
+
* - OR: Or.
|
|
29259
30175
|
*
|
|
29260
30176
|
* @example
|
|
29261
30177
|
* AND
|
|
@@ -29263,22 +30179,30 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
29263
30179
|
tagKeyLogicScope?: string;
|
|
29264
30180
|
/**
|
|
29265
30181
|
* @remarks
|
|
30182
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
30183
|
+
*
|
|
29266
30184
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
29267
30185
|
*
|
|
29268
30186
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
29269
30187
|
*
|
|
29270
30188
|
* @example
|
|
29271
30189
|
* ECS
|
|
30190
|
+
*
|
|
30191
|
+
* @deprecated
|
|
29272
30192
|
*/
|
|
29273
30193
|
tagKeyScope?: string;
|
|
29274
30194
|
/**
|
|
29275
30195
|
* @remarks
|
|
30196
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
30197
|
+
*
|
|
29276
30198
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
29277
30199
|
*
|
|
29278
30200
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
29279
30201
|
*
|
|
29280
30202
|
* @example
|
|
29281
30203
|
* test
|
|
30204
|
+
*
|
|
30205
|
+
* @deprecated
|
|
29282
30206
|
*/
|
|
29283
30207
|
tagValueScope?: string;
|
|
29284
30208
|
/**
|