@aws-sdk/client-cost-explorer 3.296.0 → 3.297.0
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-types/CostExplorer.d.ts +38 -0
- package/dist-types/CostExplorerClient.d.ts +24 -4
- package/dist-types/commands/CreateAnomalyMonitorCommand.d.ts +16 -0
- package/dist-types/commands/CreateAnomalySubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/CreateCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAnomalyMonitorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAnomalySubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/GetAnomaliesCommand.d.ts +16 -0
- package/dist-types/commands/GetAnomalyMonitorsCommand.d.ts +16 -0
- package/dist-types/commands/GetAnomalySubscriptionsCommand.d.ts +16 -0
- package/dist-types/commands/GetCostAndUsageCommand.d.ts +16 -0
- package/dist-types/commands/GetCostAndUsageWithResourcesCommand.d.ts +16 -0
- package/dist-types/commands/GetCostCategoriesCommand.d.ts +16 -0
- package/dist-types/commands/GetCostForecastCommand.d.ts +16 -0
- package/dist-types/commands/GetDimensionValuesCommand.d.ts +16 -0
- package/dist-types/commands/GetReservationCoverageCommand.d.ts +16 -0
- package/dist-types/commands/GetReservationPurchaseRecommendationCommand.d.ts +16 -0
- package/dist-types/commands/GetReservationUtilizationCommand.d.ts +16 -0
- package/dist-types/commands/GetRightsizingRecommendationCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansCoverageCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansPurchaseRecommendationCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansUtilizationCommand.d.ts +16 -0
- package/dist-types/commands/GetSavingsPlansUtilizationDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetTagsCommand.d.ts +16 -0
- package/dist-types/commands/GetUsageForecastCommand.d.ts +16 -0
- package/dist-types/commands/ListCostAllocationTagsCommand.d.ts +16 -0
- package/dist-types/commands/ListCostCategoryDefinitionsCommand.d.ts +16 -0
- package/dist-types/commands/ListSavingsPlansPurchaseRecommendationGenerationCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ProvideAnomalyFeedbackCommand.d.ts +16 -0
- package/dist-types/commands/StartSavingsPlansPurchaseRecommendationGenerationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAnomalyMonitorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAnomalySubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCostAllocationTagsStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCostCategoryDefinitionCommand.d.ts +16 -0
- package/dist-types/models/CostExplorerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +509 -90
- package/dist-types/pagination/GetSavingsPlansCoveragePaginator.d.ts +3 -0
- package/dist-types/pagination/GetSavingsPlansUtilizationDetailsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCostAllocationTagsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCostCategoryDefinitionsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetReservationUtilizationRequest, GetReservationUtilizationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetReservationUtilizationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetReservationUtilizationCommandInput extends GetReservationUtilizationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetReservationUtilizationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetReservationUtilizationCommandOutput extends GetReservationUtilizationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the reservation utilization for your account. Management account in an
|
|
18
23
|
* organization have access to member accounts. You can filter data by dimensions in a time
|
|
19
24
|
* period. You can use <code>GetDimensionValues</code> to determine the possible dimension
|
|
@@ -28,6 +33,8 @@ export interface GetReservationUtilizationCommandOutput extends GetReservationUt
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetReservationUtilizationCommandInput - {@link GetReservationUtilizationCommandInput}
|
|
37
|
+
* @returns {@link GetReservationUtilizationCommandOutput}
|
|
31
38
|
* @see {@link GetReservationUtilizationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetReservationUtilizationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetReservationUtilizationCommandOutput extends GetReservationUt
|
|
|
46
53
|
export declare class GetReservationUtilizationCommand extends $Command<GetReservationUtilizationCommandInput, GetReservationUtilizationCommandOutput, CostExplorerClientResolvedConfig> {
|
|
47
54
|
readonly input: GetReservationUtilizationCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetReservationUtilizationCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetReservationUtilizationCommandInput, GetReservationUtilizationCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetRightsizingRecommendationRequest, GetRightsizingRecommendationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetRightsizingRecommendationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetRightsizingRecommendationCommandInput extends GetRightsizingRecommendationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetRightsizingRecommendationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetRightsizingRecommendationCommandOutput extends GetRightsizingRecommendationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates recommendations that help you save cost by identifying idle and underutilized
|
|
18
23
|
* Amazon EC2 instances.</p>
|
|
19
24
|
* <p>Recommendations are generated to either downsize or terminate instances, along with
|
|
@@ -29,6 +34,8 @@ export interface GetRightsizingRecommendationCommandOutput extends GetRightsizin
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param GetRightsizingRecommendationCommandInput - {@link GetRightsizingRecommendationCommandInput}
|
|
38
|
+
* @returns {@link GetRightsizingRecommendationCommandOutput}
|
|
32
39
|
* @see {@link GetRightsizingRecommendationCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link GetRightsizingRecommendationCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface GetRightsizingRecommendationCommandOutput extends GetRightsizin
|
|
|
44
51
|
export declare class GetRightsizingRecommendationCommand extends $Command<GetRightsizingRecommendationCommandInput, GetRightsizingRecommendationCommandOutput, CostExplorerClientResolvedConfig> {
|
|
45
52
|
readonly input: GetRightsizingRecommendationCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: GetRightsizingRecommendationCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRightsizingRecommendationCommandInput, GetRightsizingRecommendationCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetSavingsPlansCoverageRequest, GetSavingsPlansCoverageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSavingsPlansCoverageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSavingsPlansCoverageCommandInput extends GetSavingsPlansCoverageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSavingsPlansCoverageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSavingsPlansCoverageCommandOutput extends GetSavingsPlansCoverageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the Savings Plans covered for your account. This enables you to see how much of
|
|
18
23
|
* your cost is covered by a Savings Plan. An organization’s management account can see the
|
|
19
24
|
* coverage of the associated member accounts. This supports dimensions, Cost Categories, and
|
|
@@ -53,6 +58,8 @@ export interface GetSavingsPlansCoverageCommandOutput extends GetSavingsPlansCov
|
|
|
53
58
|
* const response = await client.send(command);
|
|
54
59
|
* ```
|
|
55
60
|
*
|
|
61
|
+
* @param GetSavingsPlansCoverageCommandInput - {@link GetSavingsPlansCoverageCommandInput}
|
|
62
|
+
* @returns {@link GetSavingsPlansCoverageCommandOutput}
|
|
56
63
|
* @see {@link GetSavingsPlansCoverageCommandInput} for command's `input` shape.
|
|
57
64
|
* @see {@link GetSavingsPlansCoverageCommandOutput} for command's `response` shape.
|
|
58
65
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface GetSavingsPlansCoverageCommandOutput extends GetSavingsPlansCov
|
|
|
71
78
|
export declare class GetSavingsPlansCoverageCommand extends $Command<GetSavingsPlansCoverageCommandInput, GetSavingsPlansCoverageCommandOutput, CostExplorerClientResolvedConfig> {
|
|
72
79
|
readonly input: GetSavingsPlansCoverageCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: GetSavingsPlansCoverageCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSavingsPlansCoverageCommandInput, GetSavingsPlansCoverageCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetSavingsPlansPurchaseRecommendationRequest, GetSavingsPlansPurchaseRecommendationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSavingsPlansPurchaseRecommendationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSavingsPlansPurchaseRecommendationCommandInput extends GetSavingsPlansPurchaseRecommendationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSavingsPlansPurchaseRecommendationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSavingsPlansPurchaseRecommendationCommandOutput extends GetSavingsPlansPurchaseRecommendationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the Savings Plans recommendations for your account. First use
|
|
18
23
|
* <code>StartSavingsPlansPurchaseRecommendationGeneration</code> to generate a new set of
|
|
19
24
|
* recommendations, and then use <code>GetSavingsPlansPurchaseRecommendation</code> to retrieve
|
|
@@ -28,6 +33,8 @@ export interface GetSavingsPlansPurchaseRecommendationCommandOutput extends GetS
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param GetSavingsPlansPurchaseRecommendationCommandInput - {@link GetSavingsPlansPurchaseRecommendationCommandInput}
|
|
37
|
+
* @returns {@link GetSavingsPlansPurchaseRecommendationCommandOutput}
|
|
31
38
|
* @see {@link GetSavingsPlansPurchaseRecommendationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link GetSavingsPlansPurchaseRecommendationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface GetSavingsPlansPurchaseRecommendationCommandOutput extends GetS
|
|
|
43
50
|
export declare class GetSavingsPlansPurchaseRecommendationCommand extends $Command<GetSavingsPlansPurchaseRecommendationCommandInput, GetSavingsPlansPurchaseRecommendationCommandOutput, CostExplorerClientResolvedConfig> {
|
|
44
51
|
readonly input: GetSavingsPlansPurchaseRecommendationCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: GetSavingsPlansPurchaseRecommendationCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSavingsPlansPurchaseRecommendationCommandInput, GetSavingsPlansPurchaseRecommendationCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetSavingsPlansUtilizationRequest, GetSavingsPlansUtilizationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSavingsPlansUtilizationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSavingsPlansUtilizationCommandInput extends GetSavingsPlansUtilizationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSavingsPlansUtilizationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSavingsPlansUtilizationCommandOutput extends GetSavingsPlansUtilizationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the Savings Plans utilization for your account across date ranges with daily or
|
|
18
23
|
* monthly granularity. Management account in an organization have access to member accounts. You
|
|
19
24
|
* can use <code>GetDimensionValues</code> in <code>SAVINGS_PLANS</code> to determine the
|
|
@@ -32,6 +37,8 @@ export interface GetSavingsPlansUtilizationCommandOutput extends GetSavingsPlans
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param GetSavingsPlansUtilizationCommandInput - {@link GetSavingsPlansUtilizationCommandInput}
|
|
41
|
+
* @returns {@link GetSavingsPlansUtilizationCommandOutput}
|
|
35
42
|
* @see {@link GetSavingsPlansUtilizationCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link GetSavingsPlansUtilizationCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface GetSavingsPlansUtilizationCommandOutput extends GetSavingsPlans
|
|
|
47
54
|
export declare class GetSavingsPlansUtilizationCommand extends $Command<GetSavingsPlansUtilizationCommandInput, GetSavingsPlansUtilizationCommandOutput, CostExplorerClientResolvedConfig> {
|
|
48
55
|
readonly input: GetSavingsPlansUtilizationCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: GetSavingsPlansUtilizationCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSavingsPlansUtilizationCommandInput, GetSavingsPlansUtilizationCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetSavingsPlansUtilizationDetailsRequest, GetSavingsPlansUtilizationDetailsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSavingsPlansUtilizationDetailsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSavingsPlansUtilizationDetailsCommandInput extends GetSavingsPlansUtilizationDetailsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSavingsPlansUtilizationDetailsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSavingsPlansUtilizationDetailsCommandOutput extends GetSavingsPlansUtilizationDetailsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves attribute data along with aggregate utilization and savings data for a given
|
|
18
23
|
* time period. This doesn't support granular or grouped data (daily/monthly) in response. You
|
|
19
24
|
* can't retrieve data by dates in a single response similar to
|
|
@@ -36,6 +41,8 @@ export interface GetSavingsPlansUtilizationDetailsCommandOutput extends GetSavin
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param GetSavingsPlansUtilizationDetailsCommandInput - {@link GetSavingsPlansUtilizationDetailsCommandInput}
|
|
45
|
+
* @returns {@link GetSavingsPlansUtilizationDetailsCommandOutput}
|
|
39
46
|
* @see {@link GetSavingsPlansUtilizationDetailsCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link GetSavingsPlansUtilizationDetailsCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetSavingsPlansUtilizationDetailsCommandOutput extends GetSavin
|
|
|
54
61
|
export declare class GetSavingsPlansUtilizationDetailsCommand extends $Command<GetSavingsPlansUtilizationDetailsCommandInput, GetSavingsPlansUtilizationDetailsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
55
62
|
readonly input: GetSavingsPlansUtilizationDetailsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetSavingsPlansUtilizationDetailsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSavingsPlansUtilizationDetailsCommandInput, GetSavingsPlansUtilizationDetailsCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetTagsRequest, GetTagsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTagsCommandInput extends GetTagsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Queries for available tag keys and tag values for a specified period. You can search
|
|
18
23
|
* the tag values for an arbitrary string. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetTagsCommandInput - {@link GetTagsCommandInput}
|
|
35
|
+
* @returns {@link GetTagsCommandOutput}
|
|
29
36
|
* @see {@link GetTagsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetTagsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface GetTagsCommandOutput extends GetTagsResponse, __MetadataBearer
|
|
|
51
58
|
export declare class GetTagsCommand extends $Command<GetTagsCommandInput, GetTagsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
52
59
|
readonly input: GetTagsCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: GetTagsCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTagsCommandInput, GetTagsCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { GetUsageForecastRequest, GetUsageForecastResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetUsageForecastCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetUsageForecastCommandInput extends GetUsageForecastRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetUsageForecastCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetUsageForecastCommandOutput extends GetUsageForecastResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a forecast for how much Amazon Web Services predicts that you will use
|
|
18
23
|
* over the forecast time period that you select, based on your past usage. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetUsageForecastCommandOutput extends GetUsageForecastResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetUsageForecastCommandInput - {@link GetUsageForecastCommandInput}
|
|
35
|
+
* @returns {@link GetUsageForecastCommandOutput}
|
|
29
36
|
* @see {@link GetUsageForecastCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetUsageForecastCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetUsageForecastCommandOutput extends GetUsageForecastResponse,
|
|
|
46
53
|
export declare class GetUsageForecastCommand extends $Command<GetUsageForecastCommandInput, GetUsageForecastCommandOutput, CostExplorerClientResolvedConfig> {
|
|
47
54
|
readonly input: GetUsageForecastCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetUsageForecastCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUsageForecastCommandInput, GetUsageForecastCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { ListCostAllocationTagsRequest, ListCostAllocationTagsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCostAllocationTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCostAllocationTagsCommandInput extends ListCostAllocationTagsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCostAllocationTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCostAllocationTagsCommandOutput extends ListCostAllocationTagsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get a list of cost allocation tags. All inputs in the API are optional and serve as
|
|
18
23
|
* filters. By default, all cost allocation tags are returned. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListCostAllocationTagsCommandOutput extends ListCostAllocationT
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListCostAllocationTagsCommandInput - {@link ListCostAllocationTagsCommandInput}
|
|
35
|
+
* @returns {@link ListCostAllocationTagsCommandOutput}
|
|
29
36
|
* @see {@link ListCostAllocationTagsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListCostAllocationTagsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListCostAllocationTagsCommandOutput extends ListCostAllocationT
|
|
|
41
48
|
export declare class ListCostAllocationTagsCommand extends $Command<ListCostAllocationTagsCommandInput, ListCostAllocationTagsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: ListCostAllocationTagsCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListCostAllocationTagsCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCostAllocationTagsCommandInput, ListCostAllocationTagsCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { ListCostCategoryDefinitionsRequest, ListCostCategoryDefinitionsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCostCategoryDefinitionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCostCategoryDefinitionsCommandInput extends ListCostCategoryDefinitionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCostCategoryDefinitionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCostCategoryDefinitionsCommandOutput extends ListCostCategoryDefinitionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the name, Amazon Resource Name (ARN), <code>NumberOfRules</code> and effective
|
|
18
23
|
* dates of all Cost Categories defined in the account. You have the option to use
|
|
19
24
|
* <code>EffectiveOn</code> to return a list of Cost Categories that were active on a specific
|
|
@@ -31,6 +36,8 @@ export interface ListCostCategoryDefinitionsCommandOutput extends ListCostCatego
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param ListCostCategoryDefinitionsCommandInput - {@link ListCostCategoryDefinitionsCommandInput}
|
|
40
|
+
* @returns {@link ListCostCategoryDefinitionsCommandOutput}
|
|
34
41
|
* @see {@link ListCostCategoryDefinitionsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link ListCostCategoryDefinitionsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListCostCategoryDefinitionsCommandOutput extends ListCostCatego
|
|
|
43
50
|
export declare class ListCostCategoryDefinitionsCommand extends $Command<ListCostCategoryDefinitionsCommandInput, ListCostCategoryDefinitionsCommandOutput, CostExplorerClientResolvedConfig> {
|
|
44
51
|
readonly input: ListCostCategoryDefinitionsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListCostCategoryDefinitionsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCostCategoryDefinitionsCommandInput, ListCostCategoryDefinitionsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { ListSavingsPlansPurchaseRecommendationGenerationRequest, ListSavingsPlansPurchaseRecommendationGenerationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSavingsPlansPurchaseRecommendationGenerationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSavingsPlansPurchaseRecommendationGenerationCommandInput extends ListSavingsPlansPurchaseRecommendationGenerationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSavingsPlansPurchaseRecommendationGenerationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSavingsPlansPurchaseRecommendationGenerationCommandOutput extends ListSavingsPlansPurchaseRecommendationGenerationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of your historical recommendation generations within the past 30
|
|
18
23
|
* days.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListSavingsPlansPurchaseRecommendationGenerationCommandOutput e
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListSavingsPlansPurchaseRecommendationGenerationCommandInput - {@link ListSavingsPlansPurchaseRecommendationGenerationCommandInput}
|
|
35
|
+
* @returns {@link ListSavingsPlansPurchaseRecommendationGenerationCommandOutput}
|
|
29
36
|
* @see {@link ListSavingsPlansPurchaseRecommendationGenerationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListSavingsPlansPurchaseRecommendationGenerationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListSavingsPlansPurchaseRecommendationGenerationCommandOutput e
|
|
|
41
48
|
export declare class ListSavingsPlansPurchaseRecommendationGenerationCommand extends $Command<ListSavingsPlansPurchaseRecommendationGenerationCommandInput, ListSavingsPlansPurchaseRecommendationGenerationCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: ListSavingsPlansPurchaseRecommendationGenerationCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListSavingsPlansPurchaseRecommendationGenerationCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSavingsPlansPurchaseRecommendationGenerationCommandInput, ListSavingsPlansPurchaseRecommendationGenerationCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CostExplorerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CostExplorerClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of resource tags associated with the resource specified by the Amazon
|
|
18
23
|
* Resource Name (ARN). </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
35
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
29
36
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CostExplorerClientResolvedConfig | config} for CostExplorerClient's `config` shape.
|
|
@@ -41,11 +48,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
41
48
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CostExplorerClientResolvedConfig> {
|
|
42
49
|
readonly input: ListTagsForResourceCommandInput;
|
|
43
50
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
44
54
|
constructor(input: ListTagsForResourceCommandInput);
|
|
45
55
|
/**
|
|
46
56
|
* @internal
|
|
47
57
|
*/
|
|
48
58
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CostExplorerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
49
62
|
private serialize;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
50
66
|
private deserialize;
|
|
51
67
|
}
|