@alicloud/config20200907 2.4.0 → 3.0.1
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 +242 -8
- package/dist/client.js +248 -8
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +252 -8
package/dist/client.d.ts
CHANGED
|
@@ -3301,6 +3301,7 @@ export declare class GetIntegratedServiceStatusRequest extends $tea.Model {
|
|
|
3301
3301
|
}
|
|
3302
3302
|
export declare class GetIntegratedServiceStatusResponseBody extends $tea.Model {
|
|
3303
3303
|
data?: boolean;
|
|
3304
|
+
integratedTypes?: string;
|
|
3304
3305
|
requestId?: string;
|
|
3305
3306
|
static names(): {
|
|
3306
3307
|
[key: string]: string;
|
|
@@ -6325,6 +6326,7 @@ export declare class UpdateDeliveryChannelResponse extends $tea.Model {
|
|
|
6325
6326
|
});
|
|
6326
6327
|
}
|
|
6327
6328
|
export declare class UpdateIntegratedServiceStatusRequest extends $tea.Model {
|
|
6329
|
+
integratedTypes?: string;
|
|
6328
6330
|
serviceCode?: string;
|
|
6329
6331
|
status?: boolean;
|
|
6330
6332
|
static names(): {
|
|
@@ -9197,6 +9199,7 @@ export declare class ListDiscoveredResourcesResponseBodyDiscoveredResourceProfil
|
|
|
9197
9199
|
});
|
|
9198
9200
|
}
|
|
9199
9201
|
export declare class ListIntegratedServiceResponseBodyData extends $tea.Model {
|
|
9202
|
+
integratedTypes?: string;
|
|
9200
9203
|
serviceCode?: string;
|
|
9201
9204
|
serviceName?: string;
|
|
9202
9205
|
status?: boolean;
|
|
@@ -9741,7 +9744,20 @@ export default class Client extends OpenApi {
|
|
|
9741
9744
|
copyConfigRules(request: CopyConfigRulesRequest): Promise<CopyConfigRulesResponse>;
|
|
9742
9745
|
createAdvancedSearchFileWithOptions(request: CreateAdvancedSearchFileRequest, runtime: $Util.RuntimeOptions): Promise<CreateAdvancedSearchFileResponse>;
|
|
9743
9746
|
createAdvancedSearchFile(request: CreateAdvancedSearchFileRequest): Promise<CreateAdvancedSearchFileResponse>;
|
|
9747
|
+
/**
|
|
9748
|
+
* This topic provides an example on how to create a downloadable resource file for an account group whose ID is `ca-edd3626622af00b3****`. The resource file includes all the ECS instances in the account group.
|
|
9749
|
+
*
|
|
9750
|
+
* @param request CreateAggregateAdvancedSearchFileRequest
|
|
9751
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9752
|
+
* @return CreateAggregateAdvancedSearchFileResponse
|
|
9753
|
+
*/
|
|
9744
9754
|
createAggregateAdvancedSearchFileWithOptions(request: CreateAggregateAdvancedSearchFileRequest, runtime: $Util.RuntimeOptions): Promise<CreateAggregateAdvancedSearchFileResponse>;
|
|
9755
|
+
/**
|
|
9756
|
+
* This topic provides an example on how to create a downloadable resource file for an account group whose ID is `ca-edd3626622af00b3****`. The resource file includes all the ECS instances in the account group.
|
|
9757
|
+
*
|
|
9758
|
+
* @param request CreateAggregateAdvancedSearchFileRequest
|
|
9759
|
+
* @return CreateAggregateAdvancedSearchFileResponse
|
|
9760
|
+
*/
|
|
9745
9761
|
createAggregateAdvancedSearchFile(request: CreateAggregateAdvancedSearchFileRequest): Promise<CreateAggregateAdvancedSearchFileResponse>;
|
|
9746
9762
|
/**
|
|
9747
9763
|
* You can use your management account to create up to five compliance packages for each account group.
|
|
@@ -10097,9 +10113,10 @@ export default class Client extends OpenApi {
|
|
|
10097
10113
|
describeRemediationWithOptions(request: DescribeRemediationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRemediationResponse>;
|
|
10098
10114
|
describeRemediation(request: DescribeRemediationRequest): Promise<DescribeRemediationResponse>;
|
|
10099
10115
|
/**
|
|
10116
|
+
* ### Prerequisites
|
|
10117
|
+
* One or more rules are added to a compliance package.
|
|
10118
|
+
* ### Usage notes
|
|
10100
10119
|
* The sample request in this topic shows you how to remove the `cr-6cc4626622af00e7****` rule in the `ca-75b4626622af00c3****` account group from the `cp-5bb1626622af00bd****` compliance package.
|
|
10101
|
-
* ## Prerequisites
|
|
10102
|
-
* One or more rules in an account group are added to a compliance package.
|
|
10103
10120
|
*
|
|
10104
10121
|
* @param request DetachAggregateConfigRuleToCompliancePackRequest
|
|
10105
10122
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -10107,9 +10124,10 @@ export default class Client extends OpenApi {
|
|
|
10107
10124
|
*/
|
|
10108
10125
|
detachAggregateConfigRuleToCompliancePackWithOptions(request: DetachAggregateConfigRuleToCompliancePackRequest, runtime: $Util.RuntimeOptions): Promise<DetachAggregateConfigRuleToCompliancePackResponse>;
|
|
10109
10126
|
/**
|
|
10127
|
+
* ### Prerequisites
|
|
10128
|
+
* One or more rules are added to a compliance package.
|
|
10129
|
+
* ### Usage notes
|
|
10110
10130
|
* The sample request in this topic shows you how to remove the `cr-6cc4626622af00e7****` rule in the `ca-75b4626622af00c3****` account group from the `cp-5bb1626622af00bd****` compliance package.
|
|
10111
|
-
* ## Prerequisites
|
|
10112
|
-
* One or more rules in an account group are added to a compliance package.
|
|
10113
10131
|
*
|
|
10114
10132
|
* @param request DetachAggregateConfigRuleToCompliancePackRequest
|
|
10115
10133
|
* @return DetachAggregateConfigRuleToCompliancePackResponse
|
|
@@ -10172,7 +10190,20 @@ export default class Client extends OpenApi {
|
|
|
10172
10190
|
* @return GenerateAggregateConfigRulesReportResponse
|
|
10173
10191
|
*/
|
|
10174
10192
|
generateAggregateConfigRulesReport(request: GenerateAggregateConfigRulesReportRequest): Promise<GenerateAggregateConfigRulesReportResponse>;
|
|
10193
|
+
/**
|
|
10194
|
+
* This topic provides an example to show how to generate a downloadable inventory for global resources in the account group ca-a91d626622af0035\\*\\*\\*\\*.
|
|
10195
|
+
*
|
|
10196
|
+
* @param request GenerateAggregateResourceInventoryRequest
|
|
10197
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10198
|
+
* @return GenerateAggregateResourceInventoryResponse
|
|
10199
|
+
*/
|
|
10175
10200
|
generateAggregateResourceInventoryWithOptions(request: GenerateAggregateResourceInventoryRequest, runtime: $Util.RuntimeOptions): Promise<GenerateAggregateResourceInventoryResponse>;
|
|
10201
|
+
/**
|
|
10202
|
+
* This topic provides an example to show how to generate a downloadable inventory for global resources in the account group ca-a91d626622af0035\\*\\*\\*\\*.
|
|
10203
|
+
*
|
|
10204
|
+
* @param request GenerateAggregateResourceInventoryRequest
|
|
10205
|
+
* @return GenerateAggregateResourceInventoryResponse
|
|
10206
|
+
*/
|
|
10176
10207
|
generateAggregateResourceInventory(request: GenerateAggregateResourceInventoryRequest): Promise<GenerateAggregateResourceInventoryResponse>;
|
|
10177
10208
|
/**
|
|
10178
10209
|
* > You can call this operation to generate the latest compliance evaluation report. To download the report, call the GetCompliancePackReport operation. For more information, see [GetCompliancePackReport](~~263347~~).
|
|
@@ -10208,7 +10239,20 @@ export default class Client extends OpenApi {
|
|
|
10208
10239
|
* @return GenerateConfigRulesReportResponse
|
|
10209
10240
|
*/
|
|
10210
10241
|
generateConfigRulesReport(request: GenerateConfigRulesReportRequest): Promise<GenerateConfigRulesReportResponse>;
|
|
10242
|
+
/**
|
|
10243
|
+
* This topic provides an example on how to generate a resource inventory for global resources of the current account.
|
|
10244
|
+
*
|
|
10245
|
+
* @param request GenerateResourceInventoryRequest
|
|
10246
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10247
|
+
* @return GenerateResourceInventoryResponse
|
|
10248
|
+
*/
|
|
10211
10249
|
generateResourceInventoryWithOptions(request: GenerateResourceInventoryRequest, runtime: $Util.RuntimeOptions): Promise<GenerateResourceInventoryResponse>;
|
|
10250
|
+
/**
|
|
10251
|
+
* This topic provides an example on how to generate a resource inventory for global resources of the current account.
|
|
10252
|
+
*
|
|
10253
|
+
* @param request GenerateResourceInventoryRequest
|
|
10254
|
+
* @return GenerateResourceInventoryResponse
|
|
10255
|
+
*/
|
|
10212
10256
|
generateResourceInventory(request: GenerateResourceInventoryRequest): Promise<GenerateResourceInventoryResponse>;
|
|
10213
10257
|
getAdvancedSearchFileWithOptions(runtime: $Util.RuntimeOptions): Promise<GetAdvancedSearchFileResponse>;
|
|
10214
10258
|
getAdvancedSearchFile(): Promise<GetAdvancedSearchFileResponse>;
|
|
@@ -10261,7 +10305,20 @@ export default class Client extends OpenApi {
|
|
|
10261
10305
|
* @return GetAggregateCompliancePackReportResponse
|
|
10262
10306
|
*/
|
|
10263
10307
|
getAggregateCompliancePackReport(request: GetAggregateCompliancePackReportRequest): Promise<GetAggregateCompliancePackReportResponse>;
|
|
10308
|
+
/**
|
|
10309
|
+
* This topic provides an example on how to query the compliance statistics of resources and rules in the account group ca-a91d626622af0035\\*\\*\\*\\*.
|
|
10310
|
+
*
|
|
10311
|
+
* @param request GetAggregateComplianceSummaryRequest
|
|
10312
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10313
|
+
* @return GetAggregateComplianceSummaryResponse
|
|
10314
|
+
*/
|
|
10264
10315
|
getAggregateComplianceSummaryWithOptions(request: GetAggregateComplianceSummaryRequest, runtime: $Util.RuntimeOptions): Promise<GetAggregateComplianceSummaryResponse>;
|
|
10316
|
+
/**
|
|
10317
|
+
* This topic provides an example on how to query the compliance statistics of resources and rules in the account group ca-a91d626622af0035\\*\\*\\*\\*.
|
|
10318
|
+
*
|
|
10319
|
+
* @param request GetAggregateComplianceSummaryRequest
|
|
10320
|
+
* @return GetAggregateComplianceSummaryResponse
|
|
10321
|
+
*/
|
|
10265
10322
|
getAggregateComplianceSummary(request: GetAggregateComplianceSummaryRequest): Promise<GetAggregateComplianceSummaryResponse>;
|
|
10266
10323
|
getAggregateConfigDeliveryChannelWithOptions(request: GetAggregateConfigDeliveryChannelRequest, runtime: $Util.RuntimeOptions): Promise<GetAggregateConfigDeliveryChannelResponse>;
|
|
10267
10324
|
getAggregateConfigDeliveryChannel(request: GetAggregateConfigDeliveryChannelRequest): Promise<GetAggregateConfigDeliveryChannelResponse>;
|
|
@@ -10343,7 +10400,7 @@ export default class Client extends OpenApi {
|
|
|
10343
10400
|
*/
|
|
10344
10401
|
getAggregateDiscoveredResource(request: GetAggregateDiscoveredResourceRequest): Promise<GetAggregateDiscoveredResourceResponse>;
|
|
10345
10402
|
/**
|
|
10346
|
-
*
|
|
10403
|
+
* This topic provides an example on how to query the compliance evaluation results based on the `cr-d369626622af008e****` rule in the `ca-a4e5626622af0079****` account group. The returned result shows that a total of 10 resources are evaluated by the rule and five of them are evaluated as compliant.
|
|
10347
10404
|
*
|
|
10348
10405
|
* @param request GetAggregateResourceComplianceByConfigRuleRequest
|
|
10349
10406
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -10351,7 +10408,7 @@ export default class Client extends OpenApi {
|
|
|
10351
10408
|
*/
|
|
10352
10409
|
getAggregateResourceComplianceByConfigRuleWithOptions(request: GetAggregateResourceComplianceByConfigRuleRequest, runtime: $Util.RuntimeOptions): Promise<GetAggregateResourceComplianceByConfigRuleResponse>;
|
|
10353
10410
|
/**
|
|
10354
|
-
*
|
|
10411
|
+
* This topic provides an example on how to query the compliance evaluation results based on the `cr-d369626622af008e****` rule in the `ca-a4e5626622af0079****` account group. The returned result shows that a total of 10 resources are evaluated by the rule and five of them are evaluated as compliant.
|
|
10355
10412
|
*
|
|
10356
10413
|
* @param request GetAggregateResourceComplianceByConfigRuleRequest
|
|
10357
10414
|
* @return GetAggregateResourceComplianceByConfigRuleResponse
|
|
@@ -10436,7 +10493,20 @@ export default class Client extends OpenApi {
|
|
|
10436
10493
|
* @return GetAggregateResourceCountsGroupByResourceTypeResponse
|
|
10437
10494
|
*/
|
|
10438
10495
|
getAggregateResourceCountsGroupByResourceType(request: GetAggregateResourceCountsGroupByResourceTypeRequest): Promise<GetAggregateResourceCountsGroupByResourceTypeResponse>;
|
|
10496
|
+
/**
|
|
10497
|
+
* This topic provides an example on how to query the most recently generated resource inventory of an account group whose ID is ca-a91d626622af0035\\*\\*\\*\\*.
|
|
10498
|
+
*
|
|
10499
|
+
* @param request GetAggregateResourceInventoryRequest
|
|
10500
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10501
|
+
* @return GetAggregateResourceInventoryResponse
|
|
10502
|
+
*/
|
|
10439
10503
|
getAggregateResourceInventoryWithOptions(request: GetAggregateResourceInventoryRequest, runtime: $Util.RuntimeOptions): Promise<GetAggregateResourceInventoryResponse>;
|
|
10504
|
+
/**
|
|
10505
|
+
* This topic provides an example on how to query the most recently generated resource inventory of an account group whose ID is ca-a91d626622af0035\\*\\*\\*\\*.
|
|
10506
|
+
*
|
|
10507
|
+
* @param request GetAggregateResourceInventoryRequest
|
|
10508
|
+
* @return GetAggregateResourceInventoryResponse
|
|
10509
|
+
*/
|
|
10440
10510
|
getAggregateResourceInventory(request: GetAggregateResourceInventoryRequest): Promise<GetAggregateResourceInventoryResponse>;
|
|
10441
10511
|
/**
|
|
10442
10512
|
* The sample request in this topic shows you how to query the details of the `ca-88ea626622af0055****` account group. The return result shows that the account group is named `Test_Group`, its description is `Test account group`, and it is of the `CUSTOM` type. The account group is in the `1` state, which indicates that it is created.
|
|
@@ -10485,7 +10555,19 @@ export default class Client extends OpenApi {
|
|
|
10485
10555
|
* @return GetCompliancePackReportResponse
|
|
10486
10556
|
*/
|
|
10487
10557
|
getCompliancePackReport(request: GetCompliancePackReportRequest): Promise<GetCompliancePackReportResponse>;
|
|
10558
|
+
/**
|
|
10559
|
+
* This topic provides an example on how to query the compliance statistics of resources and rules in the current account group.
|
|
10560
|
+
*
|
|
10561
|
+
* @param request GetComplianceSummaryRequest
|
|
10562
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10563
|
+
* @return GetComplianceSummaryResponse
|
|
10564
|
+
*/
|
|
10488
10565
|
getComplianceSummaryWithOptions(runtime: $Util.RuntimeOptions): Promise<GetComplianceSummaryResponse>;
|
|
10566
|
+
/**
|
|
10567
|
+
* This topic provides an example on how to query the compliance statistics of resources and rules in the current account group.
|
|
10568
|
+
*
|
|
10569
|
+
* @return GetComplianceSummaryResponse
|
|
10570
|
+
*/
|
|
10489
10571
|
getComplianceSummary(): Promise<GetComplianceSummaryResponse>;
|
|
10490
10572
|
getConfigDeliveryChannelWithOptions(request: GetConfigDeliveryChannelRequest, runtime: $Util.RuntimeOptions): Promise<GetConfigDeliveryChannelResponse>;
|
|
10491
10573
|
getConfigDeliveryChannel(request: GetConfigDeliveryChannelRequest): Promise<GetConfigDeliveryChannelResponse>;
|
|
@@ -10550,7 +10632,19 @@ export default class Client extends OpenApi {
|
|
|
10550
10632
|
* @return GetConfigRulesReportResponse
|
|
10551
10633
|
*/
|
|
10552
10634
|
getConfigRulesReport(request: GetConfigRulesReportRequest): Promise<GetConfigRulesReportResponse>;
|
|
10635
|
+
/**
|
|
10636
|
+
* This topic provides an example on how to query the activation status and resource monitoring scope of Cloud Config for the current account.
|
|
10637
|
+
*
|
|
10638
|
+
* @param request GetConfigurationRecorderRequest
|
|
10639
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10640
|
+
* @return GetConfigurationRecorderResponse
|
|
10641
|
+
*/
|
|
10553
10642
|
getConfigurationRecorderWithOptions(runtime: $Util.RuntimeOptions): Promise<GetConfigurationRecorderResponse>;
|
|
10643
|
+
/**
|
|
10644
|
+
* This topic provides an example on how to query the activation status and resource monitoring scope of Cloud Config for the current account.
|
|
10645
|
+
*
|
|
10646
|
+
* @return GetConfigurationRecorderResponse
|
|
10647
|
+
*/
|
|
10554
10648
|
getConfigurationRecorder(): Promise<GetConfigurationRecorderResponse>;
|
|
10555
10649
|
/**
|
|
10556
10650
|
* The sample request in this topic shows you how to query the details of the `new-bucket` resource.
|
|
@@ -10568,7 +10662,7 @@ export default class Client extends OpenApi {
|
|
|
10568
10662
|
*/
|
|
10569
10663
|
getDiscoveredResource(request: GetDiscoveredResourceRequest): Promise<GetDiscoveredResourceResponse>;
|
|
10570
10664
|
/**
|
|
10571
|
-
* This topic provides an example
|
|
10665
|
+
* This topic provides an example to demonstrate how to query the statistics on resources by region. The returned result shows that a total of 10 resources exist in the `cn-hangzhou` region.
|
|
10572
10666
|
*
|
|
10573
10667
|
* @param request GetDiscoveredResourceCountsGroupByRegionRequest
|
|
10574
10668
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -10576,7 +10670,7 @@ export default class Client extends OpenApi {
|
|
|
10576
10670
|
*/
|
|
10577
10671
|
getDiscoveredResourceCountsGroupByRegionWithOptions(request: GetDiscoveredResourceCountsGroupByRegionRequest, runtime: $Util.RuntimeOptions): Promise<GetDiscoveredResourceCountsGroupByRegionResponse>;
|
|
10578
10672
|
/**
|
|
10579
|
-
* This topic provides an example
|
|
10673
|
+
* This topic provides an example to demonstrate how to query the statistics on resources by region. The returned result shows that a total of 10 resources exist in the `cn-hangzhou` region.
|
|
10580
10674
|
*
|
|
10581
10675
|
* @param request GetDiscoveredResourceCountsGroupByRegionRequest
|
|
10582
10676
|
* @return GetDiscoveredResourceCountsGroupByRegionResponse
|
|
@@ -10614,7 +10708,20 @@ export default class Client extends OpenApi {
|
|
|
10614
10708
|
* @return GetManagedRuleResponse
|
|
10615
10709
|
*/
|
|
10616
10710
|
getManagedRule(request: GetManagedRuleRequest): Promise<GetManagedRuleResponse>;
|
|
10711
|
+
/**
|
|
10712
|
+
* This topic provides an example on how to query the details of the automatic remediation template ACS-ALB-BulkyEnableDeletionProtection.
|
|
10713
|
+
*
|
|
10714
|
+
* @param request GetRemediationTemplateRequest
|
|
10715
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10716
|
+
* @return GetRemediationTemplateResponse
|
|
10717
|
+
*/
|
|
10617
10718
|
getRemediationTemplateWithOptions(request: GetRemediationTemplateRequest, runtime: $Util.RuntimeOptions): Promise<GetRemediationTemplateResponse>;
|
|
10719
|
+
/**
|
|
10720
|
+
* This topic provides an example on how to query the details of the automatic remediation template ACS-ALB-BulkyEnableDeletionProtection.
|
|
10721
|
+
*
|
|
10722
|
+
* @param request GetRemediationTemplateRequest
|
|
10723
|
+
* @return GetRemediationTemplateResponse
|
|
10724
|
+
*/
|
|
10618
10725
|
getRemediationTemplate(request: GetRemediationTemplateRequest): Promise<GetRemediationTemplateResponse>;
|
|
10619
10726
|
/**
|
|
10620
10727
|
* In this topic, the `cr-d369626622af008e****` rule is used as an example. The return result shows that a total of 10 resources are evaluated by the rule and `five` of them are evaluated as compliant.
|
|
@@ -10680,7 +10787,19 @@ export default class Client extends OpenApi {
|
|
|
10680
10787
|
* @return GetResourceConfigurationTimelineResponse
|
|
10681
10788
|
*/
|
|
10682
10789
|
getResourceConfigurationTimeline(request: GetResourceConfigurationTimelineRequest): Promise<GetResourceConfigurationTimelineResponse>;
|
|
10790
|
+
/**
|
|
10791
|
+
* This topic provides an example on how to query the most recently generated resource inventory of the current Alibaba Cloud account.
|
|
10792
|
+
*
|
|
10793
|
+
* @param request GetResourceInventoryRequest
|
|
10794
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10795
|
+
* @return GetResourceInventoryResponse
|
|
10796
|
+
*/
|
|
10683
10797
|
getResourceInventoryWithOptions(runtime: $Util.RuntimeOptions): Promise<GetResourceInventoryResponse>;
|
|
10798
|
+
/**
|
|
10799
|
+
* This topic provides an example on how to query the most recently generated resource inventory of the current Alibaba Cloud account.
|
|
10800
|
+
*
|
|
10801
|
+
* @return GetResourceInventoryResponse
|
|
10802
|
+
*/
|
|
10684
10803
|
getResourceInventory(): Promise<GetResourceInventoryResponse>;
|
|
10685
10804
|
/**
|
|
10686
10805
|
* This topic provides an example to show how to query the resource relationships that are supported by the ACS::ECS::Instance resource type.
|
|
@@ -10763,7 +10882,20 @@ export default class Client extends OpenApi {
|
|
|
10763
10882
|
* @return ListAggregateConfigRuleEvaluationResultsResponse
|
|
10764
10883
|
*/
|
|
10765
10884
|
listAggregateConfigRuleEvaluationResults(request: ListAggregateConfigRuleEvaluationResultsRequest): Promise<ListAggregateConfigRuleEvaluationResultsResponse>;
|
|
10885
|
+
/**
|
|
10886
|
+
* This topic provides an example on how to query the statistics of compliance evaluation results of an account group whose ID is ca-edd3626622af00b3\\*\\*\\*\\*.
|
|
10887
|
+
*
|
|
10888
|
+
* @param request ListAggregateConfigRuleEvaluationStatisticsRequest
|
|
10889
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10890
|
+
* @return ListAggregateConfigRuleEvaluationStatisticsResponse
|
|
10891
|
+
*/
|
|
10766
10892
|
listAggregateConfigRuleEvaluationStatisticsWithOptions(request: ListAggregateConfigRuleEvaluationStatisticsRequest, runtime: $Util.RuntimeOptions): Promise<ListAggregateConfigRuleEvaluationStatisticsResponse>;
|
|
10893
|
+
/**
|
|
10894
|
+
* This topic provides an example on how to query the statistics of compliance evaluation results of an account group whose ID is ca-edd3626622af00b3\\*\\*\\*\\*.
|
|
10895
|
+
*
|
|
10896
|
+
* @param request ListAggregateConfigRuleEvaluationStatisticsRequest
|
|
10897
|
+
* @return ListAggregateConfigRuleEvaluationStatisticsResponse
|
|
10898
|
+
*/
|
|
10767
10899
|
listAggregateConfigRuleEvaluationStatistics(request: ListAggregateConfigRuleEvaluationStatisticsRequest): Promise<ListAggregateConfigRuleEvaluationStatisticsResponse>;
|
|
10768
10900
|
/**
|
|
10769
10901
|
* This topic provides an example on how to query the rules in an account group whose ID is `ca-f632626622af0079****`. The returned result shows a total of one rule and two evaluated resources. The resources are both evaluated as `COMPLIANT`.
|
|
@@ -10795,7 +10927,20 @@ export default class Client extends OpenApi {
|
|
|
10795
10927
|
* @return ListAggregateDiscoveredResourcesResponse
|
|
10796
10928
|
*/
|
|
10797
10929
|
listAggregateDiscoveredResources(request: ListAggregateDiscoveredResourcesRequest): Promise<ListAggregateDiscoveredResourcesResponse>;
|
|
10930
|
+
/**
|
|
10931
|
+
* This topic provides an example on how to query the remediation records of the `cr-d04a626622af00af****` rule in the `ca-edd3626622af00b3****` account group.
|
|
10932
|
+
*
|
|
10933
|
+
* @param request ListAggregateRemediationExecutionsRequest
|
|
10934
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10935
|
+
* @return ListAggregateRemediationExecutionsResponse
|
|
10936
|
+
*/
|
|
10798
10937
|
listAggregateRemediationExecutionsWithOptions(request: ListAggregateRemediationExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListAggregateRemediationExecutionsResponse>;
|
|
10938
|
+
/**
|
|
10939
|
+
* This topic provides an example on how to query the remediation records of the `cr-d04a626622af00af****` rule in the `ca-edd3626622af00b3****` account group.
|
|
10940
|
+
*
|
|
10941
|
+
* @param request ListAggregateRemediationExecutionsRequest
|
|
10942
|
+
* @return ListAggregateRemediationExecutionsResponse
|
|
10943
|
+
*/
|
|
10799
10944
|
listAggregateRemediationExecutions(request: ListAggregateRemediationExecutionsRequest): Promise<ListAggregateRemediationExecutionsResponse>;
|
|
10800
10945
|
/**
|
|
10801
10946
|
* This topic provides an example on how to query the remediation templates of the rule whose ID is `cr-6b7c626622af00b4****` in the account group whose ID is `ca-6b4a626622af0012****`.
|
|
@@ -10938,7 +11083,19 @@ export default class Client extends OpenApi {
|
|
|
10938
11083
|
* @return ListDiscoveredResourcesResponse
|
|
10939
11084
|
*/
|
|
10940
11085
|
listDiscoveredResources(request: ListDiscoveredResourcesRequest): Promise<ListDiscoveredResourcesResponse>;
|
|
11086
|
+
/**
|
|
11087
|
+
* This topic provides an example on how to query the cloud services that can be integrated by the current Alibaba Cloud account.
|
|
11088
|
+
*
|
|
11089
|
+
* @param request ListIntegratedServiceRequest
|
|
11090
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
11091
|
+
* @return ListIntegratedServiceResponse
|
|
11092
|
+
*/
|
|
10941
11093
|
listIntegratedServiceWithOptions(runtime: $Util.RuntimeOptions): Promise<ListIntegratedServiceResponse>;
|
|
11094
|
+
/**
|
|
11095
|
+
* This topic provides an example on how to query the cloud services that can be integrated by the current Alibaba Cloud account.
|
|
11096
|
+
*
|
|
11097
|
+
* @return ListIntegratedServiceResponse
|
|
11098
|
+
*/
|
|
10942
11099
|
listIntegratedService(): Promise<ListIntegratedServiceResponse>;
|
|
10943
11100
|
/**
|
|
10944
11101
|
* This topic describes how to query the managed rules of Alibaba Cloud CDN by using the `CDN` keyword. The returned result shows that only one managed rule exists. You can view the rule details in the result.
|
|
@@ -10957,7 +11114,20 @@ export default class Client extends OpenApi {
|
|
|
10957
11114
|
listManagedRules(request: ListManagedRulesRequest): Promise<ListManagedRulesResponse>;
|
|
10958
11115
|
listPreManagedRulesWithOptions(tmpReq: ListPreManagedRulesRequest, runtime: $Util.RuntimeOptions): Promise<ListPreManagedRulesResponse>;
|
|
10959
11116
|
listPreManagedRules(request: ListPreManagedRulesRequest): Promise<ListPreManagedRulesResponse>;
|
|
11117
|
+
/**
|
|
11118
|
+
* This topic provides an example on how to query the remediation records of the rule cr-5392626622af0000\\*\\*\\*\\*.
|
|
11119
|
+
*
|
|
11120
|
+
* @param request ListRemediationExecutionsRequest
|
|
11121
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
11122
|
+
* @return ListRemediationExecutionsResponse
|
|
11123
|
+
*/
|
|
10960
11124
|
listRemediationExecutionsWithOptions(request: ListRemediationExecutionsRequest, runtime: $Util.RuntimeOptions): Promise<ListRemediationExecutionsResponse>;
|
|
11125
|
+
/**
|
|
11126
|
+
* This topic provides an example on how to query the remediation records of the rule cr-5392626622af0000\\*\\*\\*\\*.
|
|
11127
|
+
*
|
|
11128
|
+
* @param request ListRemediationExecutionsRequest
|
|
11129
|
+
* @return ListRemediationExecutionsResponse
|
|
11130
|
+
*/
|
|
10961
11131
|
listRemediationExecutions(request: ListRemediationExecutionsRequest): Promise<ListRemediationExecutionsResponse>;
|
|
10962
11132
|
/**
|
|
10963
11133
|
* In this topic, the `oss-bucket-public-write-prohibited` managed rule is used as an example. The return result shows the details of the remediation template of the `OOS` type for the managed rule. OOS represents Operation Orchestration Service.
|
|
@@ -11019,9 +11189,35 @@ export default class Client extends OpenApi {
|
|
|
11019
11189
|
* @return ListResourceRelationsResponse
|
|
11020
11190
|
*/
|
|
11021
11191
|
listResourceRelations(request: ListResourceRelationsRequest): Promise<ListResourceRelationsResponse>;
|
|
11192
|
+
/**
|
|
11193
|
+
* This topic provides an example on how to query all resources with the business tag key and the online tag value in the current Alibaba Cloud account.
|
|
11194
|
+
*
|
|
11195
|
+
* @param request ListResourcesByAdvancedSearchRequest
|
|
11196
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
11197
|
+
* @return ListResourcesByAdvancedSearchResponse
|
|
11198
|
+
*/
|
|
11022
11199
|
listResourcesByAdvancedSearchWithOptions(request: ListResourcesByAdvancedSearchRequest, runtime: $Util.RuntimeOptions): Promise<ListResourcesByAdvancedSearchResponse>;
|
|
11200
|
+
/**
|
|
11201
|
+
* This topic provides an example on how to query all resources with the business tag key and the online tag value in the current Alibaba Cloud account.
|
|
11202
|
+
*
|
|
11203
|
+
* @param request ListResourcesByAdvancedSearchRequest
|
|
11204
|
+
* @return ListResourcesByAdvancedSearchResponse
|
|
11205
|
+
*/
|
|
11023
11206
|
listResourcesByAdvancedSearch(request: ListResourcesByAdvancedSearchRequest): Promise<ListResourcesByAdvancedSearchResponse>;
|
|
11207
|
+
/**
|
|
11208
|
+
* This topic provides an example on how to query the cloud services and resource types that are supported by Cloud Config.
|
|
11209
|
+
*
|
|
11210
|
+
* @param request ListSupportedProductsRequest
|
|
11211
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
11212
|
+
* @return ListSupportedProductsResponse
|
|
11213
|
+
*/
|
|
11024
11214
|
listSupportedProductsWithOptions(request: ListSupportedProductsRequest, runtime: $Util.RuntimeOptions): Promise<ListSupportedProductsResponse>;
|
|
11215
|
+
/**
|
|
11216
|
+
* This topic provides an example on how to query the cloud services and resource types that are supported by Cloud Config.
|
|
11217
|
+
*
|
|
11218
|
+
* @param request ListSupportedProductsRequest
|
|
11219
|
+
* @return ListSupportedProductsResponse
|
|
11220
|
+
*/
|
|
11025
11221
|
listSupportedProducts(request: ListSupportedProductsRequest): Promise<ListSupportedProductsResponse>;
|
|
11026
11222
|
listTagResourcesWithOptions(tmpReq: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
11027
11223
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
@@ -11101,9 +11297,34 @@ export default class Client extends OpenApi {
|
|
|
11101
11297
|
* @return StartAggregateRemediationResponse
|
|
11102
11298
|
*/
|
|
11103
11299
|
startAggregateRemediation(request: StartAggregateRemediationRequest): Promise<StartAggregateRemediationResponse>;
|
|
11300
|
+
/**
|
|
11301
|
+
* In this example, the cr-9920626622af0035\\*\\*\\*\\* rule is used to re-evaluate the compliance of resources.
|
|
11302
|
+
*
|
|
11303
|
+
* @param request StartConfigRuleEvaluationRequest
|
|
11304
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
11305
|
+
* @return StartConfigRuleEvaluationResponse
|
|
11306
|
+
*/
|
|
11104
11307
|
startConfigRuleEvaluationWithOptions(request: StartConfigRuleEvaluationRequest, runtime: $Util.RuntimeOptions): Promise<StartConfigRuleEvaluationResponse>;
|
|
11308
|
+
/**
|
|
11309
|
+
* In this example, the cr-9920626622af0035\\*\\*\\*\\* rule is used to re-evaluate the compliance of resources.
|
|
11310
|
+
*
|
|
11311
|
+
* @param request StartConfigRuleEvaluationRequest
|
|
11312
|
+
* @return StartConfigRuleEvaluationResponse
|
|
11313
|
+
*/
|
|
11105
11314
|
startConfigRuleEvaluation(request: StartConfigRuleEvaluationRequest): Promise<StartConfigRuleEvaluationResponse>;
|
|
11315
|
+
/**
|
|
11316
|
+
* This topic provides an example on how to enable Cloud Config to monitor the resources of your Alibaba Cloud account.
|
|
11317
|
+
*
|
|
11318
|
+
* @param request StartConfigurationRecorderRequest
|
|
11319
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
11320
|
+
* @return StartConfigurationRecorderResponse
|
|
11321
|
+
*/
|
|
11106
11322
|
startConfigurationRecorderWithOptions(runtime: $Util.RuntimeOptions): Promise<StartConfigurationRecorderResponse>;
|
|
11323
|
+
/**
|
|
11324
|
+
* This topic provides an example on how to enable Cloud Config to monitor the resources of your Alibaba Cloud account.
|
|
11325
|
+
*
|
|
11326
|
+
* @return StartConfigurationRecorderResponse
|
|
11327
|
+
*/
|
|
11107
11328
|
startConfigurationRecorder(): Promise<StartConfigurationRecorderResponse>;
|
|
11108
11329
|
/**
|
|
11109
11330
|
* This topic provides an example on how to perform a remediation operation by using the rule whose ID is `cr-8a973ac2e2be00a2****`. The returned result shows that the manual execution is successful.
|
|
@@ -11246,7 +11467,20 @@ export default class Client extends OpenApi {
|
|
|
11246
11467
|
* @return UpdateConfigRuleResponse
|
|
11247
11468
|
*/
|
|
11248
11469
|
updateConfigRule(request: UpdateConfigRuleRequest): Promise<UpdateConfigRuleResponse>;
|
|
11470
|
+
/**
|
|
11471
|
+
* This topic provides an example on how to change the resource monitoring scope of the current account to ACS::ECS::Instance.
|
|
11472
|
+
*
|
|
11473
|
+
* @param request UpdateConfigurationRecorderRequest
|
|
11474
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
11475
|
+
* @return UpdateConfigurationRecorderResponse
|
|
11476
|
+
*/
|
|
11249
11477
|
updateConfigurationRecorderWithOptions(request: UpdateConfigurationRecorderRequest, runtime: $Util.RuntimeOptions): Promise<UpdateConfigurationRecorderResponse>;
|
|
11478
|
+
/**
|
|
11479
|
+
* This topic provides an example on how to change the resource monitoring scope of the current account to ACS::ECS::Instance.
|
|
11480
|
+
*
|
|
11481
|
+
* @param request UpdateConfigurationRecorderRequest
|
|
11482
|
+
* @return UpdateConfigurationRecorderResponse
|
|
11483
|
+
*/
|
|
11250
11484
|
updateConfigurationRecorder(request: UpdateConfigurationRecorderRequest): Promise<UpdateConfigurationRecorderResponse>;
|
|
11251
11485
|
/**
|
|
11252
11486
|
* @deprecated : UpdateDeliveryChannel is deprecated, please use Config::2020-09-07::UpdateConfigDeliveryChannel,Config::2020-09-07::UpdateAggregateConfigDeliveryChannel instead.
|