@aws-sdk/client-pi 3.533.0 → 3.540.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-cjs/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/PI.d.ts +1 -1
- package/dist-types/PIClient.d.ts +1 -1
- package/dist-types/commands/CreatePerformanceAnalysisReportCommand.d.ts +2 -1
- package/dist-types/commands/DeletePerformanceAnalysisReportCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDimensionKeysCommand.d.ts +2 -1
- package/dist-types/commands/GetDimensionKeyDetailsCommand.d.ts +2 -1
- package/dist-types/commands/GetPerformanceAnalysisReportCommand.d.ts +2 -1
- package/dist-types/commands/GetResourceMetadataCommand.d.ts +2 -1
- package/dist-types/commands/GetResourceMetricsCommand.d.ts +2 -1
- package/dist-types/commands/ListAvailableResourceDimensionsCommand.d.ts +2 -1
- package/dist-types/commands/ListAvailableResourceMetricsCommand.d.ts +2 -1
- package/dist-types/commands/ListPerformanceAnalysisReportsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +172 -172
- package/dist-types/ts3.4/commands/CreatePerformanceAnalysisReportCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeletePerformanceAnalysisReportCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDimensionKeysCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDimensionKeyDetailsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetPerformanceAnalysisReportCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourceMetadataCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetResourceMetricsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAvailableResourceDimensionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListAvailableResourceMetricsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListPerformanceAnalysisReportsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1135,9 +1135,6 @@ var paginateListAvailableResourceMetrics = (0, import_core.createPaginator)(PICl
|
|
|
1135
1135
|
// src/pagination/ListPerformanceAnalysisReportsPaginator.ts
|
|
1136
1136
|
|
|
1137
1137
|
var paginateListPerformanceAnalysisReports = (0, import_core.createPaginator)(PIClient, ListPerformanceAnalysisReportsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1138
|
-
|
|
1139
|
-
// src/index.ts
|
|
1140
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1141
1138
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1142
1139
|
|
|
1143
1140
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
package/dist-types/PI.d.ts
CHANGED
|
@@ -94,7 +94,6 @@ export interface PI {
|
|
|
94
94
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
|
-
* @public
|
|
98
97
|
* <fullname>Amazon RDS Performance Insights</fullname>
|
|
99
98
|
* <p>Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide
|
|
100
99
|
* provides detailed information about Performance Insights data types, parameters and errors.</p>
|
|
@@ -120,6 +119,7 @@ export interface PI {
|
|
|
120
119
|
* </i>.</p>
|
|
121
120
|
* </li>
|
|
122
121
|
* </ul>
|
|
122
|
+
* @public
|
|
123
123
|
*/
|
|
124
124
|
export declare class PI extends PIClient implements PI {
|
|
125
125
|
}
|
package/dist-types/PIClient.d.ts
CHANGED
|
@@ -164,7 +164,6 @@ export type PIClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHan
|
|
|
164
164
|
export interface PIClientResolvedConfig extends PIClientResolvedConfigType {
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
|
-
* @public
|
|
168
167
|
* <fullname>Amazon RDS Performance Insights</fullname>
|
|
169
168
|
* <p>Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on data captured from a running DB instance. The guide
|
|
170
169
|
* provides detailed information about Performance Insights data types, parameters and errors.</p>
|
|
@@ -190,6 +189,7 @@ export interface PIClientResolvedConfig extends PIClientResolvedConfigType {
|
|
|
190
189
|
* </i>.</p>
|
|
191
190
|
* </li>
|
|
192
191
|
* </ul>
|
|
192
|
+
* @public
|
|
193
193
|
*/
|
|
194
194
|
export declare class PIClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, PIClientResolvedConfig> {
|
|
195
195
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreatePerformanceAnalysisReportCommandOutput extends CreatePerf
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreatePerformanceAnalysisReportCommand_base: {
|
|
24
24
|
new (input: CreatePerformanceAnalysisReportCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePerformanceAnalysisReportCommandInput, CreatePerformanceAnalysisReportCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreatePerformanceAnalysisReportCommandInput): import("@smithy/smithy-client").CommandImpl<CreatePerformanceAnalysisReportCommandInput, CreatePerformanceAnalysisReportCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new performance analysis report for a specific time period for the
|
|
30
30
|
* DB instance.</p>
|
|
31
31
|
* @example
|
|
@@ -72,6 +72,7 @@ declare const CreatePerformanceAnalysisReportCommand_base: {
|
|
|
72
72
|
* @throws {@link PIServiceException}
|
|
73
73
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
74
74
|
*
|
|
75
|
+
* @public
|
|
75
76
|
*/
|
|
76
77
|
export declare class CreatePerformanceAnalysisReportCommand extends CreatePerformanceAnalysisReportCommand_base {
|
|
77
78
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeletePerformanceAnalysisReportCommandOutput extends DeletePerf
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeletePerformanceAnalysisReportCommand_base: {
|
|
24
24
|
new (input: DeletePerformanceAnalysisReportCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePerformanceAnalysisReportCommandInput, DeletePerformanceAnalysisReportCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeletePerformanceAnalysisReportCommandInput): import("@smithy/smithy-client").CommandImpl<DeletePerformanceAnalysisReportCommandInput, DeletePerformanceAnalysisReportCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a performance analysis report.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -62,6 +62,7 @@ declare const DeletePerformanceAnalysisReportCommand_base: {
|
|
|
62
62
|
* @throws {@link PIServiceException}
|
|
63
63
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
64
64
|
*
|
|
65
|
+
* @public
|
|
65
66
|
*/
|
|
66
67
|
export declare class DeletePerformanceAnalysisReportCommand extends DeletePerformanceAnalysisReportCommand_base {
|
|
67
68
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeDimensionKeysCommandOutput extends DescribeDimensionKey
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeDimensionKeysCommand_base: {
|
|
24
24
|
new (input: DescribeDimensionKeysCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDimensionKeysCommandInput, DescribeDimensionKeysCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeDimensionKeysCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDimensionKeysCommandInput, DescribeDimensionKeysCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>For a specific time period, retrieve the top <code>N</code> dimension keys for a metric.
|
|
30
30
|
* </p>
|
|
31
31
|
* <note>
|
|
@@ -117,6 +117,7 @@ declare const DescribeDimensionKeysCommand_base: {
|
|
|
117
117
|
* @throws {@link PIServiceException}
|
|
118
118
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
119
119
|
*
|
|
120
|
+
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class DescribeDimensionKeysCommand extends DescribeDimensionKeysCommand_base {
|
|
122
123
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetDimensionKeyDetailsCommandOutput extends GetDimensionKeyDeta
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDimensionKeyDetailsCommand_base: {
|
|
24
24
|
new (input: GetDimensionKeyDetailsCommandInput): import("@smithy/smithy-client").CommandImpl<GetDimensionKeyDetailsCommandInput, GetDimensionKeyDetailsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetDimensionKeyDetailsCommandInput): import("@smithy/smithy-client").CommandImpl<GetDimensionKeyDetailsCommandInput, GetDimensionKeyDetailsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Get the attributes of the specified dimension group for a DB instance or data source. For example, if you specify a SQL ID,
|
|
30
30
|
* <code>GetDimensionKeyDetails</code> retrieves the full text of the dimension <code>db.sql.statement</code> associated with this ID.
|
|
31
31
|
* This operation is useful because <code>GetResourceMetrics</code> and <code>DescribeDimensionKeys</code> don't support retrieval of large
|
|
@@ -77,6 +77,7 @@ declare const GetDimensionKeyDetailsCommand_base: {
|
|
|
77
77
|
* @throws {@link PIServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class GetDimensionKeyDetailsCommand extends GetDimensionKeyDetailsCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetPerformanceAnalysisReportCommandOutput extends GetPerformanc
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetPerformanceAnalysisReportCommand_base: {
|
|
24
24
|
new (input: GetPerformanceAnalysisReportCommandInput): import("@smithy/smithy-client").CommandImpl<GetPerformanceAnalysisReportCommandInput, GetPerformanceAnalysisReportCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetPerformanceAnalysisReportCommandInput): import("@smithy/smithy-client").CommandImpl<GetPerformanceAnalysisReportCommandInput, GetPerformanceAnalysisReportCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves the report including the report ID, status, time details, and the insights
|
|
30
30
|
* with recommendations. The report status can be <code>RUNNING</code>,
|
|
31
31
|
* <code>SUCCEEDED</code>, or <code>FAILED</code>. The insights include the
|
|
@@ -160,6 +160,7 @@ declare const GetPerformanceAnalysisReportCommand_base: {
|
|
|
160
160
|
* @throws {@link PIServiceException}
|
|
161
161
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
162
162
|
*
|
|
163
|
+
* @public
|
|
163
164
|
*/
|
|
164
165
|
export declare class GetPerformanceAnalysisReportCommand extends GetPerformanceAnalysisReportCommand_base {
|
|
165
166
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetResourceMetadataCommandOutput extends GetResourceMetadataRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetResourceMetadataCommand_base: {
|
|
24
24
|
new (input: GetResourceMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetResourceMetadataCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieve the metadata for different features. For example, the metadata might indicate
|
|
30
30
|
* that a feature is turned on or off on a specific DB instance.
|
|
31
31
|
* </p>
|
|
@@ -70,6 +70,7 @@ declare const GetResourceMetadataCommand_base: {
|
|
|
70
70
|
* @throws {@link PIServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class GetResourceMetadataCommand extends GetResourceMetadataCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetResourceMetricsCommandOutput extends GetResourceMetricsRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetResourceMetricsCommand_base: {
|
|
24
24
|
new (input: GetResourceMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetResourceMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide
|
|
30
30
|
* specific dimension groups and dimensions, and provide aggregation and filtering criteria for
|
|
31
31
|
* each group.</p>
|
|
@@ -109,6 +109,7 @@ declare const GetResourceMetricsCommand_base: {
|
|
|
109
109
|
* @throws {@link PIServiceException}
|
|
110
110
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
111
111
|
*
|
|
112
|
+
* @public
|
|
112
113
|
*/
|
|
113
114
|
export declare class GetResourceMetricsCommand extends GetResourceMetricsCommand_base {
|
|
114
115
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAvailableResourceDimensionsCommandOutput extends ListAvaila
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAvailableResourceDimensionsCommand_base: {
|
|
24
24
|
new (input: ListAvailableResourceDimensionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAvailableResourceDimensionsCommandInput, ListAvailableResourceDimensionsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListAvailableResourceDimensionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAvailableResourceDimensionsCommandInput, ListAvailableResourceDimensionsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieve the dimensions that can be queried for each specified metric type on a specified DB instance.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const ListAvailableResourceDimensionsCommand_base: {
|
|
|
83
83
|
* @throws {@link PIServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class ListAvailableResourceDimensionsCommand extends ListAvailableResourceDimensionsCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListAvailableResourceMetricsCommandOutput extends ListAvailable
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListAvailableResourceMetricsCommand_base: {
|
|
24
24
|
new (input: ListAvailableResourceMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListAvailableResourceMetricsCommandInput): import("@smithy/smithy-client").CommandImpl<ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieve metrics of the specified types that can be queried for a specified DB instance.
|
|
30
30
|
* </p>
|
|
31
31
|
* @example
|
|
@@ -76,6 +76,7 @@ declare const ListAvailableResourceMetricsCommand_base: {
|
|
|
76
76
|
* @throws {@link PIServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class ListAvailableResourceMetricsCommand extends ListAvailableResourceMetricsCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListPerformanceAnalysisReportsCommandOutput extends ListPerform
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListPerformanceAnalysisReportsCommand_base: {
|
|
24
24
|
new (input: ListPerformanceAnalysisReportsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPerformanceAnalysisReportsCommandInput, ListPerformanceAnalysisReportsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListPerformanceAnalysisReportsCommandInput): import("@smithy/smithy-client").CommandImpl<ListPerformanceAnalysisReportsCommandInput, ListPerformanceAnalysisReportsCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all the analysis reports created for the DB instance. The reports are sorted based on the start time of each report.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -81,6 +81,7 @@ declare const ListPerformanceAnalysisReportsCommand_base: {
|
|
|
81
81
|
* @throws {@link PIServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
83
83
|
*
|
|
84
|
+
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListPerformanceAnalysisReportsCommand extends ListPerformanceAnalysisReportsCommand_base {
|
|
86
87
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Retrieves all the metadata tags associated with Amazon RDS Performance Insights resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -68,6 +68,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
68
68
|
* @throws {@link PIServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds metadata tags to the Amazon RDS Performance Insights resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const TagResourceCommand_base: {
|
|
|
67
67
|
* @throws {@link PIServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the metadata tags from the Amazon RDS Performance Insights resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -64,6 +64,7 @@ declare const UntagResourceCommand_base: {
|
|
|
64
64
|
* @throws {@link PIServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from PI service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
69
70
|
}
|
package/dist-types/index.d.ts
CHANGED