@alicloud/config20200907 3.0.11 → 3.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +801 -83
- package/dist/client.js +44 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +851 -83
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 groups 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,29 +3694,41 @@ export declare class GetAggregateConfigRuleResponseBodyConfigRule extends $dara.
|
|
|
3563
3694
|
source?: GetAggregateConfigRuleResponseBodyConfigRuleSource;
|
|
3564
3695
|
/**
|
|
3565
3696
|
* @remarks
|
|
3566
|
-
*
|
|
3697
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3567
3698
|
*
|
|
3568
|
-
*
|
|
3569
|
-
*
|
|
3699
|
+
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
3700
|
+
*
|
|
3701
|
+
* * AND
|
|
3702
|
+
* * OR
|
|
3570
3703
|
*
|
|
3571
3704
|
* @example
|
|
3572
3705
|
* AND
|
|
3706
|
+
*
|
|
3707
|
+
* @deprecated
|
|
3573
3708
|
*/
|
|
3574
3709
|
tagKeyLogicScope?: string;
|
|
3575
3710
|
/**
|
|
3576
3711
|
* @remarks
|
|
3712
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3713
|
+
*
|
|
3577
3714
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
3578
3715
|
*
|
|
3579
3716
|
* @example
|
|
3580
3717
|
* RAM
|
|
3718
|
+
*
|
|
3719
|
+
* @deprecated
|
|
3581
3720
|
*/
|
|
3582
3721
|
tagKeyScope?: string;
|
|
3583
3722
|
/**
|
|
3584
3723
|
* @remarks
|
|
3724
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
3725
|
+
*
|
|
3585
3726
|
* The tag value used to filter resources. The rule applies only to the resources with the specified tag value.
|
|
3586
3727
|
*
|
|
3587
3728
|
* @example
|
|
3588
3729
|
* MFA
|
|
3730
|
+
*
|
|
3731
|
+
* @deprecated
|
|
3589
3732
|
*/
|
|
3590
3733
|
tagValueScope?: string;
|
|
3591
3734
|
/**
|
|
@@ -3768,8 +3911,8 @@ export declare class GetAggregateConfigRulesReportResponseBodyConfigRulesReport
|
|
|
3768
3911
|
* @remarks
|
|
3769
3912
|
* The status of the compliance evaluation report. Valid values:
|
|
3770
3913
|
*
|
|
3771
|
-
* * NONE: The compliance evaluation report
|
|
3772
|
-
* * CREATING: The compliance evaluation report
|
|
3914
|
+
* * NONE: The compliance evaluation report is not generated.
|
|
3915
|
+
* * CREATING: The compliance evaluation report is being generated.
|
|
3773
3916
|
* * COMPLETE: The compliance evaluation report was generated.
|
|
3774
3917
|
*
|
|
3775
3918
|
* @example
|
|
@@ -3778,7 +3921,7 @@ export declare class GetAggregateConfigRulesReportResponseBodyConfigRulesReport
|
|
|
3778
3921
|
reportStatus?: string;
|
|
3779
3922
|
/**
|
|
3780
3923
|
* @remarks
|
|
3781
|
-
* The URL
|
|
3924
|
+
* The URL used to download the compliance evaluation report.
|
|
3782
3925
|
*/
|
|
3783
3926
|
reportUrl?: string;
|
|
3784
3927
|
static names(): {
|
|
@@ -4588,7 +4731,29 @@ export declare class GetAggregateResourceInventoryResponseBodyResourceInventory
|
|
|
4588
4731
|
});
|
|
4589
4732
|
}
|
|
4590
4733
|
export declare class GetAggregatorRequestTag extends $dara.Model {
|
|
4734
|
+
/**
|
|
4735
|
+
* @remarks
|
|
4736
|
+
* The tag key.
|
|
4737
|
+
*
|
|
4738
|
+
* The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
4739
|
+
*
|
|
4740
|
+
* You can specify at most 20 tag keys.
|
|
4741
|
+
*
|
|
4742
|
+
* @example
|
|
4743
|
+
* key-1
|
|
4744
|
+
*/
|
|
4591
4745
|
key?: string;
|
|
4746
|
+
/**
|
|
4747
|
+
* @remarks
|
|
4748
|
+
* The tag values.
|
|
4749
|
+
*
|
|
4750
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
4751
|
+
*
|
|
4752
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
4753
|
+
*
|
|
4754
|
+
* @example
|
|
4755
|
+
* value-1
|
|
4756
|
+
*/
|
|
4592
4757
|
value?: string;
|
|
4593
4758
|
static names(): {
|
|
4594
4759
|
[key: string]: string;
|
|
@@ -4654,7 +4819,21 @@ export declare class GetAggregatorResponseBodyAggregatorAggregatorAccounts exten
|
|
|
4654
4819
|
});
|
|
4655
4820
|
}
|
|
4656
4821
|
export declare class GetAggregatorResponseBodyAggregatorTags extends $dara.Model {
|
|
4822
|
+
/**
|
|
4823
|
+
* @remarks
|
|
4824
|
+
* The tag key.
|
|
4825
|
+
*
|
|
4826
|
+
* @example
|
|
4827
|
+
* key-1
|
|
4828
|
+
*/
|
|
4657
4829
|
tagKey?: string;
|
|
4830
|
+
/**
|
|
4831
|
+
* @remarks
|
|
4832
|
+
* The tag value.
|
|
4833
|
+
*
|
|
4834
|
+
* @example
|
|
4835
|
+
* value-1
|
|
4836
|
+
*/
|
|
4658
4837
|
tagValue?: string;
|
|
4659
4838
|
static names(): {
|
|
4660
4839
|
[key: string]: string;
|
|
@@ -4754,6 +4933,10 @@ export declare class GetAggregatorResponseBodyAggregator extends $dara.Model {
|
|
|
4754
4933
|
* fd-brHdgv****
|
|
4755
4934
|
*/
|
|
4756
4935
|
folderId?: string;
|
|
4936
|
+
/**
|
|
4937
|
+
* @remarks
|
|
4938
|
+
* tags
|
|
4939
|
+
*/
|
|
4757
4940
|
tags?: GetAggregatorResponseBodyAggregatorTags[];
|
|
4758
4941
|
static names(): {
|
|
4759
4942
|
[key: string]: string;
|
|
@@ -4767,7 +4950,25 @@ export declare class GetAggregatorResponseBodyAggregator extends $dara.Model {
|
|
|
4767
4950
|
});
|
|
4768
4951
|
}
|
|
4769
4952
|
export declare class GetCompliancePackRequestTag extends $dara.Model {
|
|
4953
|
+
/**
|
|
4954
|
+
* @remarks
|
|
4955
|
+
* The tag key.
|
|
4956
|
+
*
|
|
4957
|
+
* The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
4958
|
+
*
|
|
4959
|
+
* You can specify at most 20 tag keys.
|
|
4960
|
+
*
|
|
4961
|
+
* @example
|
|
4962
|
+
* key-1
|
|
4963
|
+
*/
|
|
4770
4964
|
key?: string;
|
|
4965
|
+
/**
|
|
4966
|
+
* @remarks
|
|
4967
|
+
* The tag value. The tag value can be up to 256 characters in length and cannot contain `http://` or `https://`.
|
|
4968
|
+
*
|
|
4969
|
+
* @example
|
|
4970
|
+
* value-1
|
|
4971
|
+
*/
|
|
4771
4972
|
value?: string;
|
|
4772
4973
|
static names(): {
|
|
4773
4974
|
[key: string]: string;
|
|
@@ -4891,7 +5092,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackConfigRules exte
|
|
|
4891
5092
|
export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope extends $dara.Model {
|
|
4892
5093
|
/**
|
|
4893
5094
|
* @remarks
|
|
4894
|
-
* The tag
|
|
5095
|
+
* The key of the tag.
|
|
4895
5096
|
*
|
|
4896
5097
|
* @example
|
|
4897
5098
|
* key-2
|
|
@@ -4899,7 +5100,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTags
|
|
|
4899
5100
|
tagKey?: string;
|
|
4900
5101
|
/**
|
|
4901
5102
|
* @remarks
|
|
4902
|
-
* The tag
|
|
5103
|
+
* The value of the tag.
|
|
4903
5104
|
*
|
|
4904
5105
|
* @example
|
|
4905
5106
|
* value-2
|
|
@@ -4919,7 +5120,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeExcludeTags
|
|
|
4919
5120
|
export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $dara.Model {
|
|
4920
5121
|
/**
|
|
4921
5122
|
* @remarks
|
|
4922
|
-
* The tag
|
|
5123
|
+
* The key of the tag.
|
|
4923
5124
|
*
|
|
4924
5125
|
* @example
|
|
4925
5126
|
* key-1
|
|
@@ -4927,7 +5128,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope e
|
|
|
4927
5128
|
tagKey?: string;
|
|
4928
5129
|
/**
|
|
4929
5130
|
* @remarks
|
|
4930
|
-
* The tag
|
|
5131
|
+
* The value of the tag.
|
|
4931
5132
|
*
|
|
4932
5133
|
* @example
|
|
4933
5134
|
* value-1
|
|
@@ -4947,7 +5148,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScopeTagsScope e
|
|
|
4947
5148
|
export declare class GetCompliancePackResponseBodyCompliancePackScope extends $dara.Model {
|
|
4948
5149
|
/**
|
|
4949
5150
|
* @remarks
|
|
4950
|
-
*
|
|
5151
|
+
* The IDs of regions that are excluded. Separate multiple region IDs with commas (,).
|
|
4951
5152
|
*
|
|
4952
5153
|
* @example
|
|
4953
5154
|
* cn-hangzhou
|
|
@@ -4955,7 +5156,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4955
5156
|
excludeRegionIdsScope?: string;
|
|
4956
5157
|
/**
|
|
4957
5158
|
* @remarks
|
|
4958
|
-
*
|
|
5159
|
+
* The IDs of the resource groups whose resources you do not want to evaluate by using the compliance package. Separate multiple resource group IDs with commas (,).
|
|
4959
5160
|
*
|
|
4960
5161
|
* @example
|
|
4961
5162
|
* rg-aekzc7r7rhx****
|
|
@@ -4971,7 +5172,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4971
5172
|
excludeResourceIdsScope?: string;
|
|
4972
5173
|
/**
|
|
4973
5174
|
* @remarks
|
|
4974
|
-
*
|
|
5175
|
+
* The scope of the tag that is excluded.
|
|
4975
5176
|
*
|
|
4976
5177
|
* This parameter is required.
|
|
4977
5178
|
*/
|
|
@@ -4994,7 +5195,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
4994
5195
|
resourceGroupIdsScope?: string;
|
|
4995
5196
|
/**
|
|
4996
5197
|
* @remarks
|
|
4997
|
-
*
|
|
5198
|
+
* The IDs of the resources to which the rule applies. Separate multiple resource IDs with commas (,).
|
|
4998
5199
|
*
|
|
4999
5200
|
* @example
|
|
5000
5201
|
* eip-8vbf3x310fn56ijfd****
|
|
@@ -5018,7 +5219,7 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
5018
5219
|
tagValueScope?: string;
|
|
5019
5220
|
/**
|
|
5020
5221
|
* @remarks
|
|
5021
|
-
*
|
|
5222
|
+
* The tag scope.
|
|
5022
5223
|
*
|
|
5023
5224
|
* This parameter is required.
|
|
5024
5225
|
*/
|
|
@@ -5035,7 +5236,21 @@ export declare class GetCompliancePackResponseBodyCompliancePackScope extends $d
|
|
|
5035
5236
|
});
|
|
5036
5237
|
}
|
|
5037
5238
|
export declare class GetCompliancePackResponseBodyCompliancePackTags extends $dara.Model {
|
|
5239
|
+
/**
|
|
5240
|
+
* @remarks
|
|
5241
|
+
* The tag keys of the resource.
|
|
5242
|
+
*
|
|
5243
|
+
* @example
|
|
5244
|
+
* key-1
|
|
5245
|
+
*/
|
|
5038
5246
|
tagKey?: string;
|
|
5247
|
+
/**
|
|
5248
|
+
* @remarks
|
|
5249
|
+
* The tag values of the resource.
|
|
5250
|
+
*
|
|
5251
|
+
* @example
|
|
5252
|
+
* value-1
|
|
5253
|
+
*/
|
|
5039
5254
|
tagValue?: string;
|
|
5040
5255
|
static names(): {
|
|
5041
5256
|
[key: string]: string;
|
|
@@ -5130,6 +5345,10 @@ export declare class GetCompliancePackResponseBodyCompliancePack extends $dara.M
|
|
|
5130
5345
|
* ACTIVE
|
|
5131
5346
|
*/
|
|
5132
5347
|
status?: string;
|
|
5348
|
+
/**
|
|
5349
|
+
* @remarks
|
|
5350
|
+
* The list of tags.
|
|
5351
|
+
*/
|
|
5133
5352
|
tags?: GetCompliancePackResponseBodyCompliancePackTags[];
|
|
5134
5353
|
/**
|
|
5135
5354
|
* @remarks
|
|
@@ -5137,35 +5356,55 @@ export declare class GetCompliancePackResponseBodyCompliancePack extends $dara.M
|
|
|
5137
5356
|
*
|
|
5138
5357
|
* @example
|
|
5139
5358
|
* {
|
|
5140
|
-
*
|
|
5359
|
+
* "configRuleTemplates": [
|
|
5141
5360
|
* {
|
|
5142
|
-
*
|
|
5143
|
-
*
|
|
5144
|
-
*
|
|
5145
|
-
*
|
|
5146
|
-
*
|
|
5147
|
-
*
|
|
5148
|
-
*
|
|
5149
|
-
*
|
|
5150
|
-
*
|
|
5151
|
-
*
|
|
5152
|
-
*
|
|
5153
|
-
*
|
|
5154
|
-
*
|
|
5155
|
-
*
|
|
5156
|
-
*
|
|
5157
|
-
*
|
|
5158
|
-
*
|
|
5159
|
-
*
|
|
5160
|
-
*
|
|
5361
|
+
* "configRuleName": "rule-example",
|
|
5362
|
+
* "scope": {
|
|
5363
|
+
* "complianceResourceTypes": [
|
|
5364
|
+
* "ACS::ECS::Instance"
|
|
5365
|
+
* ]
|
|
5366
|
+
* },
|
|
5367
|
+
* "description": "",
|
|
5368
|
+
* "source": {
|
|
5369
|
+
* "owner": "CUSTOM_CONFIGURATION",
|
|
5370
|
+
* "identifier": "acs-config-configuration",
|
|
5371
|
+
* "sourceDetails": [
|
|
5372
|
+
* {
|
|
5373
|
+
* "messageType": "ScheduledNotification",
|
|
5374
|
+
* "maximumExecutionFrequency": "Twelve_Hours"
|
|
5375
|
+
* },
|
|
5376
|
+
* {
|
|
5377
|
+
* "messageType": "ConfigurationItemChangeNotification"
|
|
5378
|
+
* }
|
|
5379
|
+
* ],
|
|
5380
|
+
* "conditions": "{\\"ComplianceConditions\\":\\"{\\\\\\"operator\\\\\\":\\\\\\"and\\\\\\",\\\\\\"children\\\\\\":[{\\\\\\"operator\\\\\\":\\\\\\"GreaterOrEquals\\\\\\",\\\\\\"featurePath\\\\\\":\\\\\\"$.Cpu\\\\\\",\\\\\\"featureSource\\\\\\":\\\\\\"CONFIGURATION\\\\\\",\\\\\\"desired\\\\\\":\\\\\\"2\\\\\\"}]}\\"}"
|
|
5381
|
+
* },
|
|
5382
|
+
* "inputParameters": {}
|
|
5383
|
+
* },
|
|
5384
|
+
* {
|
|
5385
|
+
* "configRuleName": "name",
|
|
5386
|
+
* "scope": {
|
|
5387
|
+
* "complianceResourceTypes": [
|
|
5388
|
+
* "ACS::OSS::Bucket"
|
|
5389
|
+
* ]
|
|
5390
|
+
* },
|
|
5391
|
+
* "description": "description-1",
|
|
5392
|
+
* "source": {
|
|
5393
|
+
* "owner": "ALIYUN",
|
|
5394
|
+
* "identifier": "oss-bucket-referer-limit",
|
|
5395
|
+
* "sourceDetails": [
|
|
5396
|
+
* {
|
|
5397
|
+
* "messageType": "ConfigurationItemChangeNotification"
|
|
5398
|
+
* }
|
|
5399
|
+
* ]
|
|
5400
|
+
* },
|
|
5401
|
+
* "inputParameters": {
|
|
5402
|
+
* "allowEmptyReferer": "true",
|
|
5403
|
+
* "allowReferers": "http://www.aliyun.com"
|
|
5404
|
+
* }
|
|
5161
5405
|
* }
|
|
5162
|
-
*
|
|
5163
|
-
*
|
|
5164
|
-
* "riskLevel": 2,
|
|
5165
|
-
* "compliancePackName": "gy-test",
|
|
5166
|
-
* "description": ""
|
|
5167
|
-
* }
|
|
5168
|
-
* }
|
|
5406
|
+
* ]
|
|
5407
|
+
* }
|
|
5169
5408
|
*/
|
|
5170
5409
|
templateContent?: string;
|
|
5171
5410
|
static names(): {
|
|
@@ -6197,6 +6436,11 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6197
6436
|
* eip-8vbf3x310fn56ijfd****
|
|
6198
6437
|
*/
|
|
6199
6438
|
resourceIdsScope?: string;
|
|
6439
|
+
/**
|
|
6440
|
+
* **if can be null:**
|
|
6441
|
+
* true
|
|
6442
|
+
*/
|
|
6443
|
+
resourceNameScope?: string;
|
|
6200
6444
|
/**
|
|
6201
6445
|
* @remarks
|
|
6202
6446
|
* The type of the resource to be evaluated by the rule.
|
|
@@ -6235,6 +6479,8 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6235
6479
|
*
|
|
6236
6480
|
* @example
|
|
6237
6481
|
* 120886317861****
|
|
6482
|
+
*
|
|
6483
|
+
* @deprecated
|
|
6238
6484
|
*/
|
|
6239
6485
|
tagKeyLogicScope?: string;
|
|
6240
6486
|
/**
|
|
@@ -6245,6 +6491,8 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6245
6491
|
*
|
|
6246
6492
|
* @example
|
|
6247
6493
|
* RAM
|
|
6494
|
+
*
|
|
6495
|
+
* @deprecated
|
|
6248
6496
|
*/
|
|
6249
6497
|
tagKeyScope?: string;
|
|
6250
6498
|
/**
|
|
@@ -6255,6 +6503,8 @@ export declare class GetConfigRuleResponseBodyConfigRule extends $dara.Model {
|
|
|
6255
6503
|
*
|
|
6256
6504
|
* @example
|
|
6257
6505
|
* MFA
|
|
6506
|
+
*
|
|
6507
|
+
* @deprecated
|
|
6258
6508
|
*/
|
|
6259
6509
|
tagValueScope?: string;
|
|
6260
6510
|
/**
|
|
@@ -7624,7 +7874,27 @@ export declare class IgnoreEvaluationResultsRequestResources extends $dara.Model
|
|
|
7624
7874
|
});
|
|
7625
7875
|
}
|
|
7626
7876
|
export declare class ListAggregateCompliancePacksRequestTag extends $dara.Model {
|
|
7877
|
+
/**
|
|
7878
|
+
* @remarks
|
|
7879
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
7880
|
+
*
|
|
7881
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
7882
|
+
*
|
|
7883
|
+
* @example
|
|
7884
|
+
* key-1
|
|
7885
|
+
*/
|
|
7627
7886
|
key?: string;
|
|
7887
|
+
/**
|
|
7888
|
+
* @remarks
|
|
7889
|
+
* The tag values.
|
|
7890
|
+
*
|
|
7891
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
7892
|
+
*
|
|
7893
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
7894
|
+
*
|
|
7895
|
+
* @example
|
|
7896
|
+
* value-1
|
|
7897
|
+
*/
|
|
7628
7898
|
value?: string;
|
|
7629
7899
|
static names(): {
|
|
7630
7900
|
[key: string]: string;
|
|
@@ -7638,7 +7908,21 @@ export declare class ListAggregateCompliancePacksRequestTag extends $dara.Model
|
|
|
7638
7908
|
});
|
|
7639
7909
|
}
|
|
7640
7910
|
export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
|
|
7911
|
+
/**
|
|
7912
|
+
* @remarks
|
|
7913
|
+
* The tag key.
|
|
7914
|
+
*
|
|
7915
|
+
* @example
|
|
7916
|
+
* key-1
|
|
7917
|
+
*/
|
|
7641
7918
|
tagKey?: string;
|
|
7919
|
+
/**
|
|
7920
|
+
* @remarks
|
|
7921
|
+
* The tag value.
|
|
7922
|
+
*
|
|
7923
|
+
* @example
|
|
7924
|
+
* value-1
|
|
7925
|
+
*/
|
|
7642
7926
|
tagValue?: string;
|
|
7643
7927
|
static names(): {
|
|
7644
7928
|
[key: string]: string;
|
|
@@ -7731,6 +8015,10 @@ export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResu
|
|
|
7731
8015
|
* ACTIVE
|
|
7732
8016
|
*/
|
|
7733
8017
|
status?: string;
|
|
8018
|
+
/**
|
|
8019
|
+
* @remarks
|
|
8020
|
+
* The tags.
|
|
8021
|
+
*/
|
|
7734
8022
|
tags?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
|
|
7735
8023
|
static names(): {
|
|
7736
8024
|
[key: string]: string;
|
|
@@ -7746,7 +8034,7 @@ export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResu
|
|
|
7746
8034
|
export declare class ListAggregateCompliancePacksResponseBodyCompliancePacksResult extends $dara.Model {
|
|
7747
8035
|
/**
|
|
7748
8036
|
* @remarks
|
|
7749
|
-
* The
|
|
8037
|
+
* The compliance packages.
|
|
7750
8038
|
*/
|
|
7751
8039
|
compliancePacks?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacks[];
|
|
7752
8040
|
/**
|
|
@@ -8277,7 +8565,27 @@ export declare class ListAggregateConfigRuleEvaluationStatisticsResponseBodyEval
|
|
|
8277
8565
|
});
|
|
8278
8566
|
}
|
|
8279
8567
|
export declare class ListAggregateConfigRulesRequestTag extends $dara.Model {
|
|
8568
|
+
/**
|
|
8569
|
+
* @remarks
|
|
8570
|
+
* The tag key.
|
|
8571
|
+
*
|
|
8572
|
+
* The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
8573
|
+
*
|
|
8574
|
+
* You can specify at most 20 tag keys.
|
|
8575
|
+
*
|
|
8576
|
+
* @example
|
|
8577
|
+
* key-1
|
|
8578
|
+
*/
|
|
8280
8579
|
key?: string;
|
|
8580
|
+
/**
|
|
8581
|
+
* @remarks
|
|
8582
|
+
* The value of the tag. You can specify up to 20 tag values. The tag value can be an empty string.
|
|
8583
|
+
*
|
|
8584
|
+
* The tag value can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. The tag value cannot contain `http://` or `https://`.
|
|
8585
|
+
*
|
|
8586
|
+
* @example
|
|
8587
|
+
* value-1
|
|
8588
|
+
*/
|
|
8281
8589
|
value?: string;
|
|
8282
8590
|
static names(): {
|
|
8283
8591
|
[key: string]: string;
|
|
@@ -9340,7 +9648,27 @@ export declare class ListAggregateResourcesByAdvancedSearchResponseBodyQueryResu
|
|
|
9340
9648
|
});
|
|
9341
9649
|
}
|
|
9342
9650
|
export declare class ListAggregatorsRequestTag extends $dara.Model {
|
|
9651
|
+
/**
|
|
9652
|
+
* @remarks
|
|
9653
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
9654
|
+
*
|
|
9655
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
9656
|
+
*
|
|
9657
|
+
* @example
|
|
9658
|
+
* key-1
|
|
9659
|
+
*/
|
|
9343
9660
|
key?: string;
|
|
9661
|
+
/**
|
|
9662
|
+
* @remarks
|
|
9663
|
+
* The tag values.
|
|
9664
|
+
*
|
|
9665
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
9666
|
+
*
|
|
9667
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
9668
|
+
*
|
|
9669
|
+
* @example
|
|
9670
|
+
* value-1
|
|
9671
|
+
*/
|
|
9344
9672
|
value?: string;
|
|
9345
9673
|
static names(): {
|
|
9346
9674
|
[key: string]: string;
|
|
@@ -9354,7 +9682,21 @@ export declare class ListAggregatorsRequestTag extends $dara.Model {
|
|
|
9354
9682
|
});
|
|
9355
9683
|
}
|
|
9356
9684
|
export declare class ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags extends $dara.Model {
|
|
9685
|
+
/**
|
|
9686
|
+
* @remarks
|
|
9687
|
+
* The tag keys of the resource.
|
|
9688
|
+
*
|
|
9689
|
+
* @example
|
|
9690
|
+
* key-1
|
|
9691
|
+
*/
|
|
9357
9692
|
tagKey?: string;
|
|
9693
|
+
/**
|
|
9694
|
+
* @remarks
|
|
9695
|
+
* The tag values of the resource.
|
|
9696
|
+
*
|
|
9697
|
+
* @example
|
|
9698
|
+
* value-1
|
|
9699
|
+
*/
|
|
9358
9700
|
tagValue?: string;
|
|
9359
9701
|
static names(): {
|
|
9360
9702
|
[key: string]: string;
|
|
@@ -9447,6 +9789,10 @@ export declare class ListAggregatorsResponseBodyAggregatorsResultAggregators ext
|
|
|
9447
9789
|
* r-BU****
|
|
9448
9790
|
*/
|
|
9449
9791
|
folderId?: string;
|
|
9792
|
+
/**
|
|
9793
|
+
* @remarks
|
|
9794
|
+
* tags
|
|
9795
|
+
*/
|
|
9450
9796
|
tags?: ListAggregatorsResponseBodyAggregatorsResultAggregatorsTags[];
|
|
9451
9797
|
static names(): {
|
|
9452
9798
|
[key: string]: string;
|
|
@@ -9724,7 +10070,27 @@ export declare class ListCompliancePackTemplatesResponseBodyCompliancePackTempla
|
|
|
9724
10070
|
});
|
|
9725
10071
|
}
|
|
9726
10072
|
export declare class ListCompliancePacksRequestTag extends $dara.Model {
|
|
10073
|
+
/**
|
|
10074
|
+
* @remarks
|
|
10075
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
10076
|
+
*
|
|
10077
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
10078
|
+
*
|
|
10079
|
+
* @example
|
|
10080
|
+
* key-1
|
|
10081
|
+
*/
|
|
9727
10082
|
key?: string;
|
|
10083
|
+
/**
|
|
10084
|
+
* @remarks
|
|
10085
|
+
* The tag values.
|
|
10086
|
+
*
|
|
10087
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
10088
|
+
*
|
|
10089
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
10090
|
+
*
|
|
10091
|
+
* @example
|
|
10092
|
+
* value-1
|
|
10093
|
+
*/
|
|
9728
10094
|
value?: string;
|
|
9729
10095
|
static names(): {
|
|
9730
10096
|
[key: string]: string;
|
|
@@ -9738,7 +10104,21 @@ export declare class ListCompliancePacksRequestTag extends $dara.Model {
|
|
|
9738
10104
|
});
|
|
9739
10105
|
}
|
|
9740
10106
|
export declare class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags extends $dara.Model {
|
|
10107
|
+
/**
|
|
10108
|
+
* @remarks
|
|
10109
|
+
* tag key
|
|
10110
|
+
*
|
|
10111
|
+
* @example
|
|
10112
|
+
* key-1
|
|
10113
|
+
*/
|
|
9741
10114
|
tagKey?: string;
|
|
10115
|
+
/**
|
|
10116
|
+
* @remarks
|
|
10117
|
+
* tag value
|
|
10118
|
+
*
|
|
10119
|
+
* @example
|
|
10120
|
+
* value-1
|
|
10121
|
+
*/
|
|
9742
10122
|
tagValue?: string;
|
|
9743
10123
|
static names(): {
|
|
9744
10124
|
[key: string]: string;
|
|
@@ -9823,6 +10203,10 @@ export declare class ListCompliancePacksResponseBodyCompliancePacksResultComplia
|
|
|
9823
10203
|
* ACTIVE
|
|
9824
10204
|
*/
|
|
9825
10205
|
status?: string;
|
|
10206
|
+
/**
|
|
10207
|
+
* @remarks
|
|
10208
|
+
* The tags.
|
|
10209
|
+
*/
|
|
9826
10210
|
tags?: ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacksTags[];
|
|
9827
10211
|
static names(): {
|
|
9828
10212
|
[key: string]: string;
|
|
@@ -10218,6 +10602,7 @@ export declare class ListConfigRuleEvaluationResultsResponseBodyEvaluationResult
|
|
|
10218
10602
|
*
|
|
10219
10603
|
* * ConfigurationItemChangeNotification: The rule is triggered by configuration changes.
|
|
10220
10604
|
* * ScheduledNotification: The rule is periodically triggered.
|
|
10605
|
+
* * Manual: The rule is manually triggered.
|
|
10221
10606
|
*
|
|
10222
10607
|
* @example
|
|
10223
10608
|
* ConfigurationItemChangeNotification
|
|
@@ -11526,6 +11911,7 @@ export declare class ListResourceEvaluationResultsResponseBodyEvaluationResultsE
|
|
|
11526
11911
|
*
|
|
11527
11912
|
* * ConfigurationItemChangeNotification: The managed rule is triggered by configuration changes.
|
|
11528
11913
|
* * ScheduledNotification: The managed rule is periodically triggered.
|
|
11914
|
+
* * Manual: The rule is manually triggered.
|
|
11529
11915
|
*
|
|
11530
11916
|
* @example
|
|
11531
11917
|
* ScheduledNotification
|
|
@@ -12535,7 +12921,27 @@ export declare class UpdateAggregatorRequestAggregatorAccounts extends $dara.Mod
|
|
|
12535
12921
|
});
|
|
12536
12922
|
}
|
|
12537
12923
|
export declare class UpdateAggregatorRequestTag extends $dara.Model {
|
|
12924
|
+
/**
|
|
12925
|
+
* @remarks
|
|
12926
|
+
* The tag key of the resource. You can specify up to 20 tag keys.
|
|
12927
|
+
*
|
|
12928
|
+
* The tag key cannot be an empty string. The tag key must be 1 to 64 characters in length and cannot start with `aliyun` or `acs`:. The tag key cannot contain `http://` or `https://`.
|
|
12929
|
+
*
|
|
12930
|
+
* @example
|
|
12931
|
+
* key-1
|
|
12932
|
+
*/
|
|
12538
12933
|
key?: string;
|
|
12934
|
+
/**
|
|
12935
|
+
* @remarks
|
|
12936
|
+
* The tag values.
|
|
12937
|
+
*
|
|
12938
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
12939
|
+
*
|
|
12940
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
12941
|
+
*
|
|
12942
|
+
* @example
|
|
12943
|
+
* value-1
|
|
12944
|
+
*/
|
|
12539
12945
|
value?: string;
|
|
12540
12946
|
static names(): {
|
|
12541
12947
|
[key: string]: string;
|
|
@@ -12674,7 +13080,29 @@ export declare class UpdateCompliancePackRequestExcludeTagsScope extends $dara.M
|
|
|
12674
13080
|
});
|
|
12675
13081
|
}
|
|
12676
13082
|
export declare class UpdateCompliancePackRequestTag extends $dara.Model {
|
|
13083
|
+
/**
|
|
13084
|
+
* @remarks
|
|
13085
|
+
* The tag keys.
|
|
13086
|
+
*
|
|
13087
|
+
* The tag keys cannot be an empty string. The tag keys can be up to 64 characters in length. The tag keys cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
13088
|
+
*
|
|
13089
|
+
* You can specify at most 20 tag keys in each call.
|
|
13090
|
+
*
|
|
13091
|
+
* @example
|
|
13092
|
+
* key-1
|
|
13093
|
+
*/
|
|
12677
13094
|
key?: string;
|
|
13095
|
+
/**
|
|
13096
|
+
* @remarks
|
|
13097
|
+
* The tag values.
|
|
13098
|
+
*
|
|
13099
|
+
* The tag values can be an empty string or up to 128 characters in length. The tag values cannot start with `aliyun` or `acs:` and cannot contain `http://` or `https://`.
|
|
13100
|
+
*
|
|
13101
|
+
* Each key-value must be unique. You can specify at most 20 tag values in each call.
|
|
13102
|
+
*
|
|
13103
|
+
* @example
|
|
13104
|
+
* value-1
|
|
13105
|
+
*/
|
|
12678
13106
|
value?: string;
|
|
12679
13107
|
static names(): {
|
|
12680
13108
|
[key: string]: string;
|
|
@@ -13727,6 +14155,12 @@ export declare class CreateAggregateCompliancePackRequest extends $dara.Model {
|
|
|
13727
14155
|
* 1
|
|
13728
14156
|
*/
|
|
13729
14157
|
riskLevel?: number;
|
|
14158
|
+
/**
|
|
14159
|
+
* @remarks
|
|
14160
|
+
* The tags of the resource.
|
|
14161
|
+
*
|
|
14162
|
+
* You can add up to 20 tags to a resource.
|
|
14163
|
+
*/
|
|
13730
14164
|
tag?: CreateAggregateCompliancePackRequestTag[];
|
|
13731
14165
|
/**
|
|
13732
14166
|
* @remarks
|
|
@@ -13904,6 +14338,12 @@ export declare class CreateAggregateCompliancePackShrinkRequest extends $dara.Mo
|
|
|
13904
14338
|
* 1
|
|
13905
14339
|
*/
|
|
13906
14340
|
riskLevel?: number;
|
|
14341
|
+
/**
|
|
14342
|
+
* @remarks
|
|
14343
|
+
* The tags of the resource.
|
|
14344
|
+
*
|
|
14345
|
+
* You can add up to 20 tags to a resource.
|
|
14346
|
+
*/
|
|
13907
14347
|
tagShrink?: string;
|
|
13908
14348
|
/**
|
|
13909
14349
|
* @remarks
|
|
@@ -14408,6 +14848,14 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14408
14848
|
* lb-5cmbowstbkss9ta03****
|
|
14409
14849
|
*/
|
|
14410
14850
|
resourceIdsScope?: string;
|
|
14851
|
+
/**
|
|
14852
|
+
* @example
|
|
14853
|
+
* i-xxx
|
|
14854
|
+
*
|
|
14855
|
+
* **if can be null:**
|
|
14856
|
+
* true
|
|
14857
|
+
*/
|
|
14858
|
+
resourceNameScope?: string;
|
|
14411
14859
|
/**
|
|
14412
14860
|
* @remarks
|
|
14413
14861
|
* The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -14460,9 +14908,15 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14460
14908
|
* ALIYUN
|
|
14461
14909
|
*/
|
|
14462
14910
|
sourceOwner?: string;
|
|
14911
|
+
/**
|
|
14912
|
+
* @remarks
|
|
14913
|
+
* The tags.
|
|
14914
|
+
*/
|
|
14463
14915
|
tag?: CreateAggregateConfigRuleRequestTag[];
|
|
14464
14916
|
/**
|
|
14465
14917
|
* @remarks
|
|
14918
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
14919
|
+
*
|
|
14466
14920
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
14467
14921
|
*
|
|
14468
14922
|
* * AND
|
|
@@ -14470,26 +14924,36 @@ export declare class CreateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
14470
14924
|
*
|
|
14471
14925
|
* @example
|
|
14472
14926
|
* AND
|
|
14927
|
+
*
|
|
14928
|
+
* @deprecated
|
|
14473
14929
|
*/
|
|
14474
14930
|
tagKeyLogicScope?: string;
|
|
14475
14931
|
/**
|
|
14476
14932
|
* @remarks
|
|
14933
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
14934
|
+
*
|
|
14477
14935
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key. Separate multiple parameter values with commas (,).
|
|
14478
14936
|
*
|
|
14479
|
-
* >
|
|
14937
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14480
14938
|
*
|
|
14481
14939
|
* @example
|
|
14482
14940
|
* ECS
|
|
14941
|
+
*
|
|
14942
|
+
* @deprecated
|
|
14483
14943
|
*/
|
|
14484
14944
|
tagKeyScope?: string;
|
|
14485
14945
|
/**
|
|
14486
14946
|
* @remarks
|
|
14487
|
-
*
|
|
14947
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
14948
|
+
*
|
|
14949
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
14488
14950
|
*
|
|
14489
|
-
* >
|
|
14951
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14490
14952
|
*
|
|
14491
14953
|
* @example
|
|
14492
14954
|
* test
|
|
14955
|
+
*
|
|
14956
|
+
* @deprecated
|
|
14493
14957
|
*/
|
|
14494
14958
|
tagValueScope?: string;
|
|
14495
14959
|
/**
|
|
@@ -14697,6 +15161,14 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14697
15161
|
* lb-5cmbowstbkss9ta03****
|
|
14698
15162
|
*/
|
|
14699
15163
|
resourceIdsScope?: string;
|
|
15164
|
+
/**
|
|
15165
|
+
* @example
|
|
15166
|
+
* i-xxx
|
|
15167
|
+
*
|
|
15168
|
+
* **if can be null:**
|
|
15169
|
+
* true
|
|
15170
|
+
*/
|
|
15171
|
+
resourceNameScope?: string;
|
|
14700
15172
|
/**
|
|
14701
15173
|
* @remarks
|
|
14702
15174
|
* The type of the resource evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -14749,9 +15221,15 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14749
15221
|
* ALIYUN
|
|
14750
15222
|
*/
|
|
14751
15223
|
sourceOwner?: string;
|
|
15224
|
+
/**
|
|
15225
|
+
* @remarks
|
|
15226
|
+
* The tags.
|
|
15227
|
+
*/
|
|
14752
15228
|
tagShrink?: string;
|
|
14753
15229
|
/**
|
|
14754
15230
|
* @remarks
|
|
15231
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15232
|
+
*
|
|
14755
15233
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
14756
15234
|
*
|
|
14757
15235
|
* * AND
|
|
@@ -14759,26 +15237,36 @@ export declare class CreateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
14759
15237
|
*
|
|
14760
15238
|
* @example
|
|
14761
15239
|
* AND
|
|
15240
|
+
*
|
|
15241
|
+
* @deprecated
|
|
14762
15242
|
*/
|
|
14763
15243
|
tagKeyLogicScope?: string;
|
|
14764
15244
|
/**
|
|
14765
15245
|
* @remarks
|
|
15246
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15247
|
+
*
|
|
14766
15248
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key. Separate multiple parameter values with commas (,).
|
|
14767
15249
|
*
|
|
14768
|
-
* >
|
|
15250
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14769
15251
|
*
|
|
14770
15252
|
* @example
|
|
14771
15253
|
* ECS
|
|
15254
|
+
*
|
|
15255
|
+
* @deprecated
|
|
14772
15256
|
*/
|
|
14773
15257
|
tagKeyScope?: string;
|
|
14774
15258
|
/**
|
|
14775
15259
|
* @remarks
|
|
14776
|
-
*
|
|
15260
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
15261
|
+
*
|
|
15262
|
+
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
14777
15263
|
*
|
|
14778
|
-
* >
|
|
15264
|
+
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
14779
15265
|
*
|
|
14780
15266
|
* @example
|
|
14781
15267
|
* test
|
|
15268
|
+
*
|
|
15269
|
+
* @deprecated
|
|
14782
15270
|
*/
|
|
14783
15271
|
tagValueScope?: string;
|
|
14784
15272
|
/**
|
|
@@ -15059,12 +15547,18 @@ export declare class CreateAggregatorRequest extends $dara.Model {
|
|
|
15059
15547
|
description?: string;
|
|
15060
15548
|
/**
|
|
15061
15549
|
* @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`.
|
|
15550
|
+
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`. Multiple resource folder IDs should be separated by commas (,).
|
|
15063
15551
|
*
|
|
15064
15552
|
* @example
|
|
15065
|
-
* fd-brHdgv****
|
|
15553
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
15066
15554
|
*/
|
|
15067
15555
|
folderId?: string;
|
|
15556
|
+
/**
|
|
15557
|
+
* @remarks
|
|
15558
|
+
* The tags of the resource.
|
|
15559
|
+
*
|
|
15560
|
+
* You can add up to 20 tags to a resource.
|
|
15561
|
+
*/
|
|
15068
15562
|
tag?: CreateAggregatorRequestTag[];
|
|
15069
15563
|
static names(): {
|
|
15070
15564
|
[key: string]: string;
|
|
@@ -15140,12 +15634,18 @@ export declare class CreateAggregatorShrinkRequest extends $dara.Model {
|
|
|
15140
15634
|
description?: string;
|
|
15141
15635
|
/**
|
|
15142
15636
|
* @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`.
|
|
15637
|
+
* The ID of the folder to which the account group is attached. You must specify this parameter if `AggregatorType` is set to `FOLDER`. Multiple resource folder IDs should be separated by commas (,).
|
|
15144
15638
|
*
|
|
15145
15639
|
* @example
|
|
15146
|
-
* fd-brHdgv****
|
|
15640
|
+
* fd-brHdgv****,fd-brHdgk****
|
|
15147
15641
|
*/
|
|
15148
15642
|
folderId?: string;
|
|
15643
|
+
/**
|
|
15644
|
+
* @remarks
|
|
15645
|
+
* The tags of the resource.
|
|
15646
|
+
*
|
|
15647
|
+
* You can add up to 20 tags to a resource.
|
|
15648
|
+
*/
|
|
15149
15649
|
tagShrink?: string;
|
|
15150
15650
|
static names(): {
|
|
15151
15651
|
[key: string]: string;
|
|
@@ -15324,6 +15824,12 @@ export declare class CreateCompliancePackRequest extends $dara.Model {
|
|
|
15324
15824
|
* 1
|
|
15325
15825
|
*/
|
|
15326
15826
|
riskLevel?: number;
|
|
15827
|
+
/**
|
|
15828
|
+
* @remarks
|
|
15829
|
+
* The tags of the resource.
|
|
15830
|
+
*
|
|
15831
|
+
* You can add up to 20 tags to a resource.
|
|
15832
|
+
*/
|
|
15327
15833
|
tag?: CreateCompliancePackRequestTag[];
|
|
15328
15834
|
/**
|
|
15329
15835
|
* @remarks
|
|
@@ -15488,6 +15994,12 @@ export declare class CreateCompliancePackShrinkRequest extends $dara.Model {
|
|
|
15488
15994
|
* 1
|
|
15489
15995
|
*/
|
|
15490
15996
|
riskLevel?: number;
|
|
15997
|
+
/**
|
|
15998
|
+
* @remarks
|
|
15999
|
+
* The tags of the resource.
|
|
16000
|
+
*
|
|
16001
|
+
* You can add up to 20 tags to a resource.
|
|
16002
|
+
*/
|
|
15491
16003
|
tagShrink?: string;
|
|
15492
16004
|
/**
|
|
15493
16005
|
* @remarks
|
|
@@ -15624,25 +16136,34 @@ export declare class CreateConfigDeliveryChannelRequest extends $dara.Model {
|
|
|
15624
16136
|
configurationSnapshot?: boolean;
|
|
15625
16137
|
/**
|
|
15626
16138
|
* @remarks
|
|
15627
|
-
* The rule that you want to attach to the delivery channel
|
|
16139
|
+
* The rule that you want to attach to the delivery channel, used to specify subscription content filtering conditions.
|
|
15628
16140
|
*
|
|
15629
|
-
* * If
|
|
16141
|
+
* * If you specify the minimum risk level and resource types for compliance events, it should be as follows:
|
|
15630
16142
|
*
|
|
15631
16143
|
* * The setting of the lowest risk level for the events to which you want to subscribe is in the following format: `{"filterType":"RuleRiskLevel","value":"1","multiple":false}`.
|
|
15632
16144
|
*
|
|
15633
16145
|
* The `value` field indicates the lowest risk level of the events to which you want to subscribe. Valid values: 1, 2, and 3. The value 1 indicates the high risk level, the value 2 indicates the medium risk level, and the value 3 indicates the low risk level.
|
|
15634
16146
|
*
|
|
16147
|
+
* The `multiple` field indicates whether multiple values are supported for this group of filters. Risk levels only support single-value filtering, so the multiple field for compliance event type content can only be set to `false`.
|
|
16148
|
+
*
|
|
15635
16149
|
* * The setting of the resource types of the events to which you want to subscribe is in the following format: `{"filterType":"ResourceType","values":["ACS::ACK::Cluster","ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage"],"multiple":true}`.
|
|
15636
16150
|
*
|
|
15637
|
-
* The `values` field indicates the resource types of the events to which you want to subscribe.
|
|
16151
|
+
* The `values` field indicates the resource types of the events to which you want to subscribe.
|
|
15638
16152
|
*
|
|
15639
|
-
* `
|
|
16153
|
+
* The `multiple` field indicates whether multiple values are supported for this group of filters. Resource types support multi-value filtering; when selecting multiple resource types, the multiple field can be set to true.
|
|
16154
|
+
* The value of the field is a JSON array. Examples:
|
|
15640
16155
|
*
|
|
15641
|
-
*
|
|
16156
|
+
* `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
|
|
16157
|
+
*
|
|
16158
|
+
* * You can also simultaneously specify both risk levels and resource types, such as:
|
|
16159
|
+
*
|
|
16160
|
+
* `[{"filterType":"RuleRiskLevel","value":"2","multiple":false},{"filterType":"ResourceType","values":["ACS::CDN::Domain","ACS::ActionTrail::Trail"],"multiple":true}]`
|
|
16161
|
+
*
|
|
16162
|
+
* * If you specify the resource types for delivering configurations, the resource types are specified by: `{"filterType":"ResourceType","values":["ACS::ACK::Cluster","ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage"],"multiple":true}`.
|
|
15642
16163
|
*
|
|
15643
16164
|
* The `values` field specifies the resource types of the snapshots to which you want to deliver. The value of the field is a JSON array. Examples:
|
|
15644
16165
|
*
|
|
15645
|
-
*
|
|
16166
|
+
* `[{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]`
|
|
15646
16167
|
*
|
|
15647
16168
|
* @example
|
|
15648
16169
|
* [{"filterType":"ResourceType","values":["ACS::ActionTrail::Trail","ACS::CBWP::CommonBandwidthPackage","ACS::CDN::Domain","ACS::CEN::CenBandwidthPackage","ACS::CEN::CenInstance","ACS::CEN::Flowlog","ACS::DdosCoo::Instance"],"multiple":true}]
|
|
@@ -15922,6 +16443,11 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15922
16443
|
* lb-5cmbowstbkss9ta03****
|
|
15923
16444
|
*/
|
|
15924
16445
|
resourceIdsScope?: string;
|
|
16446
|
+
/**
|
|
16447
|
+
* **if can be null:**
|
|
16448
|
+
* true
|
|
16449
|
+
*/
|
|
16450
|
+
resourceNameScope?: string;
|
|
15925
16451
|
/**
|
|
15926
16452
|
* @remarks
|
|
15927
16453
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -15988,6 +16514,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15988
16514
|
*
|
|
15989
16515
|
* @example
|
|
15990
16516
|
* AND
|
|
16517
|
+
*
|
|
16518
|
+
* @deprecated
|
|
15991
16519
|
*/
|
|
15992
16520
|
tagKeyLogicScope?: string;
|
|
15993
16521
|
/**
|
|
@@ -15998,6 +16526,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
15998
16526
|
*
|
|
15999
16527
|
* @example
|
|
16000
16528
|
* ECS
|
|
16529
|
+
*
|
|
16530
|
+
* @deprecated
|
|
16001
16531
|
*/
|
|
16002
16532
|
tagKeyScope?: string;
|
|
16003
16533
|
/**
|
|
@@ -16008,6 +16538,8 @@ export declare class CreateConfigRuleRequest extends $dara.Model {
|
|
|
16008
16538
|
*
|
|
16009
16539
|
* @example
|
|
16010
16540
|
* test
|
|
16541
|
+
*
|
|
16542
|
+
* @deprecated
|
|
16011
16543
|
*/
|
|
16012
16544
|
tagValueScope?: string;
|
|
16013
16545
|
/**
|
|
@@ -16159,6 +16691,11 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16159
16691
|
* lb-5cmbowstbkss9ta03****
|
|
16160
16692
|
*/
|
|
16161
16693
|
resourceIdsScope?: string;
|
|
16694
|
+
/**
|
|
16695
|
+
* **if can be null:**
|
|
16696
|
+
* true
|
|
16697
|
+
*/
|
|
16698
|
+
resourceNameScope?: string;
|
|
16162
16699
|
/**
|
|
16163
16700
|
* @remarks
|
|
16164
16701
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -16225,6 +16762,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16225
16762
|
*
|
|
16226
16763
|
* @example
|
|
16227
16764
|
* AND
|
|
16765
|
+
*
|
|
16766
|
+
* @deprecated
|
|
16228
16767
|
*/
|
|
16229
16768
|
tagKeyLogicScope?: string;
|
|
16230
16769
|
/**
|
|
@@ -16235,6 +16774,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16235
16774
|
*
|
|
16236
16775
|
* @example
|
|
16237
16776
|
* ECS
|
|
16777
|
+
*
|
|
16778
|
+
* @deprecated
|
|
16238
16779
|
*/
|
|
16239
16780
|
tagKeyScope?: string;
|
|
16240
16781
|
/**
|
|
@@ -16245,6 +16786,8 @@ export declare class CreateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
16245
16786
|
*
|
|
16246
16787
|
* @example
|
|
16247
16788
|
* test
|
|
16789
|
+
*
|
|
16790
|
+
* @deprecated
|
|
16248
16791
|
*/
|
|
16249
16792
|
tagValueScope?: string;
|
|
16250
16793
|
/**
|
|
@@ -18574,6 +19117,12 @@ export declare class GetAggregateCompliancePackRequest extends $dara.Model {
|
|
|
18574
19117
|
* cp-fdc8626622af00f9****
|
|
18575
19118
|
*/
|
|
18576
19119
|
compliancePackId?: string;
|
|
19120
|
+
/**
|
|
19121
|
+
* @remarks
|
|
19122
|
+
* The tags of the resource.
|
|
19123
|
+
*
|
|
19124
|
+
* You can add up to 20 tags to a resource.
|
|
19125
|
+
*/
|
|
18577
19126
|
tag?: GetAggregateCompliancePackRequestTag[];
|
|
18578
19127
|
static names(): {
|
|
18579
19128
|
[key: string]: string;
|
|
@@ -18611,6 +19160,12 @@ export declare class GetAggregateCompliancePackShrinkRequest extends $dara.Model
|
|
|
18611
19160
|
* cp-fdc8626622af00f9****
|
|
18612
19161
|
*/
|
|
18613
19162
|
compliancePackId?: string;
|
|
19163
|
+
/**
|
|
19164
|
+
* @remarks
|
|
19165
|
+
* The tags of the resource.
|
|
19166
|
+
*
|
|
19167
|
+
* You can add up to 20 tags to a resource.
|
|
19168
|
+
*/
|
|
18614
19169
|
tagShrink?: string;
|
|
18615
19170
|
static names(): {
|
|
18616
19171
|
[key: string]: string;
|
|
@@ -18977,7 +19532,7 @@ export declare class GetAggregateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
18977
19532
|
export declare class GetAggregateConfigRuleResponseBody extends $dara.Model {
|
|
18978
19533
|
/**
|
|
18979
19534
|
* @remarks
|
|
18980
|
-
* The rules.
|
|
19535
|
+
* The information about the rules.
|
|
18981
19536
|
*/
|
|
18982
19537
|
configRule?: GetAggregateConfigRuleResponseBodyConfigRule;
|
|
18983
19538
|
/**
|
|
@@ -19195,7 +19750,7 @@ export declare class GetAggregateConfigRulesReportRequest extends $dara.Model {
|
|
|
19195
19750
|
export declare class GetAggregateConfigRulesReportResponseBody extends $dara.Model {
|
|
19196
19751
|
/**
|
|
19197
19752
|
* @remarks
|
|
19198
|
-
* The
|
|
19753
|
+
* The compliance evaluation report.
|
|
19199
19754
|
*/
|
|
19200
19755
|
configRulesReport?: GetAggregateConfigRulesReportResponseBodyConfigRulesReport;
|
|
19201
19756
|
/**
|
|
@@ -20253,6 +20808,12 @@ export declare class GetAggregatorRequest extends $dara.Model {
|
|
|
20253
20808
|
* ca-88ea626622af0055****
|
|
20254
20809
|
*/
|
|
20255
20810
|
aggregatorId?: string;
|
|
20811
|
+
/**
|
|
20812
|
+
* @remarks
|
|
20813
|
+
* The tags of the resource.
|
|
20814
|
+
*
|
|
20815
|
+
* You can add up to 20 tags to a resource.
|
|
20816
|
+
*/
|
|
20256
20817
|
tag?: GetAggregatorRequestTag[];
|
|
20257
20818
|
static names(): {
|
|
20258
20819
|
[key: string]: string;
|
|
@@ -20276,6 +20837,12 @@ export declare class GetAggregatorShrinkRequest extends $dara.Model {
|
|
|
20276
20837
|
* ca-88ea626622af0055****
|
|
20277
20838
|
*/
|
|
20278
20839
|
aggregatorId?: string;
|
|
20840
|
+
/**
|
|
20841
|
+
* @remarks
|
|
20842
|
+
* The tags of the resource.
|
|
20843
|
+
*
|
|
20844
|
+
* You can add up to 20 tags to a resource.
|
|
20845
|
+
*/
|
|
20279
20846
|
tagShrink?: string;
|
|
20280
20847
|
static names(): {
|
|
20281
20848
|
[key: string]: string;
|
|
@@ -20343,6 +20910,12 @@ export declare class GetCompliancePackRequest extends $dara.Model {
|
|
|
20343
20910
|
* cp-a8a8626622af0082****
|
|
20344
20911
|
*/
|
|
20345
20912
|
compliancePackId?: string;
|
|
20913
|
+
/**
|
|
20914
|
+
* @remarks
|
|
20915
|
+
* The tags of the resource.
|
|
20916
|
+
*
|
|
20917
|
+
* You can add up to 20 tags to a resource.
|
|
20918
|
+
*/
|
|
20346
20919
|
tag?: GetCompliancePackRequestTag[];
|
|
20347
20920
|
static names(): {
|
|
20348
20921
|
[key: string]: string;
|
|
@@ -20368,6 +20941,12 @@ export declare class GetCompliancePackShrinkRequest extends $dara.Model {
|
|
|
20368
20941
|
* cp-a8a8626622af0082****
|
|
20369
20942
|
*/
|
|
20370
20943
|
compliancePackId?: string;
|
|
20944
|
+
/**
|
|
20945
|
+
* @remarks
|
|
20946
|
+
* The tags of the resource.
|
|
20947
|
+
*
|
|
20948
|
+
* You can add up to 20 tags to a resource.
|
|
20949
|
+
*/
|
|
20371
20950
|
tagShrink?: string;
|
|
20372
20951
|
static names(): {
|
|
20373
20952
|
[key: string]: string;
|
|
@@ -22316,6 +22895,10 @@ export declare class ListAggregateCompliancePacksRequest extends $dara.Model {
|
|
|
22316
22895
|
* ACTIVE
|
|
22317
22896
|
*/
|
|
22318
22897
|
status?: string;
|
|
22898
|
+
/**
|
|
22899
|
+
* @remarks
|
|
22900
|
+
* The tags.
|
|
22901
|
+
*/
|
|
22319
22902
|
tag?: ListAggregateCompliancePacksRequestTag[];
|
|
22320
22903
|
static names(): {
|
|
22321
22904
|
[key: string]: string;
|
|
@@ -22372,6 +22955,10 @@ export declare class ListAggregateCompliancePacksShrinkRequest extends $dara.Mod
|
|
|
22372
22955
|
* ACTIVE
|
|
22373
22956
|
*/
|
|
22374
22957
|
status?: string;
|
|
22958
|
+
/**
|
|
22959
|
+
* @remarks
|
|
22960
|
+
* The tags.
|
|
22961
|
+
*/
|
|
22375
22962
|
tagShrink?: string;
|
|
22376
22963
|
static names(): {
|
|
22377
22964
|
[key: string]: string;
|
|
@@ -22387,7 +22974,7 @@ export declare class ListAggregateCompliancePacksShrinkRequest extends $dara.Mod
|
|
|
22387
22974
|
export declare class ListAggregateCompliancePacksResponseBody extends $dara.Model {
|
|
22388
22975
|
/**
|
|
22389
22976
|
* @remarks
|
|
22390
|
-
* The
|
|
22977
|
+
* The compliance packages returned.
|
|
22391
22978
|
*/
|
|
22392
22979
|
compliancePacksResult?: ListAggregateCompliancePacksResponseBodyCompliancePacksResult;
|
|
22393
22980
|
/**
|
|
@@ -22823,6 +23410,12 @@ export declare class ListAggregateConfigRulesRequest extends $dara.Model {
|
|
|
22823
23410
|
* 1
|
|
22824
23411
|
*/
|
|
22825
23412
|
riskLevel?: number;
|
|
23413
|
+
/**
|
|
23414
|
+
* @remarks
|
|
23415
|
+
* The tags of the resource.
|
|
23416
|
+
*
|
|
23417
|
+
* You can add up to 20 tags to a resource.
|
|
23418
|
+
*/
|
|
22826
23419
|
tag?: ListAggregateConfigRulesRequestTag[];
|
|
22827
23420
|
static names(): {
|
|
22828
23421
|
[key: string]: string;
|
|
@@ -22940,6 +23533,12 @@ export declare class ListAggregateConfigRulesShrinkRequest extends $dara.Model {
|
|
|
22940
23533
|
* 1
|
|
22941
23534
|
*/
|
|
22942
23535
|
riskLevel?: number;
|
|
23536
|
+
/**
|
|
23537
|
+
* @remarks
|
|
23538
|
+
* The tags of the resource.
|
|
23539
|
+
*
|
|
23540
|
+
* You can add up to 20 tags to a resource.
|
|
23541
|
+
*/
|
|
22943
23542
|
tagShrink?: string;
|
|
22944
23543
|
static names(): {
|
|
22945
23544
|
[key: string]: string;
|
|
@@ -23692,6 +24291,12 @@ export declare class ListAggregatorsRequest extends $dara.Model {
|
|
|
23692
24291
|
* TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
|
|
23693
24292
|
*/
|
|
23694
24293
|
nextToken?: string;
|
|
24294
|
+
/**
|
|
24295
|
+
* @remarks
|
|
24296
|
+
* The tags of the resource.
|
|
24297
|
+
*
|
|
24298
|
+
* You can add up to 20 tags to a resource.
|
|
24299
|
+
*/
|
|
23695
24300
|
tag?: ListAggregatorsRequestTag[];
|
|
23696
24301
|
static names(): {
|
|
23697
24302
|
[key: string]: string;
|
|
@@ -23723,6 +24328,12 @@ export declare class ListAggregatorsShrinkRequest extends $dara.Model {
|
|
|
23723
24328
|
* TGlzdFJlc291cmNlU2hhcmVzJjE1MTI2NjY4NzY5MTAzOTEmMiZORnI4NDhVeEtrUT0
|
|
23724
24329
|
*/
|
|
23725
24330
|
nextToken?: string;
|
|
24331
|
+
/**
|
|
24332
|
+
* @remarks
|
|
24333
|
+
* The tags of the resource.
|
|
24334
|
+
*
|
|
24335
|
+
* You can add up to 20 tags to a resource.
|
|
24336
|
+
*/
|
|
23726
24337
|
tagShrink?: string;
|
|
23727
24338
|
static names(): {
|
|
23728
24339
|
[key: string]: string;
|
|
@@ -23899,6 +24510,12 @@ export declare class ListCompliancePacksRequest extends $dara.Model {
|
|
|
23899
24510
|
* ACTIVE
|
|
23900
24511
|
*/
|
|
23901
24512
|
status?: string;
|
|
24513
|
+
/**
|
|
24514
|
+
* @remarks
|
|
24515
|
+
* The tags of the resource.
|
|
24516
|
+
*
|
|
24517
|
+
* You can add up to 20 tags to a resource.
|
|
24518
|
+
*/
|
|
23902
24519
|
tag?: ListCompliancePacksRequestTag[];
|
|
23903
24520
|
static names(): {
|
|
23904
24521
|
[key: string]: string;
|
|
@@ -23943,6 +24560,12 @@ export declare class ListCompliancePacksShrinkRequest extends $dara.Model {
|
|
|
23943
24560
|
* ACTIVE
|
|
23944
24561
|
*/
|
|
23945
24562
|
status?: string;
|
|
24563
|
+
/**
|
|
24564
|
+
* @remarks
|
|
24565
|
+
* The tags of the resource.
|
|
24566
|
+
*
|
|
24567
|
+
* You can add up to 20 tags to a resource.
|
|
24568
|
+
*/
|
|
23946
24569
|
tagShrink?: string;
|
|
23947
24570
|
static names(): {
|
|
23948
24571
|
[key: string]: string;
|
|
@@ -24099,7 +24722,7 @@ export declare class ListConfigRuleEvaluationResultsRequest extends $dara.Model
|
|
|
24099
24722
|
configRuleId?: string;
|
|
24100
24723
|
/**
|
|
24101
24724
|
* @remarks
|
|
24102
|
-
* The maximum number of entries to return
|
|
24725
|
+
* The maximum number of entries to return in a request. Valid values: 1 to 100.
|
|
24103
24726
|
*
|
|
24104
24727
|
* @example
|
|
24105
24728
|
* 10
|
|
@@ -24660,6 +25283,7 @@ export declare class ListIntegratedServiceResponse extends $dara.Model {
|
|
|
24660
25283
|
});
|
|
24661
25284
|
}
|
|
24662
25285
|
export declare class ListManagedRulesRequest extends $dara.Model {
|
|
25286
|
+
filterType?: string;
|
|
24663
25287
|
/**
|
|
24664
25288
|
* @remarks
|
|
24665
25289
|
* The keyword of the managed rule.
|
|
@@ -27556,13 +28180,13 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27556
28180
|
};
|
|
27557
28181
|
/**
|
|
27558
28182
|
* @remarks
|
|
27559
|
-
* The
|
|
28183
|
+
* The interval at which the rule is triggered. Valid values:
|
|
27560
28184
|
*
|
|
27561
|
-
* * One_Hour
|
|
27562
|
-
* * Three_Hours
|
|
27563
|
-
* * Six_Hours
|
|
27564
|
-
* * Twelve_Hours
|
|
27565
|
-
* * TwentyFour_Hours
|
|
28185
|
+
* * One_Hour
|
|
28186
|
+
* * Three_Hours
|
|
28187
|
+
* * Six_Hours
|
|
28188
|
+
* * Twelve_Hours
|
|
28189
|
+
* * TwentyFour_Hours
|
|
27566
28190
|
*
|
|
27567
28191
|
* > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
|
|
27568
28192
|
*
|
|
@@ -27598,6 +28222,17 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27598
28222
|
* lb-5cmbowstbkss9ta03****
|
|
27599
28223
|
*/
|
|
27600
28224
|
resourceIdsScope?: string;
|
|
28225
|
+
/**
|
|
28226
|
+
* @remarks
|
|
28227
|
+
* The names of the resource groups to which the rule applies.
|
|
28228
|
+
*
|
|
28229
|
+
* @example
|
|
28230
|
+
* i-xxx
|
|
28231
|
+
*
|
|
28232
|
+
* **if can be null:**
|
|
28233
|
+
* true
|
|
28234
|
+
*/
|
|
28235
|
+
resourceNameScope?: string;
|
|
27601
28236
|
/**
|
|
27602
28237
|
* @remarks
|
|
27603
28238
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -27608,11 +28243,11 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27608
28243
|
resourceTypesScope?: string[];
|
|
27609
28244
|
/**
|
|
27610
28245
|
* @remarks
|
|
27611
|
-
* The risk level of the resources that
|
|
28246
|
+
* The risk level of the resources that do not comply with the rule. Valid values:
|
|
27612
28247
|
*
|
|
27613
|
-
* * 1: high
|
|
27614
|
-
* * 2: medium
|
|
27615
|
-
* * 3: low
|
|
28248
|
+
* * 1: high
|
|
28249
|
+
* * 2: medium
|
|
28250
|
+
* * 3: low
|
|
27616
28251
|
*
|
|
27617
28252
|
* @example
|
|
27618
28253
|
* 3
|
|
@@ -27627,6 +28262,8 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27627
28262
|
tag?: UpdateAggregateConfigRuleRequestTag[];
|
|
27628
28263
|
/**
|
|
27629
28264
|
* @remarks
|
|
28265
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28266
|
+
*
|
|
27630
28267
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
27631
28268
|
*
|
|
27632
28269
|
* * AND
|
|
@@ -27634,26 +28271,36 @@ export declare class UpdateAggregateConfigRuleRequest extends $dara.Model {
|
|
|
27634
28271
|
*
|
|
27635
28272
|
* @example
|
|
27636
28273
|
* AND
|
|
28274
|
+
*
|
|
28275
|
+
* @deprecated
|
|
27637
28276
|
*/
|
|
27638
28277
|
tagKeyLogicScope?: string;
|
|
27639
28278
|
/**
|
|
27640
28279
|
* @remarks
|
|
28280
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28281
|
+
*
|
|
27641
28282
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
27642
28283
|
*
|
|
27643
28284
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27644
28285
|
*
|
|
27645
28286
|
* @example
|
|
27646
28287
|
* ECS
|
|
28288
|
+
*
|
|
28289
|
+
* @deprecated
|
|
27647
28290
|
*/
|
|
27648
28291
|
tagKeyScope?: string;
|
|
27649
28292
|
/**
|
|
27650
28293
|
* @remarks
|
|
28294
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28295
|
+
*
|
|
27651
28296
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
27652
28297
|
*
|
|
27653
28298
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27654
28299
|
*
|
|
27655
28300
|
* @example
|
|
27656
28301
|
* test
|
|
28302
|
+
*
|
|
28303
|
+
* @deprecated
|
|
27657
28304
|
*/
|
|
27658
28305
|
tagValueScope?: string;
|
|
27659
28306
|
/**
|
|
@@ -27823,13 +28470,13 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27823
28470
|
inputParametersShrink?: string;
|
|
27824
28471
|
/**
|
|
27825
28472
|
* @remarks
|
|
27826
|
-
* The
|
|
28473
|
+
* The interval at which the rule is triggered. Valid values:
|
|
27827
28474
|
*
|
|
27828
|
-
* * One_Hour
|
|
27829
|
-
* * Three_Hours
|
|
27830
|
-
* * Six_Hours
|
|
27831
|
-
* * Twelve_Hours
|
|
27832
|
-
* * TwentyFour_Hours
|
|
28475
|
+
* * One_Hour
|
|
28476
|
+
* * Three_Hours
|
|
28477
|
+
* * Six_Hours
|
|
28478
|
+
* * Twelve_Hours
|
|
28479
|
+
* * TwentyFour_Hours
|
|
27833
28480
|
*
|
|
27834
28481
|
* > This parameter is required if the `ConfigRuleTriggerTypes` parameter is set to `ScheduledNotification`.
|
|
27835
28482
|
*
|
|
@@ -27865,6 +28512,17 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27865
28512
|
* lb-5cmbowstbkss9ta03****
|
|
27866
28513
|
*/
|
|
27867
28514
|
resourceIdsScope?: string;
|
|
28515
|
+
/**
|
|
28516
|
+
* @remarks
|
|
28517
|
+
* The names of the resource groups to which the rule applies.
|
|
28518
|
+
*
|
|
28519
|
+
* @example
|
|
28520
|
+
* i-xxx
|
|
28521
|
+
*
|
|
28522
|
+
* **if can be null:**
|
|
28523
|
+
* true
|
|
28524
|
+
*/
|
|
28525
|
+
resourceNameScope?: string;
|
|
27868
28526
|
/**
|
|
27869
28527
|
* @remarks
|
|
27870
28528
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -27875,11 +28533,11 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27875
28533
|
resourceTypesScopeShrink?: string;
|
|
27876
28534
|
/**
|
|
27877
28535
|
* @remarks
|
|
27878
|
-
* The risk level of the resources that
|
|
28536
|
+
* The risk level of the resources that do not comply with the rule. Valid values:
|
|
27879
28537
|
*
|
|
27880
|
-
* * 1: high
|
|
27881
|
-
* * 2: medium
|
|
27882
|
-
* * 3: low
|
|
28538
|
+
* * 1: high
|
|
28539
|
+
* * 2: medium
|
|
28540
|
+
* * 3: low
|
|
27883
28541
|
*
|
|
27884
28542
|
* @example
|
|
27885
28543
|
* 3
|
|
@@ -27894,6 +28552,8 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27894
28552
|
tagShrink?: string;
|
|
27895
28553
|
/**
|
|
27896
28554
|
* @remarks
|
|
28555
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28556
|
+
*
|
|
27897
28557
|
* The logical relationship among the tag keys if you specify multiple tag keys for the `TagKeyScope` parameter. For example, if you set the `TagKeyScope` parameter to `ECS,OSS` and the TagKeyLogicScope parameter to `AND`, the rule applies to resources with both the `ECS` and `OSS` tag keys. Valid values:
|
|
27898
28558
|
*
|
|
27899
28559
|
* * AND
|
|
@@ -27901,26 +28561,36 @@ export declare class UpdateAggregateConfigRuleShrinkRequest extends $dara.Model
|
|
|
27901
28561
|
*
|
|
27902
28562
|
* @example
|
|
27903
28563
|
* AND
|
|
28564
|
+
*
|
|
28565
|
+
* @deprecated
|
|
27904
28566
|
*/
|
|
27905
28567
|
tagKeyLogicScope?: string;
|
|
27906
28568
|
/**
|
|
27907
28569
|
* @remarks
|
|
28570
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28571
|
+
*
|
|
27908
28572
|
* The tag key used to filter resources. The rule applies only to the resources with the specified tag key.
|
|
27909
28573
|
*
|
|
27910
28574
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27911
28575
|
*
|
|
27912
28576
|
* @example
|
|
27913
28577
|
* ECS
|
|
28578
|
+
*
|
|
28579
|
+
* @deprecated
|
|
27914
28580
|
*/
|
|
27915
28581
|
tagKeyScope?: string;
|
|
27916
28582
|
/**
|
|
27917
28583
|
* @remarks
|
|
28584
|
+
* This parameter is deprecated. We recommend that you use the `TagsScope` parameter.
|
|
28585
|
+
*
|
|
27918
28586
|
* The tag value used to filter resources. The rule applies only to the resources that use the specified tag value.
|
|
27919
28587
|
*
|
|
27920
28588
|
* > This parameter applies only to a managed rule. You must configure the `TagKeyScope` and `TagValueScope` parameters at the same time.
|
|
27921
28589
|
*
|
|
27922
28590
|
* @example
|
|
27923
28591
|
* test
|
|
28592
|
+
*
|
|
28593
|
+
* @deprecated
|
|
27924
28594
|
*/
|
|
27925
28595
|
tagValueScope?: string;
|
|
27926
28596
|
/**
|
|
@@ -28170,6 +28840,13 @@ export declare class UpdateAggregatorRequest extends $dara.Model {
|
|
|
28170
28840
|
* Test_Aggregator_Description
|
|
28171
28841
|
*/
|
|
28172
28842
|
description?: string;
|
|
28843
|
+
folderId?: string;
|
|
28844
|
+
/**
|
|
28845
|
+
* @remarks
|
|
28846
|
+
* The tags of the resource.
|
|
28847
|
+
*
|
|
28848
|
+
* You can add up to 20 tags to a resource.
|
|
28849
|
+
*/
|
|
28173
28850
|
tag?: UpdateAggregatorRequestTag[];
|
|
28174
28851
|
static names(): {
|
|
28175
28852
|
[key: string]: string;
|
|
@@ -28233,6 +28910,13 @@ export declare class UpdateAggregatorShrinkRequest extends $dara.Model {
|
|
|
28233
28910
|
* Test_Aggregator_Description
|
|
28234
28911
|
*/
|
|
28235
28912
|
description?: string;
|
|
28913
|
+
folderId?: string;
|
|
28914
|
+
/**
|
|
28915
|
+
* @remarks
|
|
28916
|
+
* The tags of the resource.
|
|
28917
|
+
*
|
|
28918
|
+
* You can add up to 20 tags to a resource.
|
|
28919
|
+
*/
|
|
28236
28920
|
tagShrink?: string;
|
|
28237
28921
|
static names(): {
|
|
28238
28922
|
[key: string]: string;
|
|
@@ -28401,6 +29085,12 @@ export declare class UpdateCompliancePackRequest extends $dara.Model {
|
|
|
28401
29085
|
* 1
|
|
28402
29086
|
*/
|
|
28403
29087
|
riskLevel?: number;
|
|
29088
|
+
/**
|
|
29089
|
+
* @remarks
|
|
29090
|
+
* The tags of the resource.
|
|
29091
|
+
*
|
|
29092
|
+
* You can add up to 20 tags to a resource.
|
|
29093
|
+
*/
|
|
28404
29094
|
tag?: UpdateCompliancePackRequestTag[];
|
|
28405
29095
|
/**
|
|
28406
29096
|
* @remarks
|
|
@@ -28547,6 +29237,12 @@ export declare class UpdateCompliancePackShrinkRequest extends $dara.Model {
|
|
|
28547
29237
|
* 1
|
|
28548
29238
|
*/
|
|
28549
29239
|
riskLevel?: number;
|
|
29240
|
+
/**
|
|
29241
|
+
* @remarks
|
|
29242
|
+
* The tags of the resource.
|
|
29243
|
+
*
|
|
29244
|
+
* You can add up to 20 tags to a resource.
|
|
29245
|
+
*/
|
|
28550
29246
|
tagShrink?: string;
|
|
28551
29247
|
/**
|
|
28552
29248
|
* @remarks
|
|
@@ -29003,6 +29699,11 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
29003
29699
|
* lb-5cmbowstbkss9ta03****
|
|
29004
29700
|
*/
|
|
29005
29701
|
resourceIdsScope?: string;
|
|
29702
|
+
/**
|
|
29703
|
+
* **if can be null:**
|
|
29704
|
+
* true
|
|
29705
|
+
*/
|
|
29706
|
+
resourceNameScope?: string;
|
|
29006
29707
|
/**
|
|
29007
29708
|
* @remarks
|
|
29008
29709
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -29039,6 +29740,8 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
29039
29740
|
*
|
|
29040
29741
|
* @example
|
|
29041
29742
|
* AND
|
|
29743
|
+
*
|
|
29744
|
+
* @deprecated
|
|
29042
29745
|
*/
|
|
29043
29746
|
tagKeyLogicScope?: string;
|
|
29044
29747
|
/**
|
|
@@ -29049,6 +29752,8 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
29049
29752
|
*
|
|
29050
29753
|
* @example
|
|
29051
29754
|
* ECS
|
|
29755
|
+
*
|
|
29756
|
+
* @deprecated
|
|
29052
29757
|
*/
|
|
29053
29758
|
tagKeyScope?: string;
|
|
29054
29759
|
/**
|
|
@@ -29059,6 +29764,8 @@ export declare class UpdateConfigRuleRequest extends $dara.Model {
|
|
|
29059
29764
|
*
|
|
29060
29765
|
* @example
|
|
29061
29766
|
* test
|
|
29767
|
+
*
|
|
29768
|
+
* @deprecated
|
|
29062
29769
|
*/
|
|
29063
29770
|
tagValueScope?: string;
|
|
29064
29771
|
/**
|
|
@@ -29223,6 +29930,11 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
29223
29930
|
* lb-5cmbowstbkss9ta03****
|
|
29224
29931
|
*/
|
|
29225
29932
|
resourceIdsScope?: string;
|
|
29933
|
+
/**
|
|
29934
|
+
* **if can be null:**
|
|
29935
|
+
* true
|
|
29936
|
+
*/
|
|
29937
|
+
resourceNameScope?: string;
|
|
29226
29938
|
/**
|
|
29227
29939
|
* @remarks
|
|
29228
29940
|
* The type of the resource to be evaluated by the rule. Separate multiple resource types with commas (,).
|
|
@@ -29259,6 +29971,8 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
29259
29971
|
*
|
|
29260
29972
|
* @example
|
|
29261
29973
|
* AND
|
|
29974
|
+
*
|
|
29975
|
+
* @deprecated
|
|
29262
29976
|
*/
|
|
29263
29977
|
tagKeyLogicScope?: string;
|
|
29264
29978
|
/**
|
|
@@ -29269,6 +29983,8 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
29269
29983
|
*
|
|
29270
29984
|
* @example
|
|
29271
29985
|
* ECS
|
|
29986
|
+
*
|
|
29987
|
+
* @deprecated
|
|
29272
29988
|
*/
|
|
29273
29989
|
tagKeyScope?: string;
|
|
29274
29990
|
/**
|
|
@@ -29279,6 +29995,8 @@ export declare class UpdateConfigRuleShrinkRequest extends $dara.Model {
|
|
|
29279
29995
|
*
|
|
29280
29996
|
* @example
|
|
29281
29997
|
* test
|
|
29998
|
+
*
|
|
29999
|
+
* @deprecated
|
|
29282
30000
|
*/
|
|
29283
30001
|
tagValueScope?: string;
|
|
29284
30002
|
/**
|