@alicloud/config20200907 3.0.7 → 3.0.8
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 +794 -35
- package/dist/client.js +91 -17
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +865 -32
package/src/client.ts
CHANGED
|
@@ -54,14 +54,13 @@ export class ActiveAggregateConfigRulesRequest extends $tea.Model {
|
|
|
54
54
|
* ca-a4e5626622af0079****
|
|
55
55
|
*/
|
|
56
56
|
aggregatorId?: string;
|
|
57
|
+
compliancePackId?: string;
|
|
57
58
|
/**
|
|
58
59
|
* @remarks
|
|
59
60
|
* The rule ID. Separate multiple rule IDs with commas (,).
|
|
60
61
|
*
|
|
61
62
|
* For more information about how to obtain the ID of a rule, see [ListAggregateConfigRules](https://help.aliyun.com/document_detail/264148.html).
|
|
62
63
|
*
|
|
63
|
-
* This parameter is required.
|
|
64
|
-
*
|
|
65
64
|
* @example
|
|
66
65
|
* cr-5772ba41209e007b****
|
|
67
66
|
*/
|
|
@@ -69,6 +68,7 @@ export class ActiveAggregateConfigRulesRequest extends $tea.Model {
|
|
|
69
68
|
static names(): { [key: string]: string } {
|
|
70
69
|
return {
|
|
71
70
|
aggregatorId: 'AggregatorId',
|
|
71
|
+
compliancePackId: 'CompliancePackId',
|
|
72
72
|
configRuleIds: 'ConfigRuleIds',
|
|
73
73
|
};
|
|
74
74
|
}
|
|
@@ -76,6 +76,7 @@ export class ActiveAggregateConfigRulesRequest extends $tea.Model {
|
|
|
76
76
|
static types(): { [key: string]: any } {
|
|
77
77
|
return {
|
|
78
78
|
aggregatorId: 'string',
|
|
79
|
+
compliancePackId: 'string',
|
|
79
80
|
configRuleIds: 'string',
|
|
80
81
|
};
|
|
81
82
|
}
|
|
@@ -144,24 +145,25 @@ export class ActiveAggregateConfigRulesResponse extends $tea.Model {
|
|
|
144
145
|
}
|
|
145
146
|
|
|
146
147
|
export class ActiveConfigRulesRequest extends $tea.Model {
|
|
148
|
+
compliancePackId?: string;
|
|
147
149
|
/**
|
|
148
150
|
* @remarks
|
|
149
151
|
* The rule ID. Separate multiple rule IDs with commas (,).
|
|
150
152
|
*
|
|
151
|
-
* This parameter is required.
|
|
152
|
-
*
|
|
153
153
|
* @example
|
|
154
154
|
* cr-2da35180a8d1008e****,cr-2da35180a8d1008e****
|
|
155
155
|
*/
|
|
156
156
|
configRuleIds?: string;
|
|
157
157
|
static names(): { [key: string]: string } {
|
|
158
158
|
return {
|
|
159
|
+
compliancePackId: 'CompliancePackId',
|
|
159
160
|
configRuleIds: 'ConfigRuleIds',
|
|
160
161
|
};
|
|
161
162
|
}
|
|
162
163
|
|
|
163
164
|
static types(): { [key: string]: any } {
|
|
164
165
|
return {
|
|
166
|
+
compliancePackId: 'string',
|
|
165
167
|
configRuleIds: 'string',
|
|
166
168
|
};
|
|
167
169
|
}
|
|
@@ -1315,6 +1317,16 @@ export class CreateAggregateConfigDeliveryChannelRequest extends $tea.Model {
|
|
|
1315
1317
|
* 1594295238-f9361358-5843-4294-8d30-b5183fac****
|
|
1316
1318
|
*/
|
|
1317
1319
|
clientToken?: string;
|
|
1320
|
+
/**
|
|
1321
|
+
* @remarks
|
|
1322
|
+
* Specifies whether to deliver scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots to Log Service at `04:00Z` and `16:00Z` every day. The time is displayed in UTC. Valid values:
|
|
1323
|
+
*
|
|
1324
|
+
* * true: Cloud Config delivers scheduled compliant snapshots.
|
|
1325
|
+
* * false: Cloud Config does not deliver scheduled compliant snapshots. This is the default value.
|
|
1326
|
+
*
|
|
1327
|
+
* @example
|
|
1328
|
+
* false
|
|
1329
|
+
*/
|
|
1318
1330
|
compliantSnapshot?: boolean;
|
|
1319
1331
|
/**
|
|
1320
1332
|
* @remarks
|
|
@@ -1635,6 +1647,7 @@ export class CreateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
1635
1647
|
*/
|
|
1636
1648
|
excludeResourceIdsScope?: string;
|
|
1637
1649
|
excludeTagsScope?: CreateAggregateConfigRuleRequestExcludeTagsScope[];
|
|
1650
|
+
extendContent?: string;
|
|
1638
1651
|
/**
|
|
1639
1652
|
* @remarks
|
|
1640
1653
|
* The ID of the resource directory to which the rule applies, which means that the resources within member accounts in the resource directory are evaluated based on the rule.
|
|
@@ -1792,6 +1805,7 @@ export class CreateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
1792
1805
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
1793
1806
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
1794
1807
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
1808
|
+
extendContent: 'ExtendContent',
|
|
1795
1809
|
folderIdsScope: 'FolderIdsScope',
|
|
1796
1810
|
inputParameters: 'InputParameters',
|
|
1797
1811
|
maximumExecutionFrequency: 'MaximumExecutionFrequency',
|
|
@@ -1823,6 +1837,7 @@ export class CreateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
1823
1837
|
excludeResourceGroupIdsScope: 'string',
|
|
1824
1838
|
excludeResourceIdsScope: 'string',
|
|
1825
1839
|
excludeTagsScope: { 'type': 'array', 'itemType': CreateAggregateConfigRuleRequestExcludeTagsScope },
|
|
1840
|
+
extendContent: 'string',
|
|
1826
1841
|
folderIdsScope: 'string',
|
|
1827
1842
|
inputParameters: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
1828
1843
|
maximumExecutionFrequency: 'string',
|
|
@@ -1929,6 +1944,7 @@ export class CreateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
1929
1944
|
*/
|
|
1930
1945
|
excludeResourceIdsScope?: string;
|
|
1931
1946
|
excludeTagsScope?: CreateAggregateConfigRuleShrinkRequestExcludeTagsScope[];
|
|
1947
|
+
extendContent?: string;
|
|
1932
1948
|
/**
|
|
1933
1949
|
* @remarks
|
|
1934
1950
|
* The ID of the resource directory to which the rule applies, which means that the resources within member accounts in the resource directory are evaluated based on the rule.
|
|
@@ -2086,6 +2102,7 @@ export class CreateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
2086
2102
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
2087
2103
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
2088
2104
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
2105
|
+
extendContent: 'ExtendContent',
|
|
2089
2106
|
folderIdsScope: 'FolderIdsScope',
|
|
2090
2107
|
inputParametersShrink: 'InputParameters',
|
|
2091
2108
|
maximumExecutionFrequency: 'MaximumExecutionFrequency',
|
|
@@ -2117,6 +2134,7 @@ export class CreateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
2117
2134
|
excludeResourceGroupIdsScope: 'string',
|
|
2118
2135
|
excludeResourceIdsScope: 'string',
|
|
2119
2136
|
excludeTagsScope: { 'type': 'array', 'itemType': CreateAggregateConfigRuleShrinkRequestExcludeTagsScope },
|
|
2137
|
+
extendContent: 'string',
|
|
2120
2138
|
folderIdsScope: 'string',
|
|
2121
2139
|
inputParametersShrink: 'string',
|
|
2122
2140
|
maximumExecutionFrequency: 'string',
|
|
@@ -2699,7 +2717,21 @@ export class CreateCompliancePackRequest extends $tea.Model {
|
|
|
2699
2717
|
* Test pack description.
|
|
2700
2718
|
*/
|
|
2701
2719
|
description?: string;
|
|
2720
|
+
/**
|
|
2721
|
+
* @remarks
|
|
2722
|
+
* ExcludeRegionIdsScope
|
|
2723
|
+
*
|
|
2724
|
+
* @example
|
|
2725
|
+
* cn-hangzhou
|
|
2726
|
+
*/
|
|
2702
2727
|
excludeRegionIdsScope?: string;
|
|
2728
|
+
/**
|
|
2729
|
+
* @remarks
|
|
2730
|
+
* ExcludeResourceGroupIdsScope. Separate multiple resource group IDs with commas (,).
|
|
2731
|
+
*
|
|
2732
|
+
* @example
|
|
2733
|
+
* rg-bnczc6r7rml****
|
|
2734
|
+
*/
|
|
2703
2735
|
excludeResourceGroupIdsScope?: string;
|
|
2704
2736
|
/**
|
|
2705
2737
|
* @remarks
|
|
@@ -2709,6 +2741,10 @@ export class CreateCompliancePackRequest extends $tea.Model {
|
|
|
2709
2741
|
* eip-8vbf3x310fn56ijfd****
|
|
2710
2742
|
*/
|
|
2711
2743
|
excludeResourceIdsScope?: string;
|
|
2744
|
+
/**
|
|
2745
|
+
* @remarks
|
|
2746
|
+
* ExcludeTagsScope
|
|
2747
|
+
*/
|
|
2712
2748
|
excludeTagsScope?: CreateCompliancePackRequestExcludeTagsScope[];
|
|
2713
2749
|
/**
|
|
2714
2750
|
* @remarks
|
|
@@ -2726,6 +2762,13 @@ export class CreateCompliancePackRequest extends $tea.Model {
|
|
|
2726
2762
|
* rg-aekzdibsjjc****
|
|
2727
2763
|
*/
|
|
2728
2764
|
resourceGroupIdsScope?: string;
|
|
2765
|
+
/**
|
|
2766
|
+
* @remarks
|
|
2767
|
+
* ResourceIdsScope
|
|
2768
|
+
*
|
|
2769
|
+
* @example
|
|
2770
|
+
* eip-8vbf3x310fn56ijfd****
|
|
2771
|
+
*/
|
|
2729
2772
|
resourceIdsScope?: string;
|
|
2730
2773
|
/**
|
|
2731
2774
|
* @remarks
|
|
@@ -2757,6 +2800,10 @@ export class CreateCompliancePackRequest extends $tea.Model {
|
|
|
2757
2800
|
* test
|
|
2758
2801
|
*/
|
|
2759
2802
|
tagValueScope?: string;
|
|
2803
|
+
/**
|
|
2804
|
+
* @remarks
|
|
2805
|
+
* TagsScope
|
|
2806
|
+
*/
|
|
2760
2807
|
tagsScope?: CreateCompliancePackRequestTagsScope[];
|
|
2761
2808
|
/**
|
|
2762
2809
|
* @remarks
|
|
@@ -2873,7 +2920,21 @@ export class CreateCompliancePackShrinkRequest extends $tea.Model {
|
|
|
2873
2920
|
* Test pack description.
|
|
2874
2921
|
*/
|
|
2875
2922
|
description?: string;
|
|
2923
|
+
/**
|
|
2924
|
+
* @remarks
|
|
2925
|
+
* ExcludeRegionIdsScope
|
|
2926
|
+
*
|
|
2927
|
+
* @example
|
|
2928
|
+
* cn-hangzhou
|
|
2929
|
+
*/
|
|
2876
2930
|
excludeRegionIdsScope?: string;
|
|
2931
|
+
/**
|
|
2932
|
+
* @remarks
|
|
2933
|
+
* ExcludeResourceGroupIdsScope. Separate multiple resource group IDs with commas (,).
|
|
2934
|
+
*
|
|
2935
|
+
* @example
|
|
2936
|
+
* rg-bnczc6r7rml****
|
|
2937
|
+
*/
|
|
2877
2938
|
excludeResourceGroupIdsScope?: string;
|
|
2878
2939
|
/**
|
|
2879
2940
|
* @remarks
|
|
@@ -2883,6 +2944,10 @@ export class CreateCompliancePackShrinkRequest extends $tea.Model {
|
|
|
2883
2944
|
* eip-8vbf3x310fn56ijfd****
|
|
2884
2945
|
*/
|
|
2885
2946
|
excludeResourceIdsScope?: string;
|
|
2947
|
+
/**
|
|
2948
|
+
* @remarks
|
|
2949
|
+
* ExcludeTagsScope
|
|
2950
|
+
*/
|
|
2886
2951
|
excludeTagsScope?: CreateCompliancePackShrinkRequestExcludeTagsScope[];
|
|
2887
2952
|
/**
|
|
2888
2953
|
* @remarks
|
|
@@ -2900,6 +2965,13 @@ export class CreateCompliancePackShrinkRequest extends $tea.Model {
|
|
|
2900
2965
|
* rg-aekzdibsjjc****
|
|
2901
2966
|
*/
|
|
2902
2967
|
resourceGroupIdsScope?: string;
|
|
2968
|
+
/**
|
|
2969
|
+
* @remarks
|
|
2970
|
+
* ResourceIdsScope
|
|
2971
|
+
*
|
|
2972
|
+
* @example
|
|
2973
|
+
* eip-8vbf3x310fn56ijfd****
|
|
2974
|
+
*/
|
|
2903
2975
|
resourceIdsScope?: string;
|
|
2904
2976
|
/**
|
|
2905
2977
|
* @remarks
|
|
@@ -2931,6 +3003,10 @@ export class CreateCompliancePackShrinkRequest extends $tea.Model {
|
|
|
2931
3003
|
* test
|
|
2932
3004
|
*/
|
|
2933
3005
|
tagValueScope?: string;
|
|
3006
|
+
/**
|
|
3007
|
+
* @remarks
|
|
3008
|
+
* TagsScope
|
|
3009
|
+
*/
|
|
2934
3010
|
tagsScope?: CreateCompliancePackShrinkRequestTagsScope[];
|
|
2935
3011
|
/**
|
|
2936
3012
|
* @remarks
|
|
@@ -3063,6 +3139,16 @@ export class CreateConfigDeliveryChannelRequest extends $tea.Model {
|
|
|
3063
3139
|
* 1594295238-f9361358-5843-4294-8d30-b5183fac****
|
|
3064
3140
|
*/
|
|
3065
3141
|
clientToken?: string;
|
|
3142
|
+
/**
|
|
3143
|
+
* @remarks
|
|
3144
|
+
* Specifies whether to deliver scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots at `04:00Z` and `16:00Z` to Log Service every day. The time is displayed in UTC. Valid values:
|
|
3145
|
+
*
|
|
3146
|
+
* * true: Cloud Config delivers scheduled compliant snapshots.
|
|
3147
|
+
* * false (default): Cloud Config does not deliver scheduled compliant snapshots.
|
|
3148
|
+
*
|
|
3149
|
+
* @example
|
|
3150
|
+
* false
|
|
3151
|
+
*/
|
|
3066
3152
|
compliantSnapshot?: boolean;
|
|
3067
3153
|
/**
|
|
3068
3154
|
* @remarks
|
|
@@ -3311,6 +3397,9 @@ export class CreateConfigRuleRequest extends $tea.Model {
|
|
|
3311
3397
|
* The name of the rule.
|
|
3312
3398
|
*
|
|
3313
3399
|
* This parameter is required.
|
|
3400
|
+
*
|
|
3401
|
+
* @example
|
|
3402
|
+
* required-tags
|
|
3314
3403
|
*/
|
|
3315
3404
|
configRuleName?: string;
|
|
3316
3405
|
/**
|
|
@@ -3331,9 +3420,26 @@ export class CreateConfigRuleRequest extends $tea.Model {
|
|
|
3331
3420
|
/**
|
|
3332
3421
|
* @remarks
|
|
3333
3422
|
* The description of the rule.
|
|
3423
|
+
*
|
|
3424
|
+
* @example
|
|
3425
|
+
* example-description
|
|
3334
3426
|
*/
|
|
3335
3427
|
description?: string;
|
|
3428
|
+
/**
|
|
3429
|
+
* @remarks
|
|
3430
|
+
* ExcludeRegionIdsScope
|
|
3431
|
+
*
|
|
3432
|
+
* @example
|
|
3433
|
+
* cn-shanghai
|
|
3434
|
+
*/
|
|
3336
3435
|
excludeRegionIdsScope?: string;
|
|
3436
|
+
/**
|
|
3437
|
+
* @remarks
|
|
3438
|
+
* ExcludeResourceGroupIdsScope
|
|
3439
|
+
*
|
|
3440
|
+
* @example
|
|
3441
|
+
* rg-bnczc6r7rml****
|
|
3442
|
+
*/
|
|
3337
3443
|
excludeResourceGroupIdsScope?: string;
|
|
3338
3444
|
/**
|
|
3339
3445
|
* @remarks
|
|
@@ -3345,7 +3451,19 @@ export class CreateConfigRuleRequest extends $tea.Model {
|
|
|
3345
3451
|
* lb-t4nbowvtbkss7t326****
|
|
3346
3452
|
*/
|
|
3347
3453
|
excludeResourceIdsScope?: string;
|
|
3454
|
+
/**
|
|
3455
|
+
* @remarks
|
|
3456
|
+
* ExcludeTagsScope
|
|
3457
|
+
*/
|
|
3348
3458
|
excludeTagsScope?: CreateConfigRuleRequestExcludeTagsScope[];
|
|
3459
|
+
/**
|
|
3460
|
+
* @remarks
|
|
3461
|
+
* Optional field, only used in conjunction with the 24-hour cycle execution to set the trigger time.
|
|
3462
|
+
*
|
|
3463
|
+
* @example
|
|
3464
|
+
* {"fixedHour":"13"}
|
|
3465
|
+
*/
|
|
3466
|
+
extendContent?: string;
|
|
3349
3467
|
/**
|
|
3350
3468
|
* @remarks
|
|
3351
3469
|
* The input parameter of the rule.
|
|
@@ -3390,6 +3508,13 @@ export class CreateConfigRuleRequest extends $tea.Model {
|
|
|
3390
3508
|
* rg-aekzc7r7rhx****
|
|
3391
3509
|
*/
|
|
3392
3510
|
resourceGroupIdsScope?: string;
|
|
3511
|
+
/**
|
|
3512
|
+
* @remarks
|
|
3513
|
+
* ResourceIdsScope
|
|
3514
|
+
*
|
|
3515
|
+
* @example
|
|
3516
|
+
* lb-5cmbowstbkss9ta03****
|
|
3517
|
+
*/
|
|
3393
3518
|
resourceIdsScope?: string;
|
|
3394
3519
|
/**
|
|
3395
3520
|
* @remarks
|
|
@@ -3474,6 +3599,10 @@ export class CreateConfigRuleRequest extends $tea.Model {
|
|
|
3474
3599
|
* test
|
|
3475
3600
|
*/
|
|
3476
3601
|
tagValueScope?: string;
|
|
3602
|
+
/**
|
|
3603
|
+
* @remarks
|
|
3604
|
+
* TagsScope
|
|
3605
|
+
*/
|
|
3477
3606
|
tagsScope?: CreateConfigRuleRequestTagsScope[];
|
|
3478
3607
|
static names(): { [key: string]: string } {
|
|
3479
3608
|
return {
|
|
@@ -3485,6 +3614,7 @@ export class CreateConfigRuleRequest extends $tea.Model {
|
|
|
3485
3614
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
3486
3615
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
3487
3616
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
3617
|
+
extendContent: 'ExtendContent',
|
|
3488
3618
|
inputParameters: 'InputParameters',
|
|
3489
3619
|
maximumExecutionFrequency: 'MaximumExecutionFrequency',
|
|
3490
3620
|
regionIdsScope: 'RegionIdsScope',
|
|
@@ -3511,6 +3641,7 @@ export class CreateConfigRuleRequest extends $tea.Model {
|
|
|
3511
3641
|
excludeResourceGroupIdsScope: 'string',
|
|
3512
3642
|
excludeResourceIdsScope: 'string',
|
|
3513
3643
|
excludeTagsScope: { 'type': 'array', 'itemType': CreateConfigRuleRequestExcludeTagsScope },
|
|
3644
|
+
extendContent: 'string',
|
|
3514
3645
|
inputParameters: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
3515
3646
|
maximumExecutionFrequency: 'string',
|
|
3516
3647
|
regionIdsScope: 'string',
|
|
@@ -3546,6 +3677,9 @@ export class CreateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
3546
3677
|
* The name of the rule.
|
|
3547
3678
|
*
|
|
3548
3679
|
* This parameter is required.
|
|
3680
|
+
*
|
|
3681
|
+
* @example
|
|
3682
|
+
* required-tags
|
|
3549
3683
|
*/
|
|
3550
3684
|
configRuleName?: string;
|
|
3551
3685
|
/**
|
|
@@ -3566,9 +3700,26 @@ export class CreateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
3566
3700
|
/**
|
|
3567
3701
|
* @remarks
|
|
3568
3702
|
* The description of the rule.
|
|
3703
|
+
*
|
|
3704
|
+
* @example
|
|
3705
|
+
* example-description
|
|
3569
3706
|
*/
|
|
3570
3707
|
description?: string;
|
|
3708
|
+
/**
|
|
3709
|
+
* @remarks
|
|
3710
|
+
* ExcludeRegionIdsScope
|
|
3711
|
+
*
|
|
3712
|
+
* @example
|
|
3713
|
+
* cn-shanghai
|
|
3714
|
+
*/
|
|
3571
3715
|
excludeRegionIdsScope?: string;
|
|
3716
|
+
/**
|
|
3717
|
+
* @remarks
|
|
3718
|
+
* ExcludeResourceGroupIdsScope
|
|
3719
|
+
*
|
|
3720
|
+
* @example
|
|
3721
|
+
* rg-bnczc6r7rml****
|
|
3722
|
+
*/
|
|
3572
3723
|
excludeResourceGroupIdsScope?: string;
|
|
3573
3724
|
/**
|
|
3574
3725
|
* @remarks
|
|
@@ -3580,7 +3731,19 @@ export class CreateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
3580
3731
|
* lb-t4nbowvtbkss7t326****
|
|
3581
3732
|
*/
|
|
3582
3733
|
excludeResourceIdsScope?: string;
|
|
3734
|
+
/**
|
|
3735
|
+
* @remarks
|
|
3736
|
+
* ExcludeTagsScope
|
|
3737
|
+
*/
|
|
3583
3738
|
excludeTagsScope?: CreateConfigRuleShrinkRequestExcludeTagsScope[];
|
|
3739
|
+
/**
|
|
3740
|
+
* @remarks
|
|
3741
|
+
* Optional field, only used in conjunction with the 24-hour cycle execution to set the trigger time.
|
|
3742
|
+
*
|
|
3743
|
+
* @example
|
|
3744
|
+
* {"fixedHour":"13"}
|
|
3745
|
+
*/
|
|
3746
|
+
extendContent?: string;
|
|
3584
3747
|
/**
|
|
3585
3748
|
* @remarks
|
|
3586
3749
|
* The input parameter of the rule.
|
|
@@ -3625,6 +3788,13 @@ export class CreateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
3625
3788
|
* rg-aekzc7r7rhx****
|
|
3626
3789
|
*/
|
|
3627
3790
|
resourceGroupIdsScope?: string;
|
|
3791
|
+
/**
|
|
3792
|
+
* @remarks
|
|
3793
|
+
* ResourceIdsScope
|
|
3794
|
+
*
|
|
3795
|
+
* @example
|
|
3796
|
+
* lb-5cmbowstbkss9ta03****
|
|
3797
|
+
*/
|
|
3628
3798
|
resourceIdsScope?: string;
|
|
3629
3799
|
/**
|
|
3630
3800
|
* @remarks
|
|
@@ -3709,6 +3879,10 @@ export class CreateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
3709
3879
|
* test
|
|
3710
3880
|
*/
|
|
3711
3881
|
tagValueScope?: string;
|
|
3882
|
+
/**
|
|
3883
|
+
* @remarks
|
|
3884
|
+
* TagsScope
|
|
3885
|
+
*/
|
|
3712
3886
|
tagsScope?: CreateConfigRuleShrinkRequestTagsScope[];
|
|
3713
3887
|
static names(): { [key: string]: string } {
|
|
3714
3888
|
return {
|
|
@@ -3720,6 +3894,7 @@ export class CreateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
3720
3894
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
3721
3895
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
3722
3896
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
3897
|
+
extendContent: 'ExtendContent',
|
|
3723
3898
|
inputParametersShrink: 'InputParameters',
|
|
3724
3899
|
maximumExecutionFrequency: 'MaximumExecutionFrequency',
|
|
3725
3900
|
regionIdsScope: 'RegionIdsScope',
|
|
@@ -3746,6 +3921,7 @@ export class CreateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
3746
3921
|
excludeResourceGroupIdsScope: 'string',
|
|
3747
3922
|
excludeResourceIdsScope: 'string',
|
|
3748
3923
|
excludeTagsScope: { 'type': 'array', 'itemType': CreateConfigRuleShrinkRequestExcludeTagsScope },
|
|
3924
|
+
extendContent: 'string',
|
|
3749
3925
|
inputParametersShrink: 'string',
|
|
3750
3926
|
maximumExecutionFrequency: 'string',
|
|
3751
3927
|
regionIdsScope: 'string',
|
|
@@ -4256,14 +4432,13 @@ export class DeactiveAggregateConfigRulesRequest extends $tea.Model {
|
|
|
4256
4432
|
* ca-04b3fd170e340007****
|
|
4257
4433
|
*/
|
|
4258
4434
|
aggregatorId?: string;
|
|
4435
|
+
compliancePackId?: string;
|
|
4259
4436
|
/**
|
|
4260
4437
|
* @remarks
|
|
4261
4438
|
* The rule ID. Separate multiple rule IDs with commas (,).
|
|
4262
4439
|
*
|
|
4263
4440
|
* For more information about how to obtain the ID of a rule, see [ListAggregateConfigRules](https://help.aliyun.com/document_detail/264148.html).
|
|
4264
4441
|
*
|
|
4265
|
-
* This parameter is required.
|
|
4266
|
-
*
|
|
4267
4442
|
* @example
|
|
4268
4443
|
* cr-5772ba41209e007b****
|
|
4269
4444
|
*/
|
|
@@ -4271,6 +4446,7 @@ export class DeactiveAggregateConfigRulesRequest extends $tea.Model {
|
|
|
4271
4446
|
static names(): { [key: string]: string } {
|
|
4272
4447
|
return {
|
|
4273
4448
|
aggregatorId: 'AggregatorId',
|
|
4449
|
+
compliancePackId: 'CompliancePackId',
|
|
4274
4450
|
configRuleIds: 'ConfigRuleIds',
|
|
4275
4451
|
};
|
|
4276
4452
|
}
|
|
@@ -4278,6 +4454,7 @@ export class DeactiveAggregateConfigRulesRequest extends $tea.Model {
|
|
|
4278
4454
|
static types(): { [key: string]: any } {
|
|
4279
4455
|
return {
|
|
4280
4456
|
aggregatorId: 'string',
|
|
4457
|
+
compliancePackId: 'string',
|
|
4281
4458
|
configRuleIds: 'string',
|
|
4282
4459
|
};
|
|
4283
4460
|
}
|
|
@@ -4346,26 +4523,27 @@ export class DeactiveAggregateConfigRulesResponse extends $tea.Model {
|
|
|
4346
4523
|
}
|
|
4347
4524
|
|
|
4348
4525
|
export class DeactiveConfigRulesRequest extends $tea.Model {
|
|
4526
|
+
compliancePackId?: string;
|
|
4349
4527
|
/**
|
|
4350
4528
|
* @remarks
|
|
4351
4529
|
* The ID of the rule. Separate multiple rule IDs with commas (,).
|
|
4352
4530
|
*
|
|
4353
4531
|
* For more information about how to obtain the ID of a rule, see [ListConfigRules](https://help.aliyun.com/document_detail/169607.html).
|
|
4354
4532
|
*
|
|
4355
|
-
* This parameter is required.
|
|
4356
|
-
*
|
|
4357
4533
|
* @example
|
|
4358
4534
|
* cr-19a56457e0d90058****
|
|
4359
4535
|
*/
|
|
4360
4536
|
configRuleIds?: string;
|
|
4361
4537
|
static names(): { [key: string]: string } {
|
|
4362
4538
|
return {
|
|
4539
|
+
compliancePackId: 'CompliancePackId',
|
|
4363
4540
|
configRuleIds: 'ConfigRuleIds',
|
|
4364
4541
|
};
|
|
4365
4542
|
}
|
|
4366
4543
|
|
|
4367
4544
|
static types(): { [key: string]: any } {
|
|
4368
4545
|
return {
|
|
4546
|
+
compliancePackId: 'string',
|
|
4369
4547
|
configRuleIds: 'string',
|
|
4370
4548
|
};
|
|
4371
4549
|
}
|
|
@@ -9902,6 +10080,7 @@ export class GetIntegratedServiceStatusRequest extends $tea.Model {
|
|
|
9902
10080
|
}
|
|
9903
10081
|
|
|
9904
10082
|
export class GetIntegratedServiceStatusResponseBody extends $tea.Model {
|
|
10083
|
+
aggregatorDeliveryDataType?: string;
|
|
9905
10084
|
/**
|
|
9906
10085
|
* @remarks
|
|
9907
10086
|
* Indicates whether the product has been integrated. Valid values:
|
|
@@ -9934,6 +10113,7 @@ export class GetIntegratedServiceStatusResponseBody extends $tea.Model {
|
|
|
9934
10113
|
requestId?: string;
|
|
9935
10114
|
static names(): { [key: string]: string } {
|
|
9936
10115
|
return {
|
|
10116
|
+
aggregatorDeliveryDataType: 'AggregatorDeliveryDataType',
|
|
9937
10117
|
data: 'Data',
|
|
9938
10118
|
integratedTypes: 'IntegratedTypes',
|
|
9939
10119
|
requestId: 'RequestId',
|
|
@@ -9942,6 +10122,7 @@ export class GetIntegratedServiceStatusResponseBody extends $tea.Model {
|
|
|
9942
10122
|
|
|
9943
10123
|
static types(): { [key: string]: any } {
|
|
9944
10124
|
return {
|
|
10125
|
+
aggregatorDeliveryDataType: 'string',
|
|
9945
10126
|
data: 'boolean',
|
|
9946
10127
|
integratedTypes: 'string',
|
|
9947
10128
|
requestId: 'string',
|
|
@@ -11349,7 +11530,7 @@ export class ListAggregateCompliancePacksRequest extends $tea.Model {
|
|
|
11349
11530
|
aggregatorId?: string;
|
|
11350
11531
|
/**
|
|
11351
11532
|
* @remarks
|
|
11352
|
-
* The page
|
|
11533
|
+
* The number of the page to return.
|
|
11353
11534
|
*
|
|
11354
11535
|
* Pages start from page 1. Default value: 1.
|
|
11355
11536
|
*
|
|
@@ -11359,9 +11540,9 @@ export class ListAggregateCompliancePacksRequest extends $tea.Model {
|
|
|
11359
11540
|
pageNumber?: number;
|
|
11360
11541
|
/**
|
|
11361
11542
|
* @remarks
|
|
11362
|
-
* The number of entries
|
|
11543
|
+
* The number of entries to return on each page.
|
|
11363
11544
|
*
|
|
11364
|
-
* Valid values: 1 to 100.
|
|
11545
|
+
* Valid values: 1 to 100. Default value: 10.
|
|
11365
11546
|
*
|
|
11366
11547
|
* @example
|
|
11367
11548
|
* 20
|
|
@@ -11404,7 +11585,7 @@ export class ListAggregateCompliancePacksRequest extends $tea.Model {
|
|
|
11404
11585
|
export class ListAggregateCompliancePacksResponseBody extends $tea.Model {
|
|
11405
11586
|
/**
|
|
11406
11587
|
* @remarks
|
|
11407
|
-
* The compliance packages
|
|
11588
|
+
* The information about the compliance packages.
|
|
11408
11589
|
*/
|
|
11409
11590
|
compliancePacksResult?: ListAggregateCompliancePacksResponseBodyCompliancePacksResult;
|
|
11410
11591
|
/**
|
|
@@ -11852,6 +12033,7 @@ export class ListAggregateConfigRulesRequest extends $tea.Model {
|
|
|
11852
12033
|
* ca-f632626622af0079****
|
|
11853
12034
|
*/
|
|
11854
12035
|
aggregatorId?: string;
|
|
12036
|
+
compliancePackId?: string;
|
|
11855
12037
|
/**
|
|
11856
12038
|
* @remarks
|
|
11857
12039
|
* The compliance evaluation result. Valid values:
|
|
@@ -11939,6 +12121,7 @@ export class ListAggregateConfigRulesRequest extends $tea.Model {
|
|
|
11939
12121
|
static names(): { [key: string]: string } {
|
|
11940
12122
|
return {
|
|
11941
12123
|
aggregatorId: 'AggregatorId',
|
|
12124
|
+
compliancePackId: 'CompliancePackId',
|
|
11942
12125
|
complianceType: 'ComplianceType',
|
|
11943
12126
|
configRuleName: 'ConfigRuleName',
|
|
11944
12127
|
configRuleState: 'ConfigRuleState',
|
|
@@ -11953,6 +12136,7 @@ export class ListAggregateConfigRulesRequest extends $tea.Model {
|
|
|
11953
12136
|
static types(): { [key: string]: any } {
|
|
11954
12137
|
return {
|
|
11955
12138
|
aggregatorId: 'string',
|
|
12139
|
+
compliancePackId: 'string',
|
|
11956
12140
|
complianceType: 'string',
|
|
11957
12141
|
configRuleName: 'string',
|
|
11958
12142
|
configRuleState: 'string',
|
|
@@ -13123,7 +13307,7 @@ export class ListCompliancePacksRequest extends $tea.Model {
|
|
|
13123
13307
|
* @remarks
|
|
13124
13308
|
* The page number.
|
|
13125
13309
|
*
|
|
13126
|
-
* Pages start from page 1. Default value: 1
|
|
13310
|
+
* Pages start from page 1. Default value: 1
|
|
13127
13311
|
*
|
|
13128
13312
|
* @example
|
|
13129
13313
|
* 1
|
|
@@ -13539,6 +13723,7 @@ export class ListConfigRuleEvaluationStatisticsResponse extends $tea.Model {
|
|
|
13539
13723
|
}
|
|
13540
13724
|
|
|
13541
13725
|
export class ListConfigRulesRequest extends $tea.Model {
|
|
13726
|
+
compliancePackId?: string;
|
|
13542
13727
|
/**
|
|
13543
13728
|
* @remarks
|
|
13544
13729
|
* The compliance evaluation result of the rule. Valid values:
|
|
@@ -13625,6 +13810,7 @@ export class ListConfigRulesRequest extends $tea.Model {
|
|
|
13625
13810
|
riskLevel?: number;
|
|
13626
13811
|
static names(): { [key: string]: string } {
|
|
13627
13812
|
return {
|
|
13813
|
+
compliancePackId: 'CompliancePackId',
|
|
13628
13814
|
complianceType: 'ComplianceType',
|
|
13629
13815
|
configRuleName: 'ConfigRuleName',
|
|
13630
13816
|
configRuleState: 'ConfigRuleState',
|
|
@@ -13638,6 +13824,7 @@ export class ListConfigRulesRequest extends $tea.Model {
|
|
|
13638
13824
|
|
|
13639
13825
|
static types(): { [key: string]: any } {
|
|
13640
13826
|
return {
|
|
13827
|
+
compliancePackId: 'string',
|
|
13641
13828
|
complianceType: 'string',
|
|
13642
13829
|
configRuleName: 'string',
|
|
13643
13830
|
configRuleState: 'string',
|
|
@@ -15037,7 +15224,7 @@ export class ListResourcesByAdvancedSearchResponse extends $tea.Model {
|
|
|
15037
15224
|
export class ListSupportedProductsRequest extends $tea.Model {
|
|
15038
15225
|
/**
|
|
15039
15226
|
* @remarks
|
|
15040
|
-
* The maximum number of entries to return
|
|
15227
|
+
* The maximum number of entries to return in a request.
|
|
15041
15228
|
*
|
|
15042
15229
|
* Valid values: 1 to 500. Default value: 200.
|
|
15043
15230
|
*
|
|
@@ -17087,6 +17274,15 @@ export class UpdateAggregateConfigDeliveryChannelRequest extends $tea.Model {
|
|
|
17087
17274
|
*/
|
|
17088
17275
|
clientToken?: string;
|
|
17089
17276
|
/**
|
|
17277
|
+
* @remarks
|
|
17278
|
+
* Specifies whether to deliver scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots at `04:00Z` and `16:00Z` to Log Service every day. The time is displayed in UTC. Valid values:
|
|
17279
|
+
*
|
|
17280
|
+
* * true: Cloud Config delivers scheduled compliant snapshots.
|
|
17281
|
+
* * false (default): Cloud Config does not deliver scheduled compliant snapshots.
|
|
17282
|
+
*
|
|
17283
|
+
* @example
|
|
17284
|
+
* false
|
|
17285
|
+
*
|
|
17090
17286
|
* **if can be null:**
|
|
17091
17287
|
* true
|
|
17092
17288
|
*/
|
|
@@ -17343,6 +17539,13 @@ export class UpdateAggregateConfigDeliveryChannelResponse extends $tea.Model {
|
|
|
17343
17539
|
}
|
|
17344
17540
|
|
|
17345
17541
|
export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
17542
|
+
/**
|
|
17543
|
+
* @remarks
|
|
17544
|
+
* The IDs of the member accounts to which the rule applies, which means that the resources within the member accounts are evaluated based on the rule. Separate multiple member account IDs with commas (,).
|
|
17545
|
+
*
|
|
17546
|
+
* @example
|
|
17547
|
+
* 115748125982****
|
|
17548
|
+
*/
|
|
17346
17549
|
accountIdsScope?: string;
|
|
17347
17550
|
/**
|
|
17348
17551
|
* @remarks
|
|
@@ -17381,6 +17584,9 @@ export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
17381
17584
|
* The name of the rule.
|
|
17382
17585
|
*
|
|
17383
17586
|
* For more information about how to query the name of a rule, see [ListAggregateConfigRules](https://help.aliyun.com/document_detail/264148.html).
|
|
17587
|
+
*
|
|
17588
|
+
* @example
|
|
17589
|
+
* test_rule
|
|
17384
17590
|
*/
|
|
17385
17591
|
configRuleName?: string;
|
|
17386
17592
|
/**
|
|
@@ -17399,6 +17605,9 @@ export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
17399
17605
|
/**
|
|
17400
17606
|
* @remarks
|
|
17401
17607
|
* The description of the rule.
|
|
17608
|
+
*
|
|
17609
|
+
* @example
|
|
17610
|
+
* test_description
|
|
17402
17611
|
*/
|
|
17403
17612
|
description?: string;
|
|
17404
17613
|
/**
|
|
@@ -17425,7 +17634,21 @@ export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
17425
17634
|
* fd-pWmkqZ****
|
|
17426
17635
|
*/
|
|
17427
17636
|
excludeFolderIdsScope?: string;
|
|
17637
|
+
/**
|
|
17638
|
+
* @remarks
|
|
17639
|
+
* The IDs of the regions to which the rule not applies. Separate multiple region IDs with commas (,).
|
|
17640
|
+
*
|
|
17641
|
+
* @example
|
|
17642
|
+
* cn-shanghai
|
|
17643
|
+
*/
|
|
17428
17644
|
excludeRegionIdsScope?: string;
|
|
17645
|
+
/**
|
|
17646
|
+
* @remarks
|
|
17647
|
+
* The IDs of the resource groups to which the rule not applies. Separate multiple resource group IDs with commas (,).
|
|
17648
|
+
*
|
|
17649
|
+
* @example
|
|
17650
|
+
* rg-bnczc6r7rml****
|
|
17651
|
+
*/
|
|
17429
17652
|
excludeResourceGroupIdsScope?: string;
|
|
17430
17653
|
/**
|
|
17431
17654
|
* @remarks
|
|
@@ -17437,6 +17660,10 @@ export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
17437
17660
|
* lb-t4nbowvtbkss7t326****
|
|
17438
17661
|
*/
|
|
17439
17662
|
excludeResourceIdsScope?: string;
|
|
17663
|
+
/**
|
|
17664
|
+
* @remarks
|
|
17665
|
+
* Exclude the specific tag scope of resources .
|
|
17666
|
+
*/
|
|
17440
17667
|
excludeTagsScope?: UpdateAggregateConfigRuleRequestExcludeTagsScope[];
|
|
17441
17668
|
/**
|
|
17442
17669
|
* @remarks
|
|
@@ -17496,6 +17723,13 @@ export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
17496
17723
|
* rg-aekzc7r7rhx****
|
|
17497
17724
|
*/
|
|
17498
17725
|
resourceGroupIdsScope?: string;
|
|
17726
|
+
/**
|
|
17727
|
+
* @remarks
|
|
17728
|
+
* The IDs of the resources included from the compliance evaluations performed by the rule. Separate multiple resource IDs with commas (,).
|
|
17729
|
+
*
|
|
17730
|
+
* @example
|
|
17731
|
+
* lb-5cmbowstbkss9ta03****
|
|
17732
|
+
*/
|
|
17499
17733
|
resourceIdsScope?: string;
|
|
17500
17734
|
/**
|
|
17501
17735
|
* @remarks
|
|
@@ -17548,6 +17782,10 @@ export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
17548
17782
|
* test
|
|
17549
17783
|
*/
|
|
17550
17784
|
tagValueScope?: string;
|
|
17785
|
+
/**
|
|
17786
|
+
* @remarks
|
|
17787
|
+
* The valid tag scope of resources.
|
|
17788
|
+
*/
|
|
17551
17789
|
tagsScope?: UpdateAggregateConfigRuleRequestTagsScope[];
|
|
17552
17790
|
static names(): { [key: string]: string } {
|
|
17553
17791
|
return {
|
|
@@ -17615,6 +17853,13 @@ export class UpdateAggregateConfigRuleRequest extends $tea.Model {
|
|
|
17615
17853
|
}
|
|
17616
17854
|
|
|
17617
17855
|
export class UpdateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
17856
|
+
/**
|
|
17857
|
+
* @remarks
|
|
17858
|
+
* The IDs of the member accounts to which the rule applies, which means that the resources within the member accounts are evaluated based on the rule. Separate multiple member account IDs with commas (,).
|
|
17859
|
+
*
|
|
17860
|
+
* @example
|
|
17861
|
+
* 115748125982****
|
|
17862
|
+
*/
|
|
17618
17863
|
accountIdsScope?: string;
|
|
17619
17864
|
/**
|
|
17620
17865
|
* @remarks
|
|
@@ -17653,6 +17898,9 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
17653
17898
|
* The name of the rule.
|
|
17654
17899
|
*
|
|
17655
17900
|
* For more information about how to query the name of a rule, see [ListAggregateConfigRules](https://help.aliyun.com/document_detail/264148.html).
|
|
17901
|
+
*
|
|
17902
|
+
* @example
|
|
17903
|
+
* test_rule
|
|
17656
17904
|
*/
|
|
17657
17905
|
configRuleName?: string;
|
|
17658
17906
|
/**
|
|
@@ -17671,6 +17919,9 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
17671
17919
|
/**
|
|
17672
17920
|
* @remarks
|
|
17673
17921
|
* The description of the rule.
|
|
17922
|
+
*
|
|
17923
|
+
* @example
|
|
17924
|
+
* test_description
|
|
17674
17925
|
*/
|
|
17675
17926
|
description?: string;
|
|
17676
17927
|
/**
|
|
@@ -17697,7 +17948,21 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
17697
17948
|
* fd-pWmkqZ****
|
|
17698
17949
|
*/
|
|
17699
17950
|
excludeFolderIdsScope?: string;
|
|
17951
|
+
/**
|
|
17952
|
+
* @remarks
|
|
17953
|
+
* The IDs of the regions to which the rule not applies. Separate multiple region IDs with commas (,).
|
|
17954
|
+
*
|
|
17955
|
+
* @example
|
|
17956
|
+
* cn-shanghai
|
|
17957
|
+
*/
|
|
17700
17958
|
excludeRegionIdsScope?: string;
|
|
17959
|
+
/**
|
|
17960
|
+
* @remarks
|
|
17961
|
+
* The IDs of the resource groups to which the rule not applies. Separate multiple resource group IDs with commas (,).
|
|
17962
|
+
*
|
|
17963
|
+
* @example
|
|
17964
|
+
* rg-bnczc6r7rml****
|
|
17965
|
+
*/
|
|
17701
17966
|
excludeResourceGroupIdsScope?: string;
|
|
17702
17967
|
/**
|
|
17703
17968
|
* @remarks
|
|
@@ -17709,6 +17974,10 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
17709
17974
|
* lb-t4nbowvtbkss7t326****
|
|
17710
17975
|
*/
|
|
17711
17976
|
excludeResourceIdsScope?: string;
|
|
17977
|
+
/**
|
|
17978
|
+
* @remarks
|
|
17979
|
+
* Exclude the specific tag scope of resources .
|
|
17980
|
+
*/
|
|
17712
17981
|
excludeTagsScope?: UpdateAggregateConfigRuleShrinkRequestExcludeTagsScope[];
|
|
17713
17982
|
/**
|
|
17714
17983
|
* @remarks
|
|
@@ -17768,6 +18037,13 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
17768
18037
|
* rg-aekzc7r7rhx****
|
|
17769
18038
|
*/
|
|
17770
18039
|
resourceGroupIdsScope?: string;
|
|
18040
|
+
/**
|
|
18041
|
+
* @remarks
|
|
18042
|
+
* The IDs of the resources included from the compliance evaluations performed by the rule. Separate multiple resource IDs with commas (,).
|
|
18043
|
+
*
|
|
18044
|
+
* @example
|
|
18045
|
+
* lb-5cmbowstbkss9ta03****
|
|
18046
|
+
*/
|
|
17771
18047
|
resourceIdsScope?: string;
|
|
17772
18048
|
/**
|
|
17773
18049
|
* @remarks
|
|
@@ -17820,6 +18096,10 @@ export class UpdateAggregateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
17820
18096
|
* test
|
|
17821
18097
|
*/
|
|
17822
18098
|
tagValueScope?: string;
|
|
18099
|
+
/**
|
|
18100
|
+
* @remarks
|
|
18101
|
+
* The valid tag scope of resources.
|
|
18102
|
+
*/
|
|
17823
18103
|
tagsScope?: UpdateAggregateConfigRuleShrinkRequestTagsScope[];
|
|
17824
18104
|
static names(): { [key: string]: string } {
|
|
17825
18105
|
return {
|
|
@@ -18162,6 +18442,9 @@ export class UpdateAggregatorRequest extends $tea.Model {
|
|
|
18162
18442
|
* The description of the account group.
|
|
18163
18443
|
*
|
|
18164
18444
|
* For more information about how to obtain the description of an account group, see [ListAggregators](https://help.aliyun.com/document_detail/255797.html).
|
|
18445
|
+
*
|
|
18446
|
+
* @example
|
|
18447
|
+
* Test_Aggregator_Description
|
|
18165
18448
|
*/
|
|
18166
18449
|
description?: string;
|
|
18167
18450
|
static names(): { [key: string]: string } {
|
|
@@ -18235,6 +18518,9 @@ export class UpdateAggregatorShrinkRequest extends $tea.Model {
|
|
|
18235
18518
|
* The description of the account group.
|
|
18236
18519
|
*
|
|
18237
18520
|
* For more information about how to obtain the description of an account group, see [ListAggregators](https://help.aliyun.com/document_detail/255797.html).
|
|
18521
|
+
*
|
|
18522
|
+
* @example
|
|
18523
|
+
* Test_Aggregator_Description
|
|
18238
18524
|
*/
|
|
18239
18525
|
description?: string;
|
|
18240
18526
|
static names(): { [key: string]: string } {
|
|
@@ -18688,6 +18974,15 @@ export class UpdateConfigDeliveryChannelRequest extends $tea.Model {
|
|
|
18688
18974
|
*/
|
|
18689
18975
|
clientToken?: string;
|
|
18690
18976
|
/**
|
|
18977
|
+
* @remarks
|
|
18978
|
+
* Specifies whether to deliver scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots at `04:00Z` and `16:00Z` to Log Service every day. The time is displayed in UTC. Valid values:
|
|
18979
|
+
*
|
|
18980
|
+
* * true: Cloud Config delivers compliant snapshots.
|
|
18981
|
+
* * false (default): Cloud Config does not deliver scheduled compliant snapshots.
|
|
18982
|
+
*
|
|
18983
|
+
* @example
|
|
18984
|
+
* false
|
|
18985
|
+
*
|
|
18691
18986
|
* **if can be null:**
|
|
18692
18987
|
* true
|
|
18693
18988
|
*/
|
|
@@ -19000,6 +19295,11 @@ export class UpdateConfigRuleRequest extends $tea.Model {
|
|
|
19000
19295
|
*/
|
|
19001
19296
|
excludeResourceIdsScope?: string;
|
|
19002
19297
|
excludeTagsScope?: UpdateConfigRuleRequestExcludeTagsScope[];
|
|
19298
|
+
/**
|
|
19299
|
+
* **if can be null:**
|
|
19300
|
+
* true
|
|
19301
|
+
*/
|
|
19302
|
+
extendContent?: string;
|
|
19003
19303
|
/**
|
|
19004
19304
|
* @remarks
|
|
19005
19305
|
* The input parameters of the rule.
|
|
@@ -19108,6 +19408,7 @@ export class UpdateConfigRuleRequest extends $tea.Model {
|
|
|
19108
19408
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
19109
19409
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
19110
19410
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
19411
|
+
extendContent: 'ExtendContent',
|
|
19111
19412
|
inputParameters: 'InputParameters',
|
|
19112
19413
|
maximumExecutionFrequency: 'MaximumExecutionFrequency',
|
|
19113
19414
|
regionIdsScope: 'RegionIdsScope',
|
|
@@ -19133,6 +19434,7 @@ export class UpdateConfigRuleRequest extends $tea.Model {
|
|
|
19133
19434
|
excludeResourceGroupIdsScope: 'string',
|
|
19134
19435
|
excludeResourceIdsScope: 'string',
|
|
19135
19436
|
excludeTagsScope: { 'type': 'array', 'itemType': UpdateConfigRuleRequestExcludeTagsScope },
|
|
19437
|
+
extendContent: 'string',
|
|
19136
19438
|
inputParameters: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
19137
19439
|
maximumExecutionFrequency: 'string',
|
|
19138
19440
|
regionIdsScope: 'string',
|
|
@@ -19211,6 +19513,11 @@ export class UpdateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
19211
19513
|
*/
|
|
19212
19514
|
excludeResourceIdsScope?: string;
|
|
19213
19515
|
excludeTagsScope?: UpdateConfigRuleShrinkRequestExcludeTagsScope[];
|
|
19516
|
+
/**
|
|
19517
|
+
* **if can be null:**
|
|
19518
|
+
* true
|
|
19519
|
+
*/
|
|
19520
|
+
extendContent?: string;
|
|
19214
19521
|
/**
|
|
19215
19522
|
* @remarks
|
|
19216
19523
|
* The input parameters of the rule.
|
|
@@ -19319,6 +19626,7 @@ export class UpdateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
19319
19626
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
19320
19627
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
19321
19628
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
19629
|
+
extendContent: 'ExtendContent',
|
|
19322
19630
|
inputParametersShrink: 'InputParameters',
|
|
19323
19631
|
maximumExecutionFrequency: 'MaximumExecutionFrequency',
|
|
19324
19632
|
regionIdsScope: 'RegionIdsScope',
|
|
@@ -19344,6 +19652,7 @@ export class UpdateConfigRuleShrinkRequest extends $tea.Model {
|
|
|
19344
19652
|
excludeResourceGroupIdsScope: 'string',
|
|
19345
19653
|
excludeResourceIdsScope: 'string',
|
|
19346
19654
|
excludeTagsScope: { 'type': 'array', 'itemType': UpdateConfigRuleShrinkRequestExcludeTagsScope },
|
|
19655
|
+
extendContent: 'string',
|
|
19347
19656
|
inputParametersShrink: 'string',
|
|
19348
19657
|
maximumExecutionFrequency: 'string',
|
|
19349
19658
|
regionIdsScope: 'string',
|
|
@@ -19754,6 +20063,7 @@ export class UpdateDeliveryChannelResponse extends $tea.Model {
|
|
|
19754
20063
|
}
|
|
19755
20064
|
|
|
19756
20065
|
export class UpdateIntegratedServiceStatusRequest extends $tea.Model {
|
|
20066
|
+
aggregatorDeliveryDataType?: string;
|
|
19757
20067
|
/**
|
|
19758
20068
|
* @remarks
|
|
19759
20069
|
* The types of the integrated events. Separate multiple event types with commas (,). Valid values:
|
|
@@ -19794,6 +20104,7 @@ export class UpdateIntegratedServiceStatusRequest extends $tea.Model {
|
|
|
19794
20104
|
status?: boolean;
|
|
19795
20105
|
static names(): { [key: string]: string } {
|
|
19796
20106
|
return {
|
|
20107
|
+
aggregatorDeliveryDataType: 'AggregatorDeliveryDataType',
|
|
19797
20108
|
integratedTypes: 'IntegratedTypes',
|
|
19798
20109
|
serviceCode: 'ServiceCode',
|
|
19799
20110
|
status: 'Status',
|
|
@@ -19802,6 +20113,7 @@ export class UpdateIntegratedServiceStatusRequest extends $tea.Model {
|
|
|
19802
20113
|
|
|
19803
20114
|
static types(): { [key: string]: any } {
|
|
19804
20115
|
return {
|
|
20116
|
+
aggregatorDeliveryDataType: 'string',
|
|
19805
20117
|
integratedTypes: 'string',
|
|
19806
20118
|
serviceCode: 'string',
|
|
19807
20119
|
status: 'boolean',
|
|
@@ -20794,7 +21106,21 @@ export class CreateCompliancePackRequestConfigRules extends $tea.Model {
|
|
|
20794
21106
|
}
|
|
20795
21107
|
|
|
20796
21108
|
export class CreateCompliancePackRequestExcludeTagsScope extends $tea.Model {
|
|
21109
|
+
/**
|
|
21110
|
+
* @remarks
|
|
21111
|
+
* TagKey
|
|
21112
|
+
*
|
|
21113
|
+
* @example
|
|
21114
|
+
* key-2
|
|
21115
|
+
*/
|
|
20797
21116
|
tagKey?: string;
|
|
21117
|
+
/**
|
|
21118
|
+
* @remarks
|
|
21119
|
+
* TagValue
|
|
21120
|
+
*
|
|
21121
|
+
* @example
|
|
21122
|
+
* value-2
|
|
21123
|
+
*/
|
|
20798
21124
|
tagValue?: string;
|
|
20799
21125
|
static names(): { [key: string]: string } {
|
|
20800
21126
|
return {
|
|
@@ -20816,7 +21142,21 @@ export class CreateCompliancePackRequestExcludeTagsScope extends $tea.Model {
|
|
|
20816
21142
|
}
|
|
20817
21143
|
|
|
20818
21144
|
export class CreateCompliancePackRequestTagsScope extends $tea.Model {
|
|
21145
|
+
/**
|
|
21146
|
+
* @remarks
|
|
21147
|
+
* Tagkey
|
|
21148
|
+
*
|
|
21149
|
+
* @example
|
|
21150
|
+
* key-1
|
|
21151
|
+
*/
|
|
20819
21152
|
tagKey?: string;
|
|
21153
|
+
/**
|
|
21154
|
+
* @remarks
|
|
21155
|
+
* TagValue
|
|
21156
|
+
*
|
|
21157
|
+
* @example
|
|
21158
|
+
* value-1
|
|
21159
|
+
*/
|
|
20820
21160
|
tagValue?: string;
|
|
20821
21161
|
static names(): { [key: string]: string } {
|
|
20822
21162
|
return {
|
|
@@ -20838,7 +21178,21 @@ export class CreateCompliancePackRequestTagsScope extends $tea.Model {
|
|
|
20838
21178
|
}
|
|
20839
21179
|
|
|
20840
21180
|
export class CreateCompliancePackShrinkRequestExcludeTagsScope extends $tea.Model {
|
|
21181
|
+
/**
|
|
21182
|
+
* @remarks
|
|
21183
|
+
* TagKey
|
|
21184
|
+
*
|
|
21185
|
+
* @example
|
|
21186
|
+
* key-2
|
|
21187
|
+
*/
|
|
20841
21188
|
tagKey?: string;
|
|
21189
|
+
/**
|
|
21190
|
+
* @remarks
|
|
21191
|
+
* TagValue
|
|
21192
|
+
*
|
|
21193
|
+
* @example
|
|
21194
|
+
* value-2
|
|
21195
|
+
*/
|
|
20842
21196
|
tagValue?: string;
|
|
20843
21197
|
static names(): { [key: string]: string } {
|
|
20844
21198
|
return {
|
|
@@ -20860,7 +21214,21 @@ export class CreateCompliancePackShrinkRequestExcludeTagsScope extends $tea.Mode
|
|
|
20860
21214
|
}
|
|
20861
21215
|
|
|
20862
21216
|
export class CreateCompliancePackShrinkRequestTagsScope extends $tea.Model {
|
|
21217
|
+
/**
|
|
21218
|
+
* @remarks
|
|
21219
|
+
* Tagkey
|
|
21220
|
+
*
|
|
21221
|
+
* @example
|
|
21222
|
+
* key-1
|
|
21223
|
+
*/
|
|
20863
21224
|
tagKey?: string;
|
|
21225
|
+
/**
|
|
21226
|
+
* @remarks
|
|
21227
|
+
* TagValue
|
|
21228
|
+
*
|
|
21229
|
+
* @example
|
|
21230
|
+
* value-1
|
|
21231
|
+
*/
|
|
20864
21232
|
tagValue?: string;
|
|
20865
21233
|
static names(): { [key: string]: string } {
|
|
20866
21234
|
return {
|
|
@@ -20882,7 +21250,21 @@ export class CreateCompliancePackShrinkRequestTagsScope extends $tea.Model {
|
|
|
20882
21250
|
}
|
|
20883
21251
|
|
|
20884
21252
|
export class CreateConfigRuleRequestExcludeTagsScope extends $tea.Model {
|
|
21253
|
+
/**
|
|
21254
|
+
* @remarks
|
|
21255
|
+
* TagKey
|
|
21256
|
+
*
|
|
21257
|
+
* @example
|
|
21258
|
+
* key-2
|
|
21259
|
+
*/
|
|
20885
21260
|
tagKey?: string;
|
|
21261
|
+
/**
|
|
21262
|
+
* @remarks
|
|
21263
|
+
* TagValue
|
|
21264
|
+
*
|
|
21265
|
+
* @example
|
|
21266
|
+
* value-2
|
|
21267
|
+
*/
|
|
20886
21268
|
tagValue?: string;
|
|
20887
21269
|
static names(): { [key: string]: string } {
|
|
20888
21270
|
return {
|
|
@@ -20904,7 +21286,21 @@ export class CreateConfigRuleRequestExcludeTagsScope extends $tea.Model {
|
|
|
20904
21286
|
}
|
|
20905
21287
|
|
|
20906
21288
|
export class CreateConfigRuleRequestTagsScope extends $tea.Model {
|
|
21289
|
+
/**
|
|
21290
|
+
* @remarks
|
|
21291
|
+
* TagKey
|
|
21292
|
+
*
|
|
21293
|
+
* @example
|
|
21294
|
+
* key-1
|
|
21295
|
+
*/
|
|
20907
21296
|
tagKey?: string;
|
|
21297
|
+
/**
|
|
21298
|
+
* @remarks
|
|
21299
|
+
* TagValue
|
|
21300
|
+
*
|
|
21301
|
+
* @example
|
|
21302
|
+
* value-1
|
|
21303
|
+
*/
|
|
20908
21304
|
tagValue?: string;
|
|
20909
21305
|
static names(): { [key: string]: string } {
|
|
20910
21306
|
return {
|
|
@@ -20926,7 +21322,21 @@ export class CreateConfigRuleRequestTagsScope extends $tea.Model {
|
|
|
20926
21322
|
}
|
|
20927
21323
|
|
|
20928
21324
|
export class CreateConfigRuleShrinkRequestExcludeTagsScope extends $tea.Model {
|
|
21325
|
+
/**
|
|
21326
|
+
* @remarks
|
|
21327
|
+
* TagKey
|
|
21328
|
+
*
|
|
21329
|
+
* @example
|
|
21330
|
+
* key-2
|
|
21331
|
+
*/
|
|
20929
21332
|
tagKey?: string;
|
|
21333
|
+
/**
|
|
21334
|
+
* @remarks
|
|
21335
|
+
* TagValue
|
|
21336
|
+
*
|
|
21337
|
+
* @example
|
|
21338
|
+
* value-2
|
|
21339
|
+
*/
|
|
20930
21340
|
tagValue?: string;
|
|
20931
21341
|
static names(): { [key: string]: string } {
|
|
20932
21342
|
return {
|
|
@@ -20948,7 +21358,21 @@ export class CreateConfigRuleShrinkRequestExcludeTagsScope extends $tea.Model {
|
|
|
20948
21358
|
}
|
|
20949
21359
|
|
|
20950
21360
|
export class CreateConfigRuleShrinkRequestTagsScope extends $tea.Model {
|
|
21361
|
+
/**
|
|
21362
|
+
* @remarks
|
|
21363
|
+
* TagKey
|
|
21364
|
+
*
|
|
21365
|
+
* @example
|
|
21366
|
+
* key-1
|
|
21367
|
+
*/
|
|
20951
21368
|
tagKey?: string;
|
|
21369
|
+
/**
|
|
21370
|
+
* @remarks
|
|
21371
|
+
* TagValue
|
|
21372
|
+
*
|
|
21373
|
+
* @example
|
|
21374
|
+
* value-1
|
|
21375
|
+
*/
|
|
20952
21376
|
tagValue?: string;
|
|
20953
21377
|
static names(): { [key: string]: string } {
|
|
20954
21378
|
return {
|
|
@@ -22900,6 +23324,16 @@ export class GetAggregateConfigDeliveryChannelResponseBodyDeliveryChannel extend
|
|
|
22900
23324
|
* ca-a4e5626622af0079****
|
|
22901
23325
|
*/
|
|
22902
23326
|
aggregatorId?: string;
|
|
23327
|
+
/**
|
|
23328
|
+
* @remarks
|
|
23329
|
+
* Indicates whether the specified destination receives scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots at `04:00Z` and `16:00Z` to Log Service every day. The time is displayed in UTC. Valid values:
|
|
23330
|
+
*
|
|
23331
|
+
* * true: The specified destination receives scheduled compliant snapshots.
|
|
23332
|
+
* * false: The specified destination does not receive scheduled compliant snapshots.
|
|
23333
|
+
*
|
|
23334
|
+
* @example
|
|
23335
|
+
* false
|
|
23336
|
+
*/
|
|
22903
23337
|
compliantSnapshot?: boolean;
|
|
22904
23338
|
/**
|
|
22905
23339
|
* @remarks
|
|
@@ -23712,6 +24146,7 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
23712
24146
|
*/
|
|
23713
24147
|
excludeResourceIdsScope?: string;
|
|
23714
24148
|
excludeTagsScope?: GetAggregateConfigRuleResponseBodyConfigRuleExcludeTagsScope[];
|
|
24149
|
+
extendContent?: string;
|
|
23715
24150
|
/**
|
|
23716
24151
|
* @remarks
|
|
23717
24152
|
* The ID of the resource directory to which the rule applies, which means that the resources within member accounts in the resource directory are evaluated based on the rule.
|
|
@@ -23849,6 +24284,7 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
23849
24284
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
23850
24285
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
23851
24286
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
24287
|
+
extendContent: 'ExtendContent',
|
|
23852
24288
|
folderIdsScope: 'FolderIdsScope',
|
|
23853
24289
|
inputParameters: 'InputParameters',
|
|
23854
24290
|
managedRule: 'ManagedRule',
|
|
@@ -23887,6 +24323,7 @@ export class GetAggregateConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
23887
24323
|
excludeResourceGroupIdsScope: 'string',
|
|
23888
24324
|
excludeResourceIdsScope: 'string',
|
|
23889
24325
|
excludeTagsScope: { 'type': 'array', 'itemType': GetAggregateConfigRuleResponseBodyConfigRuleExcludeTagsScope },
|
|
24326
|
+
extendContent: 'string',
|
|
23890
24327
|
folderIdsScope: 'string',
|
|
23891
24328
|
inputParameters: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
23892
24329
|
managedRule: GetAggregateConfigRuleResponseBodyConfigRuleManagedRule,
|
|
@@ -24158,6 +24595,19 @@ export class GetAggregateDiscoveredResourceResponseBodyDiscoveredResourceDetail
|
|
|
24158
24595
|
* cn-hangzhou-h
|
|
24159
24596
|
*/
|
|
24160
24597
|
availabilityZone?: string;
|
|
24598
|
+
/**
|
|
24599
|
+
* @remarks
|
|
24600
|
+
* The compliance evaluation result of the resource. Valid values:
|
|
24601
|
+
*
|
|
24602
|
+
* * COMPLIANT: The resource is evaluated as compliant.
|
|
24603
|
+
* * NON_COMPLIANT: The resource is evaluated as non-compliant.
|
|
24604
|
+
* * NOT_APPLICABLE: The rule does not apply to the resource.
|
|
24605
|
+
* * INSUFFICIENT_DATA: No data is available.
|
|
24606
|
+
* * IGNORED: The resource is ignored during compliance evaluation.
|
|
24607
|
+
*
|
|
24608
|
+
* @example
|
|
24609
|
+
* COMPLIANT
|
|
24610
|
+
*/
|
|
24161
24611
|
complianceType?: string;
|
|
24162
24612
|
/**
|
|
24163
24613
|
* @remarks
|
|
@@ -25140,6 +25590,9 @@ export class GetAggregatorResponseBodyAggregatorAggregatorAccounts extends $tea.
|
|
|
25140
25590
|
*
|
|
25141
25591
|
* @example
|
|
25142
25592
|
* Alice
|
|
25593
|
+
*
|
|
25594
|
+
* **if can be null:**
|
|
25595
|
+
* false
|
|
25143
25596
|
*/
|
|
25144
25597
|
accountName?: string;
|
|
25145
25598
|
/**
|
|
@@ -25369,6 +25822,9 @@ export class GetCompliancePackResponseBodyCompliancePackConfigRules extends $tea
|
|
|
25369
25822
|
/**
|
|
25370
25823
|
* @remarks
|
|
25371
25824
|
* The rule name.
|
|
25825
|
+
*
|
|
25826
|
+
* @example
|
|
25827
|
+
* eip-bandwidth-limit
|
|
25372
25828
|
*/
|
|
25373
25829
|
configRuleName?: string;
|
|
25374
25830
|
/**
|
|
@@ -25379,6 +25835,9 @@ export class GetCompliancePackResponseBodyCompliancePackConfigRules extends $tea
|
|
|
25379
25835
|
/**
|
|
25380
25836
|
* @remarks
|
|
25381
25837
|
* The rule description.
|
|
25838
|
+
*
|
|
25839
|
+
* @example
|
|
25840
|
+
* example-description
|
|
25382
25841
|
*/
|
|
25383
25842
|
description?: string;
|
|
25384
25843
|
/**
|
|
@@ -25439,7 +25898,21 @@ export class GetCompliancePackResponseBodyCompliancePackConfigRules extends $tea
|
|
|
25439
25898
|
}
|
|
25440
25899
|
|
|
25441
25900
|
export class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope extends $tea.Model {
|
|
25901
|
+
/**
|
|
25902
|
+
* @remarks
|
|
25903
|
+
* The tag key.
|
|
25904
|
+
*
|
|
25905
|
+
* @example
|
|
25906
|
+
* key-2
|
|
25907
|
+
*/
|
|
25442
25908
|
tagKey?: string;
|
|
25909
|
+
/**
|
|
25910
|
+
* @remarks
|
|
25911
|
+
* The tag value.
|
|
25912
|
+
*
|
|
25913
|
+
* @example
|
|
25914
|
+
* value-2
|
|
25915
|
+
*/
|
|
25443
25916
|
tagValue?: string;
|
|
25444
25917
|
static names(): { [key: string]: string } {
|
|
25445
25918
|
return {
|
|
@@ -25461,7 +25934,21 @@ export class GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope ex
|
|
|
25461
25934
|
}
|
|
25462
25935
|
|
|
25463
25936
|
export class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $tea.Model {
|
|
25937
|
+
/**
|
|
25938
|
+
* @remarks
|
|
25939
|
+
* The tag key.
|
|
25940
|
+
*
|
|
25941
|
+
* @example
|
|
25942
|
+
* key-1
|
|
25943
|
+
*/
|
|
25464
25944
|
tagKey?: string;
|
|
25945
|
+
/**
|
|
25946
|
+
* @remarks
|
|
25947
|
+
* The tag value.
|
|
25948
|
+
*
|
|
25949
|
+
* @example
|
|
25950
|
+
* value-1
|
|
25951
|
+
*/
|
|
25465
25952
|
tagValue?: string;
|
|
25466
25953
|
static names(): { [key: string]: string } {
|
|
25467
25954
|
return {
|
|
@@ -25483,7 +25970,21 @@ export class GetCompliancePackResponseBodyCompliancePackScopeTagsScope extends $
|
|
|
25483
25970
|
}
|
|
25484
25971
|
|
|
25485
25972
|
export class GetCompliancePackResponseBodyCompliancePackScope extends $tea.Model {
|
|
25973
|
+
/**
|
|
25974
|
+
* @remarks
|
|
25975
|
+
* Excluded region scope, multiple regions should be separated by commas.
|
|
25976
|
+
*
|
|
25977
|
+
* @example
|
|
25978
|
+
* cn-hangzhou
|
|
25979
|
+
*/
|
|
25486
25980
|
excludeRegionIdsScope?: string;
|
|
25981
|
+
/**
|
|
25982
|
+
* @remarks
|
|
25983
|
+
* Excluded resourceGroup scope, multiple resourceGroup should be separated by commas.
|
|
25984
|
+
*
|
|
25985
|
+
* @example
|
|
25986
|
+
* rg-aekzc7r7rhx****
|
|
25987
|
+
*/
|
|
25487
25988
|
excludeResourceGroupIdsScope?: string;
|
|
25488
25989
|
/**
|
|
25489
25990
|
* @remarks
|
|
@@ -25495,6 +25996,8 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $tea.Model
|
|
|
25495
25996
|
excludeResourceIdsScope?: string;
|
|
25496
25997
|
/**
|
|
25497
25998
|
* @remarks
|
|
25999
|
+
* Exclude tag scope.
|
|
26000
|
+
*
|
|
25498
26001
|
* This parameter is required.
|
|
25499
26002
|
*/
|
|
25500
26003
|
excludeTagsScope?: GetCompliancePackResponseBodyCompliancePackScopeExcludeTagsScope[];
|
|
@@ -25514,6 +26017,13 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $tea.Model
|
|
|
25514
26017
|
* rg-aekzc7r7rhx****
|
|
25515
26018
|
*/
|
|
25516
26019
|
resourceGroupIdsScope?: string;
|
|
26020
|
+
/**
|
|
26021
|
+
* @remarks
|
|
26022
|
+
* Include ResourceId scope, multiple resourceIds should be separated by commas.
|
|
26023
|
+
*
|
|
26024
|
+
* @example
|
|
26025
|
+
* eip-8vbf3x310fn56ijfd****
|
|
26026
|
+
*/
|
|
25517
26027
|
resourceIdsScope?: string;
|
|
25518
26028
|
/**
|
|
25519
26029
|
* @remarks
|
|
@@ -25533,6 +26043,8 @@ export class GetCompliancePackResponseBodyCompliancePackScope extends $tea.Model
|
|
|
25533
26043
|
tagValueScope?: string;
|
|
25534
26044
|
/**
|
|
25535
26045
|
* @remarks
|
|
26046
|
+
* Include tag scope.
|
|
26047
|
+
*
|
|
25536
26048
|
* This parameter is required.
|
|
25537
26049
|
*/
|
|
25538
26050
|
tagsScope?: GetCompliancePackResponseBodyCompliancePackScopeTagsScope[];
|
|
@@ -25591,6 +26103,9 @@ export class GetCompliancePackResponseBodyCompliancePack extends $tea.Model {
|
|
|
25591
26103
|
/**
|
|
25592
26104
|
* @remarks
|
|
25593
26105
|
* The name of the compliance package.
|
|
26106
|
+
*
|
|
26107
|
+
* @example
|
|
26108
|
+
* example-pack-name
|
|
25594
26109
|
*/
|
|
25595
26110
|
compliancePackName?: string;
|
|
25596
26111
|
/**
|
|
@@ -25617,6 +26132,9 @@ export class GetCompliancePackResponseBodyCompliancePack extends $tea.Model {
|
|
|
25617
26132
|
/**
|
|
25618
26133
|
* @remarks
|
|
25619
26134
|
* The description of the compliance package.
|
|
26135
|
+
*
|
|
26136
|
+
* @example
|
|
26137
|
+
* example-name
|
|
25620
26138
|
*/
|
|
25621
26139
|
description?: string;
|
|
25622
26140
|
/**
|
|
@@ -25650,6 +26168,38 @@ export class GetCompliancePackResponseBodyCompliancePack extends $tea.Model {
|
|
|
25650
26168
|
/**
|
|
25651
26169
|
* @remarks
|
|
25652
26170
|
* The information about the current compliance package template. The rules in the template do not contain custom function rules. You can quickly create the same compliance package for other accounts or account groups based on the template information.
|
|
26171
|
+
*
|
|
26172
|
+
* @example
|
|
26173
|
+
* {
|
|
26174
|
+
* "configRuleTemplates": [
|
|
26175
|
+
* {
|
|
26176
|
+
* "configRuleName": "弹性IP实例带宽满足最低要求",
|
|
26177
|
+
* "scope": {
|
|
26178
|
+
* "complianceResourceTypes": [
|
|
26179
|
+
* "ACS::EIP::EipAddress"
|
|
26180
|
+
* ]
|
|
26181
|
+
* },
|
|
26182
|
+
* "description": "弹性IP实例可用带宽大于等于指定参数值,视为“合规”。默认值:10MB",
|
|
26183
|
+
* "source": {
|
|
26184
|
+
* "owner": "ALIYUN",
|
|
26185
|
+
* "identifier": "eip-bandwidth-limit",
|
|
26186
|
+
* "sourceDetails": [
|
|
26187
|
+
* {
|
|
26188
|
+
* "messageType": "ConfigurationItemChangeNotification"
|
|
26189
|
+
* }
|
|
26190
|
+
* ]
|
|
26191
|
+
* },
|
|
26192
|
+
* "inputParameters": {
|
|
26193
|
+
* "bandwidth": "10"
|
|
26194
|
+
* }
|
|
26195
|
+
* }
|
|
26196
|
+
* ],
|
|
26197
|
+
* "compliancePackTemplate": {
|
|
26198
|
+
* "riskLevel": 2,
|
|
26199
|
+
* "compliancePackName": "gy-test",
|
|
26200
|
+
* "description": ""
|
|
26201
|
+
* }
|
|
26202
|
+
* }
|
|
25653
26203
|
*/
|
|
25654
26204
|
templateContent?: string;
|
|
25655
26205
|
static names(): { [key: string]: string } {
|
|
@@ -25907,6 +26457,16 @@ export class GetConfigDeliveryChannelResponseBodyDeliveryChannel extends $tea.Mo
|
|
|
25907
26457
|
* 120886317861****
|
|
25908
26458
|
*/
|
|
25909
26459
|
accountId?: number;
|
|
26460
|
+
/**
|
|
26461
|
+
* @remarks
|
|
26462
|
+
* Indicates whether the specified destination receives scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots at `04:00Z` and `16:00Z` to Log Service every day. The time is displayed in UTC. Valid values:
|
|
26463
|
+
*
|
|
26464
|
+
* * true: The specified destination receives scheduled compliant snapshots.
|
|
26465
|
+
* * false: The specified destination does not receive scheduled compliant snapshots.
|
|
26466
|
+
*
|
|
26467
|
+
* @example
|
|
26468
|
+
* false
|
|
26469
|
+
*/
|
|
25910
26470
|
compliantSnapshot?: boolean;
|
|
25911
26471
|
/**
|
|
25912
26472
|
* @remarks
|
|
@@ -26249,6 +26809,9 @@ export class GetConfigRuleResponseBodyConfigRuleCreateBy extends $tea.Model {
|
|
|
26249
26809
|
/**
|
|
26250
26810
|
* @remarks
|
|
26251
26811
|
* The name of the compliance package.
|
|
26812
|
+
*
|
|
26813
|
+
* @example
|
|
26814
|
+
* example-name
|
|
26252
26815
|
*/
|
|
26253
26816
|
compliancePackName?: string;
|
|
26254
26817
|
/**
|
|
@@ -26291,7 +26854,21 @@ export class GetConfigRuleResponseBodyConfigRuleCreateBy extends $tea.Model {
|
|
|
26291
26854
|
}
|
|
26292
26855
|
|
|
26293
26856
|
export class GetConfigRuleResponseBodyConfigRuleExcludeTagsScope extends $tea.Model {
|
|
26857
|
+
/**
|
|
26858
|
+
* @remarks
|
|
26859
|
+
* The tag key.
|
|
26860
|
+
*
|
|
26861
|
+
* @example
|
|
26862
|
+
* key-1
|
|
26863
|
+
*/
|
|
26294
26864
|
tagKey?: string;
|
|
26865
|
+
/**
|
|
26866
|
+
* @remarks
|
|
26867
|
+
* The tag value.
|
|
26868
|
+
*
|
|
26869
|
+
* @example
|
|
26870
|
+
* value-1
|
|
26871
|
+
*/
|
|
26295
26872
|
tagValue?: string;
|
|
26296
26873
|
static names(): { [key: string]: string } {
|
|
26297
26874
|
return {
|
|
@@ -26375,11 +26952,17 @@ export class GetConfigRuleResponseBodyConfigRuleManagedRule extends $tea.Model {
|
|
|
26375
26952
|
/**
|
|
26376
26953
|
* @remarks
|
|
26377
26954
|
* The settings of the required input parameters for the managed rule.
|
|
26955
|
+
*
|
|
26956
|
+
* @example
|
|
26957
|
+
* {}
|
|
26378
26958
|
*/
|
|
26379
26959
|
compulsoryInputParameterDetails?: { [key: string]: any };
|
|
26380
26960
|
/**
|
|
26381
26961
|
* @remarks
|
|
26382
26962
|
* The description of the managed rule.
|
|
26963
|
+
*
|
|
26964
|
+
* @example
|
|
26965
|
+
* example-description
|
|
26383
26966
|
*/
|
|
26384
26967
|
description?: string;
|
|
26385
26968
|
/**
|
|
@@ -26398,11 +26981,17 @@ export class GetConfigRuleResponseBodyConfigRuleManagedRule extends $tea.Model {
|
|
|
26398
26981
|
/**
|
|
26399
26982
|
* @remarks
|
|
26400
26983
|
* The name of the managed rule.
|
|
26984
|
+
*
|
|
26985
|
+
* @example
|
|
26986
|
+
* example-name
|
|
26401
26987
|
*/
|
|
26402
26988
|
managedRuleName?: string;
|
|
26403
26989
|
/**
|
|
26404
26990
|
* @remarks
|
|
26405
26991
|
* The settings of the optional input parameters for the managed rule.
|
|
26992
|
+
*
|
|
26993
|
+
* @example
|
|
26994
|
+
* {}
|
|
26406
26995
|
*/
|
|
26407
26996
|
optionalInputParameterDetails?: { [key: string]: any };
|
|
26408
26997
|
/**
|
|
@@ -26571,7 +27160,21 @@ export class GetConfigRuleResponseBodyConfigRuleSource extends $tea.Model {
|
|
|
26571
27160
|
}
|
|
26572
27161
|
|
|
26573
27162
|
export class GetConfigRuleResponseBodyConfigRuleTagsScope extends $tea.Model {
|
|
27163
|
+
/**
|
|
27164
|
+
* @remarks
|
|
27165
|
+
* TagKey
|
|
27166
|
+
*
|
|
27167
|
+
* @example
|
|
27168
|
+
* key-1
|
|
27169
|
+
*/
|
|
26574
27170
|
tagKey?: string;
|
|
27171
|
+
/**
|
|
27172
|
+
* @remarks
|
|
27173
|
+
* TagValue
|
|
27174
|
+
*
|
|
27175
|
+
* @example
|
|
27176
|
+
* value-1
|
|
27177
|
+
*/
|
|
26575
27178
|
tagValue?: string;
|
|
26576
27179
|
static names(): { [key: string]: string } {
|
|
26577
27180
|
return {
|
|
@@ -26630,6 +27233,9 @@ export class GetConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
26630
27233
|
/**
|
|
26631
27234
|
* @remarks
|
|
26632
27235
|
* The name of the rule.
|
|
27236
|
+
*
|
|
27237
|
+
* @example
|
|
27238
|
+
* ecs-disk-auto-snapshot-policy
|
|
26633
27239
|
*/
|
|
26634
27240
|
configRuleName?: string;
|
|
26635
27241
|
/**
|
|
@@ -26672,9 +27278,26 @@ export class GetConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
26672
27278
|
/**
|
|
26673
27279
|
* @remarks
|
|
26674
27280
|
* The description of the managed rule.
|
|
27281
|
+
*
|
|
27282
|
+
* @example
|
|
27283
|
+
* example-description
|
|
26675
27284
|
*/
|
|
26676
27285
|
description?: string;
|
|
27286
|
+
/**
|
|
27287
|
+
* @remarks
|
|
27288
|
+
* ExcludeRegionIdsScope
|
|
27289
|
+
*
|
|
27290
|
+
* @example
|
|
27291
|
+
* cn-shanghai
|
|
27292
|
+
*/
|
|
26677
27293
|
excludeRegionIdsScope?: string;
|
|
27294
|
+
/**
|
|
27295
|
+
* @remarks
|
|
27296
|
+
* ExcludeResourceGroupIdsScope
|
|
27297
|
+
*
|
|
27298
|
+
* @example
|
|
27299
|
+
* rg-aekzdibsjjc****
|
|
27300
|
+
*/
|
|
26678
27301
|
excludeResourceGroupIdsScope?: string;
|
|
26679
27302
|
/**
|
|
26680
27303
|
* @remarks
|
|
@@ -26684,10 +27307,25 @@ export class GetConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
26684
27307
|
* 23642660635687****
|
|
26685
27308
|
*/
|
|
26686
27309
|
excludeResourceIdsScope?: string;
|
|
27310
|
+
/**
|
|
27311
|
+
* @remarks
|
|
27312
|
+
* ExcludeTagsScope
|
|
27313
|
+
*/
|
|
26687
27314
|
excludeTagsScope?: GetConfigRuleResponseBodyConfigRuleExcludeTagsScope[];
|
|
27315
|
+
/**
|
|
27316
|
+
* @remarks
|
|
27317
|
+
* Optional field, only used in conjunction with the 24-hour cycle execution to set the trigger time.
|
|
27318
|
+
*
|
|
27319
|
+
* @example
|
|
27320
|
+
* {"fixedHour":"12"}
|
|
27321
|
+
*/
|
|
27322
|
+
extendContent?: string;
|
|
26688
27323
|
/**
|
|
26689
27324
|
* @remarks
|
|
26690
27325
|
* The input parameters of the rule.
|
|
27326
|
+
*
|
|
27327
|
+
* @example
|
|
27328
|
+
* {}
|
|
26691
27329
|
*/
|
|
26692
27330
|
inputParameters?: { [key: string]: any };
|
|
26693
27331
|
/**
|
|
@@ -26735,6 +27373,13 @@ export class GetConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
26735
27373
|
* rg-aekzdibsjjc****
|
|
26736
27374
|
*/
|
|
26737
27375
|
resourceGroupIdsScope?: string;
|
|
27376
|
+
/**
|
|
27377
|
+
* @remarks
|
|
27378
|
+
* ResourceIdsScope
|
|
27379
|
+
*
|
|
27380
|
+
* @example
|
|
27381
|
+
* eip-8vbf3x310fn56ijfd****
|
|
27382
|
+
*/
|
|
26738
27383
|
resourceIdsScope?: string;
|
|
26739
27384
|
/**
|
|
26740
27385
|
* @remarks
|
|
@@ -26796,6 +27441,10 @@ export class GetConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
26796
27441
|
* MFA
|
|
26797
27442
|
*/
|
|
26798
27443
|
tagValueScope?: string;
|
|
27444
|
+
/**
|
|
27445
|
+
* @remarks
|
|
27446
|
+
* TagsScope
|
|
27447
|
+
*/
|
|
26799
27448
|
tagsScope?: GetConfigRuleResponseBodyConfigRuleTagsScope[];
|
|
26800
27449
|
static names(): { [key: string]: string } {
|
|
26801
27450
|
return {
|
|
@@ -26814,6 +27463,7 @@ export class GetConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
26814
27463
|
excludeResourceGroupIdsScope: 'ExcludeResourceGroupIdsScope',
|
|
26815
27464
|
excludeResourceIdsScope: 'ExcludeResourceIdsScope',
|
|
26816
27465
|
excludeTagsScope: 'ExcludeTagsScope',
|
|
27466
|
+
extendContent: 'ExtendContent',
|
|
26817
27467
|
inputParameters: 'InputParameters',
|
|
26818
27468
|
managedRule: 'ManagedRule',
|
|
26819
27469
|
maximumExecutionFrequency: 'MaximumExecutionFrequency',
|
|
@@ -26849,6 +27499,7 @@ export class GetConfigRuleResponseBodyConfigRule extends $tea.Model {
|
|
|
26849
27499
|
excludeResourceGroupIdsScope: 'string',
|
|
26850
27500
|
excludeResourceIdsScope: 'string',
|
|
26851
27501
|
excludeTagsScope: { 'type': 'array', 'itemType': GetConfigRuleResponseBodyConfigRuleExcludeTagsScope },
|
|
27502
|
+
extendContent: 'string',
|
|
26852
27503
|
inputParameters: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
26853
27504
|
managedRule: GetConfigRuleResponseBodyConfigRuleManagedRule,
|
|
26854
27505
|
maximumExecutionFrequency: 'string',
|
|
@@ -27148,6 +27799,18 @@ export class GetDiscoveredResourceResponseBodyDiscoveredResourceDetail extends $
|
|
|
27148
27799
|
* cn-hangzhou-h
|
|
27149
27800
|
*/
|
|
27150
27801
|
availabilityZone?: string;
|
|
27802
|
+
/**
|
|
27803
|
+
* @remarks
|
|
27804
|
+
* The compliance evaluation result of the resource. Valid values:
|
|
27805
|
+
*
|
|
27806
|
+
* * COMPLIANT: The resource is evaluated as compliant.
|
|
27807
|
+
* * NON_COMPLIANT: The resource is evaluated as non-compliant.
|
|
27808
|
+
* * NOT_APPLICABLE: The rule does not apply to the resources.
|
|
27809
|
+
* * INSUFFICIENT_DATA: No data is available.
|
|
27810
|
+
*
|
|
27811
|
+
* @example
|
|
27812
|
+
* COMPLIANT
|
|
27813
|
+
*/
|
|
27151
27814
|
complianceType?: string;
|
|
27152
27815
|
/**
|
|
27153
27816
|
* @remarks
|
|
@@ -27563,6 +28226,9 @@ export class GetRemediationTemplateResponseBodyRemediationTemplates extends $tea
|
|
|
27563
28226
|
/**
|
|
27564
28227
|
* @remarks
|
|
27565
28228
|
* The parameters of the automatic remediation template.
|
|
28229
|
+
*
|
|
28230
|
+
* @example
|
|
28231
|
+
* {\\"Parameters\\":{\\"regionId\\":{\\"AssociationProperty\\":\\"RegionId\\",\\"CreateDated\\":\\"2023-09-08T16:36:15\\",\\"Default\\":\\"{regionId}\\",\\"Description\\":{\\"en\\":\\"regionId\\",\\"zh-cn\\":\\"regionId\\"},\\"Id\\":538,\\"MaxKeyLength\\":\\"125\\",\\"MaxValueLength\\":\\"255\\",\\"ModifiedDate\\":\\"2023-09-08T16:36:15\\",\\"Name\\":\\"regionId\\",\\"Optional\\":1,\\"TemplateIdentifier\\":\\"ACS-ALB-BulkyEnableDeletionProtection\\",\\"Type\\":\\"String\\",\\"Version\\":\\"LASTEST\\"},\\"loadBalancerIds\\":{\\"CreateDated\\":\\"2023-09-08T16:36:16\\",\\"Default\\":\\"[\\\\\\"{resourceId}\\\\\\"]\\",\\"Description\\":{\\"en\\":\\"loadBalancerIds\\",\\"zh-cn\\":\\"loadBalancerIds\\"},\\"Id\\":539,\\"MaxKeyLength\\":\\"125\\",\\"MaxValueLength\\":\\"255\\",\\"ModifiedDate\\":\\"2023-09-08T16:36:16\\",\\"Name\\":\\"loadBalancerIds\\",\\"Optional\\":1,\\"TemplateIdentifier\\":\\"ACS-ALB-BulkyEnableDeletionProtection\\",\\"Type\\":\\"ARRAY\\",\\"Version\\":\\"LASTEST\\"}}}
|
|
27566
28232
|
*/
|
|
27567
28233
|
templateDefinition?: string;
|
|
27568
28234
|
/**
|
|
@@ -27570,6 +28236,9 @@ export class GetRemediationTemplateResponseBodyRemediationTemplates extends $tea
|
|
|
27570
28236
|
* The description of the automatic remediation template.
|
|
27571
28237
|
*
|
|
27572
28238
|
* This parameter is required.
|
|
28239
|
+
*
|
|
28240
|
+
* @example
|
|
28241
|
+
* 调用接口EnableDeletionProtection,开启ALB实例删除保护,请您知晓风险谨慎操作。
|
|
27573
28242
|
*/
|
|
27574
28243
|
templateDescription?: string;
|
|
27575
28244
|
/**
|
|
@@ -27583,6 +28252,9 @@ export class GetRemediationTemplateResponseBodyRemediationTemplates extends $tea
|
|
|
27583
28252
|
/**
|
|
27584
28253
|
* @remarks
|
|
27585
28254
|
* The name of the automatic remediation template.
|
|
28255
|
+
*
|
|
28256
|
+
* @example
|
|
28257
|
+
* 开启ALB实例删除保护
|
|
27586
28258
|
*/
|
|
27587
28259
|
templateName?: string;
|
|
27588
28260
|
static names(): { [key: string]: string } {
|
|
@@ -28549,7 +29221,7 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
|
|
|
28549
29221
|
accountId?: number;
|
|
28550
29222
|
/**
|
|
28551
29223
|
* @remarks
|
|
28552
|
-
* The account group
|
|
29224
|
+
* The ID of the account group.
|
|
28553
29225
|
*
|
|
28554
29226
|
* @example
|
|
28555
29227
|
* ca-f632626622af0079****
|
|
@@ -28557,7 +29229,7 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
|
|
|
28557
29229
|
aggregatorId?: string;
|
|
28558
29230
|
/**
|
|
28559
29231
|
* @remarks
|
|
28560
|
-
* The compliance package
|
|
29232
|
+
* The ID of the compliance package.
|
|
28561
29233
|
*
|
|
28562
29234
|
* @example
|
|
28563
29235
|
* cp-fdc8626622af00f9****
|
|
@@ -28566,6 +29238,9 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
|
|
|
28566
29238
|
/**
|
|
28567
29239
|
* @remarks
|
|
28568
29240
|
* The name of the compliance package.
|
|
29241
|
+
*
|
|
29242
|
+
* @example
|
|
29243
|
+
* example-name
|
|
28569
29244
|
*/
|
|
28570
29245
|
compliancePackName?: string;
|
|
28571
29246
|
/**
|
|
@@ -28587,15 +29262,18 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
|
|
|
28587
29262
|
/**
|
|
28588
29263
|
* @remarks
|
|
28589
29264
|
* The description of the compliance package.
|
|
29265
|
+
*
|
|
29266
|
+
* @example
|
|
29267
|
+
* example-description
|
|
28590
29268
|
*/
|
|
28591
29269
|
description?: string;
|
|
28592
29270
|
/**
|
|
28593
29271
|
* @remarks
|
|
28594
|
-
* The risk level of the resources that are not compliant with the rules in the compliance package. Valid values:
|
|
29272
|
+
* The risk level of the resources that are not compliant with the managed rules in the compliance package. Valid values:
|
|
28595
29273
|
*
|
|
28596
|
-
* * 1: high
|
|
28597
|
-
* * 2: medium
|
|
28598
|
-
* * 3: low
|
|
29274
|
+
* * 1: high risk level.
|
|
29275
|
+
* * 2: medium risk level.
|
|
29276
|
+
* * 3: low risk level.
|
|
28599
29277
|
*
|
|
28600
29278
|
* @example
|
|
28601
29279
|
* 1
|
|
@@ -28605,7 +29283,7 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
|
|
|
28605
29283
|
* @remarks
|
|
28606
29284
|
* The status of the compliance package. Valid values:
|
|
28607
29285
|
*
|
|
28608
|
-
* * ACTIVE: The compliance package is
|
|
29286
|
+
* * ACTIVE: The compliance package is available for use.
|
|
28609
29287
|
* * CREATING: The compliance package is being created.
|
|
28610
29288
|
*
|
|
28611
29289
|
* @example
|
|
@@ -28648,7 +29326,7 @@ export class ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompli
|
|
|
28648
29326
|
export class ListAggregateCompliancePacksResponseBodyCompliancePacksResult extends $tea.Model {
|
|
28649
29327
|
/**
|
|
28650
29328
|
* @remarks
|
|
28651
|
-
* The compliance
|
|
29329
|
+
* The details of the compliance package.
|
|
28652
29330
|
*/
|
|
28653
29331
|
compliancePacks?: ListAggregateCompliancePacksResponseBodyCompliancePacksResultCompliancePacks[];
|
|
28654
29332
|
/**
|
|
@@ -28715,6 +29393,16 @@ export class ListAggregateConfigDeliveryChannelsResponseBodyDeliveryChannels ext
|
|
|
28715
29393
|
* ca-a4e5626622af0079****
|
|
28716
29394
|
*/
|
|
28717
29395
|
aggregatorId?: string;
|
|
29396
|
+
/**
|
|
29397
|
+
* @remarks
|
|
29398
|
+
* Indicates whether the specified destination receives scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots at `04:00Z` and `16:00Z` to Log Service every day. The time is displayed in UTC. Valid values:
|
|
29399
|
+
*
|
|
29400
|
+
* * true: The specified destination receives scheduled compliant snapshots.
|
|
29401
|
+
* * false: The specified destination does not receive scheduled compliant snapshots.
|
|
29402
|
+
*
|
|
29403
|
+
* @example
|
|
29404
|
+
* false
|
|
29405
|
+
*/
|
|
28718
29406
|
compliantSnapshot?: boolean;
|
|
28719
29407
|
/**
|
|
28720
29408
|
* @remarks
|
|
@@ -30684,6 +31372,9 @@ export class ListAggregatorsResponseBodyAggregatorsResultAggregators extends $te
|
|
|
30684
31372
|
/**
|
|
30685
31373
|
* @remarks
|
|
30686
31374
|
* The description of the account group.
|
|
31375
|
+
*
|
|
31376
|
+
* @example
|
|
31377
|
+
* Example-description
|
|
30687
31378
|
*/
|
|
30688
31379
|
description?: string;
|
|
30689
31380
|
/**
|
|
@@ -30847,6 +31538,9 @@ export class ListCompliancePackTemplatesResponseBodyCompliancePackTemplatesResul
|
|
|
30847
31538
|
/**
|
|
30848
31539
|
* @remarks
|
|
30849
31540
|
* The description of the rule.
|
|
31541
|
+
*
|
|
31542
|
+
* @example
|
|
31543
|
+
* If the expiration time of the SLB certificate is later than the specified number of days after the check time, the configuration is considered compliant. Default value: 90 days.
|
|
30850
31544
|
*/
|
|
30851
31545
|
description?: string;
|
|
30852
31546
|
/**
|
|
@@ -30860,6 +31554,9 @@ export class ListCompliancePackTemplatesResponseBodyCompliancePackTemplatesResul
|
|
|
30860
31554
|
/**
|
|
30861
31555
|
* @remarks
|
|
30862
31556
|
* The name of the managed rule.
|
|
31557
|
+
*
|
|
31558
|
+
* @example
|
|
31559
|
+
* slb-servercertificate-expired-check
|
|
30863
31560
|
*/
|
|
30864
31561
|
managedRuleName?: string;
|
|
30865
31562
|
/**
|
|
@@ -30927,6 +31624,9 @@ export class ListCompliancePackTemplatesResponseBodyCompliancePackTemplatesResul
|
|
|
30927
31624
|
/**
|
|
30928
31625
|
* @remarks
|
|
30929
31626
|
* The name of the compliance package template.
|
|
31627
|
+
*
|
|
31628
|
+
* @example
|
|
31629
|
+
* BestPracticesForResourceStability
|
|
30930
31630
|
*/
|
|
30931
31631
|
compliancePackTemplateName?: string;
|
|
30932
31632
|
/**
|
|
@@ -30937,11 +31637,17 @@ export class ListCompliancePackTemplatesResponseBodyCompliancePackTemplatesResul
|
|
|
30937
31637
|
/**
|
|
30938
31638
|
* @remarks
|
|
30939
31639
|
* The description of the compliance package.
|
|
31640
|
+
*
|
|
31641
|
+
* @example
|
|
31642
|
+
* example-description
|
|
30940
31643
|
*/
|
|
30941
31644
|
description?: string;
|
|
30942
31645
|
/**
|
|
30943
31646
|
* @remarks
|
|
30944
31647
|
* The tag of the compliance package.
|
|
31648
|
+
*
|
|
31649
|
+
* @example
|
|
31650
|
+
* tagKey-1
|
|
30945
31651
|
*/
|
|
30946
31652
|
labels?: string;
|
|
30947
31653
|
/**
|
|
@@ -31066,6 +31772,9 @@ export class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacks
|
|
|
31066
31772
|
/**
|
|
31067
31773
|
* @remarks
|
|
31068
31774
|
* The name of the compliance package.
|
|
31775
|
+
*
|
|
31776
|
+
* @example
|
|
31777
|
+
* ClassifiedProtectionPreCheck
|
|
31069
31778
|
*/
|
|
31070
31779
|
compliancePackName?: string;
|
|
31071
31780
|
/**
|
|
@@ -31087,6 +31796,9 @@ export class ListCompliancePacksResponseBodyCompliancePacksResultCompliancePacks
|
|
|
31087
31796
|
/**
|
|
31088
31797
|
* @remarks
|
|
31089
31798
|
* The description of the compliance package.
|
|
31799
|
+
*
|
|
31800
|
+
* @example
|
|
31801
|
+
* Based on the Level 3 standards Equal Protection 2.0, this template provides continuous compliance monitoring recommendations to help you perform self-inspections and fix issues in advance, ensuring a quick pass during the official inspection.
|
|
31090
31802
|
*/
|
|
31091
31803
|
description?: string;
|
|
31092
31804
|
/**
|
|
@@ -31205,6 +31917,16 @@ export class ListConfigDeliveryChannelsResponseBodyDeliveryChannels extends $tea
|
|
|
31205
31917
|
* 120886317861****
|
|
31206
31918
|
*/
|
|
31207
31919
|
accountId?: number;
|
|
31920
|
+
/**
|
|
31921
|
+
* @remarks
|
|
31922
|
+
* Indicates whether the specified destination receives scheduled compliant snapshots. Cloud Config delivers scheduled compliant snapshots at `04:00Z` and `16:00Z` to Log Service every day. The time is displayed in UTC. Valid values:
|
|
31923
|
+
*
|
|
31924
|
+
* * true: The specified destination receives scheduled compliant snapshots.
|
|
31925
|
+
* * false: The specified destination does not receive scheduled compliant snapshots.
|
|
31926
|
+
*
|
|
31927
|
+
* @example
|
|
31928
|
+
* false
|
|
31929
|
+
*/
|
|
31208
31930
|
compliantSnapshot?: boolean;
|
|
31209
31931
|
/**
|
|
31210
31932
|
* @remarks
|
|
@@ -32287,6 +33009,7 @@ export class ListDiscoveredResourcesResponseBodyDiscoveredResourceProfiles exten
|
|
|
32287
33009
|
}
|
|
32288
33010
|
|
|
32289
33011
|
export class ListIntegratedServiceResponseBodyData extends $tea.Model {
|
|
33012
|
+
aggregatorDeliveryDataType?: string;
|
|
32290
33013
|
/**
|
|
32291
33014
|
* @remarks
|
|
32292
33015
|
* The types of the integrated events. Separate multiple event types with commas (,). Valid values:
|
|
@@ -32331,6 +33054,7 @@ export class ListIntegratedServiceResponseBodyData extends $tea.Model {
|
|
|
32331
33054
|
status?: boolean;
|
|
32332
33055
|
static names(): { [key: string]: string } {
|
|
32333
33056
|
return {
|
|
33057
|
+
aggregatorDeliveryDataType: 'AggregatorDeliveryDataType',
|
|
32334
33058
|
integratedTypes: 'IntegratedTypes',
|
|
32335
33059
|
serviceCode: 'ServiceCode',
|
|
32336
33060
|
serviceName: 'ServiceName',
|
|
@@ -32340,6 +33064,7 @@ export class ListIntegratedServiceResponseBodyData extends $tea.Model {
|
|
|
32340
33064
|
|
|
32341
33065
|
static types(): { [key: string]: any } {
|
|
32342
33066
|
return {
|
|
33067
|
+
aggregatorDeliveryDataType: 'string',
|
|
32343
33068
|
integratedTypes: 'string',
|
|
32344
33069
|
serviceCode: 'string',
|
|
32345
33070
|
serviceName: 'string',
|
|
@@ -32559,11 +33284,17 @@ export class ListPreManagedRulesResponseBodyManagedRules extends $tea.Model {
|
|
|
32559
33284
|
/**
|
|
32560
33285
|
* @remarks
|
|
32561
33286
|
* The name of the rule.
|
|
33287
|
+
*
|
|
33288
|
+
* @example
|
|
33289
|
+
* ram-user-ak-used-expired-check
|
|
32562
33290
|
*/
|
|
32563
33291
|
configRuleName?: string;
|
|
32564
33292
|
/**
|
|
32565
33293
|
* @remarks
|
|
32566
33294
|
* The description of the rule.
|
|
33295
|
+
*
|
|
33296
|
+
* @example
|
|
33297
|
+
* Example description
|
|
32567
33298
|
*/
|
|
32568
33299
|
description?: string;
|
|
32569
33300
|
/**
|
|
@@ -33485,6 +34216,9 @@ export class ListSupportedProductsResponseBodyProductsResourceTypeList extends $
|
|
|
33485
34216
|
/**
|
|
33486
34217
|
* @remarks
|
|
33487
34218
|
* The Chinese name of the resource type.
|
|
34219
|
+
*
|
|
34220
|
+
* @example
|
|
34221
|
+
* ECS实例
|
|
33488
34222
|
*/
|
|
33489
34223
|
typeNameZh?: string;
|
|
33490
34224
|
/**
|
|
@@ -33530,6 +34264,9 @@ export class ListSupportedProductsResponseBodyProducts extends $tea.Model {
|
|
|
33530
34264
|
/**
|
|
33531
34265
|
* @remarks
|
|
33532
34266
|
* The Chinese name of the Alibaba Cloud service.
|
|
34267
|
+
*
|
|
34268
|
+
* @example
|
|
34269
|
+
* 云服务器ECS
|
|
33533
34270
|
*/
|
|
33534
34271
|
productNameZh?: string;
|
|
33535
34272
|
/**
|
|
@@ -34103,7 +34840,21 @@ export class UpdateAggregateCompliancePackShrinkRequestTagsScope extends $tea.Mo
|
|
|
34103
34840
|
}
|
|
34104
34841
|
|
|
34105
34842
|
export class UpdateAggregateConfigRuleRequestExcludeTagsScope extends $tea.Model {
|
|
34843
|
+
/**
|
|
34844
|
+
* @remarks
|
|
34845
|
+
* The tag key.
|
|
34846
|
+
*
|
|
34847
|
+
* @example
|
|
34848
|
+
* key-2
|
|
34849
|
+
*/
|
|
34106
34850
|
tagKey?: string;
|
|
34851
|
+
/**
|
|
34852
|
+
* @remarks
|
|
34853
|
+
* The tag value.
|
|
34854
|
+
*
|
|
34855
|
+
* @example
|
|
34856
|
+
* value-2
|
|
34857
|
+
*/
|
|
34107
34858
|
tagValue?: string;
|
|
34108
34859
|
static names(): { [key: string]: string } {
|
|
34109
34860
|
return {
|
|
@@ -34125,7 +34876,21 @@ export class UpdateAggregateConfigRuleRequestExcludeTagsScope extends $tea.Model
|
|
|
34125
34876
|
}
|
|
34126
34877
|
|
|
34127
34878
|
export class UpdateAggregateConfigRuleRequestTagsScope extends $tea.Model {
|
|
34879
|
+
/**
|
|
34880
|
+
* @remarks
|
|
34881
|
+
* The tag key.
|
|
34882
|
+
*
|
|
34883
|
+
* @example
|
|
34884
|
+
* key-1
|
|
34885
|
+
*/
|
|
34128
34886
|
tagKey?: string;
|
|
34887
|
+
/**
|
|
34888
|
+
* @remarks
|
|
34889
|
+
* The tag value.
|
|
34890
|
+
*
|
|
34891
|
+
* @example
|
|
34892
|
+
* value-1
|
|
34893
|
+
*/
|
|
34129
34894
|
tagValue?: string;
|
|
34130
34895
|
static names(): { [key: string]: string } {
|
|
34131
34896
|
return {
|
|
@@ -34147,7 +34912,21 @@ export class UpdateAggregateConfigRuleRequestTagsScope extends $tea.Model {
|
|
|
34147
34912
|
}
|
|
34148
34913
|
|
|
34149
34914
|
export class UpdateAggregateConfigRuleShrinkRequestExcludeTagsScope extends $tea.Model {
|
|
34915
|
+
/**
|
|
34916
|
+
* @remarks
|
|
34917
|
+
* The tag key.
|
|
34918
|
+
*
|
|
34919
|
+
* @example
|
|
34920
|
+
* key-2
|
|
34921
|
+
*/
|
|
34150
34922
|
tagKey?: string;
|
|
34923
|
+
/**
|
|
34924
|
+
* @remarks
|
|
34925
|
+
* The tag value.
|
|
34926
|
+
*
|
|
34927
|
+
* @example
|
|
34928
|
+
* value-2
|
|
34929
|
+
*/
|
|
34151
34930
|
tagValue?: string;
|
|
34152
34931
|
static names(): { [key: string]: string } {
|
|
34153
34932
|
return {
|
|
@@ -34169,7 +34948,21 @@ export class UpdateAggregateConfigRuleShrinkRequestExcludeTagsScope extends $tea
|
|
|
34169
34948
|
}
|
|
34170
34949
|
|
|
34171
34950
|
export class UpdateAggregateConfigRuleShrinkRequestTagsScope extends $tea.Model {
|
|
34951
|
+
/**
|
|
34952
|
+
* @remarks
|
|
34953
|
+
* The tag key.
|
|
34954
|
+
*
|
|
34955
|
+
* @example
|
|
34956
|
+
* key-1
|
|
34957
|
+
*/
|
|
34172
34958
|
tagKey?: string;
|
|
34959
|
+
/**
|
|
34960
|
+
* @remarks
|
|
34961
|
+
* The tag value.
|
|
34962
|
+
*
|
|
34963
|
+
* @example
|
|
34964
|
+
* value-1
|
|
34965
|
+
*/
|
|
34173
34966
|
tagValue?: string;
|
|
34174
34967
|
static names(): { [key: string]: string } {
|
|
34175
34968
|
return {
|
|
@@ -34622,6 +35415,10 @@ export default class Client extends OpenApi {
|
|
|
34622
35415
|
query["AggregatorId"] = request.aggregatorId;
|
|
34623
35416
|
}
|
|
34624
35417
|
|
|
35418
|
+
if (!Util.isUnset(request.compliancePackId)) {
|
|
35419
|
+
query["CompliancePackId"] = request.compliancePackId;
|
|
35420
|
+
}
|
|
35421
|
+
|
|
34625
35422
|
if (!Util.isUnset(request.configRuleIds)) {
|
|
34626
35423
|
query["ConfigRuleIds"] = request.configRuleIds;
|
|
34627
35424
|
}
|
|
@@ -34674,6 +35471,10 @@ export default class Client extends OpenApi {
|
|
|
34674
35471
|
async activeConfigRulesWithOptions(request: ActiveConfigRulesRequest, runtime: $Util.RuntimeOptions): Promise<ActiveConfigRulesResponse> {
|
|
34675
35472
|
Util.validateModel(request);
|
|
34676
35473
|
let query = { };
|
|
35474
|
+
if (!Util.isUnset(request.compliancePackId)) {
|
|
35475
|
+
query["CompliancePackId"] = request.compliancePackId;
|
|
35476
|
+
}
|
|
35477
|
+
|
|
34677
35478
|
if (!Util.isUnset(request.configRuleIds)) {
|
|
34678
35479
|
query["ConfigRuleIds"] = request.configRuleIds;
|
|
34679
35480
|
}
|
|
@@ -35314,6 +36115,10 @@ export default class Client extends OpenApi {
|
|
|
35314
36115
|
bodyFlat["ExcludeTagsScope"] = request.excludeTagsScope;
|
|
35315
36116
|
}
|
|
35316
36117
|
|
|
36118
|
+
if (!Util.isUnset(request.extendContent)) {
|
|
36119
|
+
body["ExtendContent"] = request.extendContent;
|
|
36120
|
+
}
|
|
36121
|
+
|
|
35317
36122
|
if (!Util.isUnset(request.folderIdsScope)) {
|
|
35318
36123
|
body["FolderIdsScope"] = request.folderIdsScope;
|
|
35319
36124
|
}
|
|
@@ -35848,6 +36653,10 @@ export default class Client extends OpenApi {
|
|
|
35848
36653
|
bodyFlat["ExcludeTagsScope"] = request.excludeTagsScope;
|
|
35849
36654
|
}
|
|
35850
36655
|
|
|
36656
|
+
if (!Util.isUnset(request.extendContent)) {
|
|
36657
|
+
body["ExtendContent"] = request.extendContent;
|
|
36658
|
+
}
|
|
36659
|
+
|
|
35851
36660
|
if (!Util.isUnset(request.inputParametersShrink)) {
|
|
35852
36661
|
body["InputParameters"] = request.inputParametersShrink;
|
|
35853
36662
|
}
|
|
@@ -36122,6 +36931,10 @@ export default class Client extends OpenApi {
|
|
|
36122
36931
|
query["AggregatorId"] = request.aggregatorId;
|
|
36123
36932
|
}
|
|
36124
36933
|
|
|
36934
|
+
if (!Util.isUnset(request.compliancePackId)) {
|
|
36935
|
+
query["CompliancePackId"] = request.compliancePackId;
|
|
36936
|
+
}
|
|
36937
|
+
|
|
36125
36938
|
if (!Util.isUnset(request.configRuleIds)) {
|
|
36126
36939
|
query["ConfigRuleIds"] = request.configRuleIds;
|
|
36127
36940
|
}
|
|
@@ -36176,6 +36989,10 @@ export default class Client extends OpenApi {
|
|
|
36176
36989
|
async deactiveConfigRulesWithOptions(request: DeactiveConfigRulesRequest, runtime: $Util.RuntimeOptions): Promise<DeactiveConfigRulesResponse> {
|
|
36177
36990
|
Util.validateModel(request);
|
|
36178
36991
|
let query = { };
|
|
36992
|
+
if (!Util.isUnset(request.compliancePackId)) {
|
|
36993
|
+
query["CompliancePackId"] = request.compliancePackId;
|
|
36994
|
+
}
|
|
36995
|
+
|
|
36179
36996
|
if (!Util.isUnset(request.configRuleIds)) {
|
|
36180
36997
|
query["ConfigRuleIds"] = request.configRuleIds;
|
|
36181
36998
|
}
|
|
@@ -39783,6 +40600,10 @@ export default class Client extends OpenApi {
|
|
|
39783
40600
|
query["AggregatorId"] = request.aggregatorId;
|
|
39784
40601
|
}
|
|
39785
40602
|
|
|
40603
|
+
if (!Util.isUnset(request.compliancePackId)) {
|
|
40604
|
+
query["CompliancePackId"] = request.compliancePackId;
|
|
40605
|
+
}
|
|
40606
|
+
|
|
39786
40607
|
if (!Util.isUnset(request.complianceType)) {
|
|
39787
40608
|
query["ComplianceType"] = request.complianceType;
|
|
39788
40609
|
}
|
|
@@ -40218,7 +41039,7 @@ export default class Client extends OpenApi {
|
|
|
40218
41039
|
* Obtains resources in a specific account group based on the fields in the resource properties by using a SELECT statement.
|
|
40219
41040
|
*
|
|
40220
41041
|
* @remarks
|
|
40221
|
-
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see
|
|
41042
|
+
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see[ Alibaba Cloud Config Resource Schema](https://github.com/aliyun/alibabacloud-config-resource-schema)
|
|
40222
41043
|
* >
|
|
40223
41044
|
* * Each resource type supported by Cloud Config has a property file. Property files are named based on the related resource types. For example, the property file of the `ACS::ECS::Instance` resource type is named `ACS_ECS_Instance.properties.json`. Property files of different resource types are placed under the `config/properties/resource-types` path.
|
|
40224
41045
|
* * For more information about the examples and limits on SQL query statements, see [Examples of SQL query statements](https://help.aliyun.com/document_detail/398718.html) and [Limits on SQL query statements](https://help.aliyun.com/document_detail/398750.html).
|
|
@@ -40260,7 +41081,7 @@ export default class Client extends OpenApi {
|
|
|
40260
41081
|
* Obtains resources in a specific account group based on the fields in the resource properties by using a SELECT statement.
|
|
40261
41082
|
*
|
|
40262
41083
|
* @remarks
|
|
40263
|
-
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see
|
|
41084
|
+
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see[ Alibaba Cloud Config Resource Schema](https://github.com/aliyun/alibabacloud-config-resource-schema)
|
|
40264
41085
|
* >
|
|
40265
41086
|
* * Each resource type supported by Cloud Config has a property file. Property files are named based on the related resource types. For example, the property file of the `ACS::ECS::Instance` resource type is named `ACS_ECS_Instance.properties.json`. Property files of different resource types are placed under the `config/properties/resource-types` path.
|
|
40266
41087
|
* * For more information about the examples and limits on SQL query statements, see [Examples of SQL query statements](https://help.aliyun.com/document_detail/398718.html) and [Limits on SQL query statements](https://help.aliyun.com/document_detail/398750.html).
|
|
@@ -40275,7 +41096,7 @@ export default class Client extends OpenApi {
|
|
|
40275
41096
|
}
|
|
40276
41097
|
|
|
40277
41098
|
/**
|
|
40278
|
-
* Queries
|
|
41099
|
+
* Queries all account groups within the current management account or delegated administrator account.
|
|
40279
41100
|
*
|
|
40280
41101
|
* @remarks
|
|
40281
41102
|
* The sample request in this topic shows you how to query account groups. A maximum of 10 entries can be returned for the request. As shown in the responses, the account group returned is named as `Test_Group`, its description is `Test account group`, and it is of the `CUSTOM` type, which indicates a custom account group. The account group contains two member accounts.
|
|
@@ -40313,7 +41134,7 @@ export default class Client extends OpenApi {
|
|
|
40313
41134
|
}
|
|
40314
41135
|
|
|
40315
41136
|
/**
|
|
40316
|
-
* Queries
|
|
41137
|
+
* Queries all account groups within the current management account or delegated administrator account.
|
|
40317
41138
|
*
|
|
40318
41139
|
* @remarks
|
|
40319
41140
|
* The sample request in this topic shows you how to query account groups. A maximum of 10 entries can be returned for the request. As shown in the responses, the account group returned is named as `Test_Group`, its description is `Test account group`, and it is of the `CUSTOM` type, which indicates a custom account group. The account group contains two member accounts.
|
|
@@ -40330,7 +41151,7 @@ export default class Client extends OpenApi {
|
|
|
40330
41151
|
* Queries all compliance package templates provided by Cloud Config and the details of the compliance package templates.
|
|
40331
41152
|
*
|
|
40332
41153
|
* @remarks
|
|
40333
|
-
*
|
|
41154
|
+
* A compliance package template is a collection of rules that Cloud Config can create based on compliance scenarios.
|
|
40334
41155
|
*
|
|
40335
41156
|
* @param request - ListCompliancePackTemplatesRequest
|
|
40336
41157
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -40376,7 +41197,7 @@ export default class Client extends OpenApi {
|
|
|
40376
41197
|
* Queries all compliance package templates provided by Cloud Config and the details of the compliance package templates.
|
|
40377
41198
|
*
|
|
40378
41199
|
* @remarks
|
|
40379
|
-
*
|
|
41200
|
+
* A compliance package template is a collection of rules that Cloud Config can create based on compliance scenarios.
|
|
40380
41201
|
*
|
|
40381
41202
|
* @param request - ListCompliancePackTemplatesRequest
|
|
40382
41203
|
* @returns ListCompliancePackTemplatesResponse
|
|
@@ -40573,6 +41394,10 @@ export default class Client extends OpenApi {
|
|
|
40573
41394
|
async listConfigRulesWithOptions(request: ListConfigRulesRequest, runtime: $Util.RuntimeOptions): Promise<ListConfigRulesResponse> {
|
|
40574
41395
|
Util.validateModel(request);
|
|
40575
41396
|
let query = { };
|
|
41397
|
+
if (!Util.isUnset(request.compliancePackId)) {
|
|
41398
|
+
query["CompliancePackId"] = request.compliancePackId;
|
|
41399
|
+
}
|
|
41400
|
+
|
|
40576
41401
|
if (!Util.isUnset(request.complianceType)) {
|
|
40577
41402
|
query["ComplianceType"] = request.complianceType;
|
|
40578
41403
|
}
|
|
@@ -41212,7 +42037,7 @@ export default class Client extends OpenApi {
|
|
|
41212
42037
|
* Obtains resources based on the fields in the resource properties by using a SELECT statement.
|
|
41213
42038
|
*
|
|
41214
42039
|
* @remarks
|
|
41215
|
-
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see [Alibaba Cloud Config Resource Schema].
|
|
42040
|
+
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see [Alibaba Cloud Config Resource Schema](https://github.com/aliyun/alibabacloud-config-resource-schema).
|
|
41216
42041
|
* >
|
|
41217
42042
|
* * Each resource type supported by Cloud Config has a property file. Property files are named based on the related resource types. For example, the property file of the `ACS::ECS::Instance` resource type is named `ACS_ECS_Instance.properties.json`. Property files of different resource types are placed under the `config/properties/resource-types` path.
|
|
41218
42043
|
* * For more information about the examples and limits on SQL query statements, see [Examples of SQL query statements](https://help.aliyun.com/document_detail/398718.html) and [Limits on SQL query statements](https://help.aliyun.com/document_detail/398750.html).
|
|
@@ -41250,7 +42075,7 @@ export default class Client extends OpenApi {
|
|
|
41250
42075
|
* Obtains resources based on the fields in the resource properties by using a SELECT statement.
|
|
41251
42076
|
*
|
|
41252
42077
|
* @remarks
|
|
41253
|
-
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see [Alibaba Cloud Config Resource Schema].
|
|
42078
|
+
* When you write a `SELECT` statement, you must obtain the fields and the data types of the fields from the property file of the resource type. For more information about property files, see [Alibaba Cloud Config Resource Schema](https://github.com/aliyun/alibabacloud-config-resource-schema).
|
|
41254
42079
|
* >
|
|
41255
42080
|
* * Each resource type supported by Cloud Config has a property file. Property files are named based on the related resource types. For example, the property file of the `ACS::ECS::Instance` resource type is named `ACS_ECS_Instance.properties.json`. Property files of different resource types are placed under the `config/properties/resource-types` path.
|
|
41256
42081
|
* * For more information about the examples and limits on SQL query statements, see [Examples of SQL query statements](https://help.aliyun.com/document_detail/398718.html) and [Limits on SQL query statements](https://help.aliyun.com/document_detail/398750.html).
|
|
@@ -42628,7 +43453,7 @@ export default class Client extends OpenApi {
|
|
|
42628
43453
|
}
|
|
42629
43454
|
|
|
42630
43455
|
/**
|
|
42631
|
-
* Modifies a delivery channel.
|
|
43456
|
+
* Modifies a delivery channel by using the current account.
|
|
42632
43457
|
*
|
|
42633
43458
|
* @remarks
|
|
42634
43459
|
* In this example, a delivery channel is disabled. The ID of the delivery channel is `cdc-8e45ff4e06a3a8****```. The Status parameter is set to 0. After the delivery channel is disabled, Cloud Config retains the most recent delivery configuration and stops the delivery of resource data.
|
|
@@ -42710,7 +43535,7 @@ export default class Client extends OpenApi {
|
|
|
42710
43535
|
}
|
|
42711
43536
|
|
|
42712
43537
|
/**
|
|
42713
|
-
* Modifies a delivery channel.
|
|
43538
|
+
* Modifies a delivery channel by using the current account.
|
|
42714
43539
|
*
|
|
42715
43540
|
* @remarks
|
|
42716
43541
|
* In this example, a delivery channel is disabled. The ID of the delivery channel is `cdc-8e45ff4e06a3a8****```. The Status parameter is set to 0. After the delivery channel is disabled, Cloud Config retains the most recent delivery configuration and stops the delivery of resource data.
|
|
@@ -42783,6 +43608,10 @@ export default class Client extends OpenApi {
|
|
|
42783
43608
|
bodyFlat["ExcludeTagsScope"] = request.excludeTagsScope;
|
|
42784
43609
|
}
|
|
42785
43610
|
|
|
43611
|
+
if (!Util.isUnset(request.extendContent)) {
|
|
43612
|
+
body["ExtendContent"] = request.extendContent;
|
|
43613
|
+
}
|
|
43614
|
+
|
|
42786
43615
|
if (!Util.isUnset(request.inputParametersShrink)) {
|
|
42787
43616
|
body["InputParameters"] = request.inputParametersShrink;
|
|
42788
43617
|
}
|
|
@@ -43018,6 +43847,10 @@ export default class Client extends OpenApi {
|
|
|
43018
43847
|
async updateIntegratedServiceStatusWithOptions(request: UpdateIntegratedServiceStatusRequest, runtime: $Util.RuntimeOptions): Promise<UpdateIntegratedServiceStatusResponse> {
|
|
43019
43848
|
Util.validateModel(request);
|
|
43020
43849
|
let body : {[key: string ]: any} = { };
|
|
43850
|
+
if (!Util.isUnset(request.aggregatorDeliveryDataType)) {
|
|
43851
|
+
body["AggregatorDeliveryDataType"] = request.aggregatorDeliveryDataType;
|
|
43852
|
+
}
|
|
43853
|
+
|
|
43021
43854
|
if (!Util.isUnset(request.integratedTypes)) {
|
|
43022
43855
|
body["IntegratedTypes"] = request.integratedTypes;
|
|
43023
43856
|
}
|