@aws-sdk/client-pi 3.388.0 → 3.392.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/README.md +63 -7
- package/dist-cjs/PI.js +14 -0
- package/dist-cjs/commands/CreatePerformanceAnalysisReportCommand.js +46 -0
- package/dist-cjs/commands/DeletePerformanceAnalysisReportCommand.js +46 -0
- package/dist-cjs/commands/GetPerformanceAnalysisReportCommand.js +47 -0
- package/dist-cjs/commands/ListPerformanceAnalysisReportsCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +49 -1
- package/dist-cjs/pagination/ListPerformanceAnalysisReportsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +417 -1
- package/dist-es/PI.js +14 -0
- package/dist-es/commands/CreatePerformanceAnalysisReportCommand.js +42 -0
- package/dist-es/commands/DeletePerformanceAnalysisReportCommand.js +42 -0
- package/dist-es/commands/GetPerformanceAnalysisReportCommand.js +43 -0
- package/dist-es/commands/ListPerformanceAnalysisReportsCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +44 -0
- package/dist-es/pagination/ListPerformanceAnalysisReportsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +402 -0
- package/dist-types/PI.d.ts +49 -0
- package/dist-types/PIClient.d.ts +9 -2
- package/dist-types/commands/CreatePerformanceAnalysisReportCommand.d.ts +92 -0
- package/dist-types/commands/DeletePerformanceAnalysisReportCommand.d.ts +82 -0
- package/dist-types/commands/GetPerformanceAnalysisReportCommand.d.ts +180 -0
- package/dist-types/commands/ListPerformanceAnalysisReportsCommand.d.ts +101 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +88 -0
- package/dist-types/commands/TagResourceCommand.d.ts +87 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +633 -51
- package/dist-types/pagination/ListPerformanceAnalysisReportsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +63 -0
- package/dist-types/ts3.4/PI.d.ts +119 -0
- package/dist-types/ts3.4/PIClient.d.ts +44 -2
- package/dist-types/ts3.4/commands/CreatePerformanceAnalysisReportCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeletePerformanceAnalysisReportCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetPerformanceAnalysisReportCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListPerformanceAnalysisReportsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +171 -29
- package/dist-types/ts3.4/pagination/ListPerformanceAnalysisReportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +84 -0
- package/package.json +28 -28
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPerformanceAnalysisReportsCommandInput, ListPerformanceAnalysisReportsCommandOutput } from "../commands/ListPerformanceAnalysisReportsCommand";
|
|
3
|
+
import { PIPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListPerformanceAnalysisReports(config: PIPaginationConfiguration, input: ListPerformanceAnalysisReportsCommandInput, ...additionalArguments: any): Paginator<ListPerformanceAnalysisReportsCommandOutput>;
|
|
@@ -1,11 +1,26 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreatePerformanceAnalysisReportCommandInput, CreatePerformanceAnalysisReportCommandOutput } from "../commands/CreatePerformanceAnalysisReportCommand";
|
|
4
|
+
import { DeletePerformanceAnalysisReportCommandInput, DeletePerformanceAnalysisReportCommandOutput } from "../commands/DeletePerformanceAnalysisReportCommand";
|
|
3
5
|
import { DescribeDimensionKeysCommandInput, DescribeDimensionKeysCommandOutput } from "../commands/DescribeDimensionKeysCommand";
|
|
4
6
|
import { GetDimensionKeyDetailsCommandInput, GetDimensionKeyDetailsCommandOutput } from "../commands/GetDimensionKeyDetailsCommand";
|
|
7
|
+
import { GetPerformanceAnalysisReportCommandInput, GetPerformanceAnalysisReportCommandOutput } from "../commands/GetPerformanceAnalysisReportCommand";
|
|
5
8
|
import { GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput } from "../commands/GetResourceMetadataCommand";
|
|
6
9
|
import { GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput } from "../commands/GetResourceMetricsCommand";
|
|
7
10
|
import { ListAvailableResourceDimensionsCommandInput, ListAvailableResourceDimensionsCommandOutput } from "../commands/ListAvailableResourceDimensionsCommand";
|
|
8
11
|
import { ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput } from "../commands/ListAvailableResourceMetricsCommand";
|
|
12
|
+
import { ListPerformanceAnalysisReportsCommandInput, ListPerformanceAnalysisReportsCommandOutput } from "../commands/ListPerformanceAnalysisReportsCommand";
|
|
13
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
15
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
16
|
+
/**
|
|
17
|
+
* serializeAws_json1_1CreatePerformanceAnalysisReportCommand
|
|
18
|
+
*/
|
|
19
|
+
export declare const se_CreatePerformanceAnalysisReportCommand: (input: CreatePerformanceAnalysisReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
/**
|
|
21
|
+
* serializeAws_json1_1DeletePerformanceAnalysisReportCommand
|
|
22
|
+
*/
|
|
23
|
+
export declare const se_DeletePerformanceAnalysisReportCommand: (input: DeletePerformanceAnalysisReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
9
24
|
/**
|
|
10
25
|
* serializeAws_json1_1DescribeDimensionKeysCommand
|
|
11
26
|
*/
|
|
@@ -14,6 +29,10 @@ export declare const se_DescribeDimensionKeysCommand: (input: DescribeDimensionK
|
|
|
14
29
|
* serializeAws_json1_1GetDimensionKeyDetailsCommand
|
|
15
30
|
*/
|
|
16
31
|
export declare const se_GetDimensionKeyDetailsCommand: (input: GetDimensionKeyDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
/**
|
|
33
|
+
* serializeAws_json1_1GetPerformanceAnalysisReportCommand
|
|
34
|
+
*/
|
|
35
|
+
export declare const se_GetPerformanceAnalysisReportCommand: (input: GetPerformanceAnalysisReportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
17
36
|
/**
|
|
18
37
|
* serializeAws_json1_1GetResourceMetadataCommand
|
|
19
38
|
*/
|
|
@@ -30,6 +49,30 @@ export declare const se_ListAvailableResourceDimensionsCommand: (input: ListAvai
|
|
|
30
49
|
* serializeAws_json1_1ListAvailableResourceMetricsCommand
|
|
31
50
|
*/
|
|
32
51
|
export declare const se_ListAvailableResourceMetricsCommand: (input: ListAvailableResourceMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
/**
|
|
53
|
+
* serializeAws_json1_1ListPerformanceAnalysisReportsCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const se_ListPerformanceAnalysisReportsCommand: (input: ListPerformanceAnalysisReportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
/**
|
|
57
|
+
* serializeAws_json1_1ListTagsForResourceCommand
|
|
58
|
+
*/
|
|
59
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
+
/**
|
|
61
|
+
* serializeAws_json1_1TagResourceCommand
|
|
62
|
+
*/
|
|
63
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
/**
|
|
65
|
+
* serializeAws_json1_1UntagResourceCommand
|
|
66
|
+
*/
|
|
67
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
+
/**
|
|
69
|
+
* deserializeAws_json1_1CreatePerformanceAnalysisReportCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const de_CreatePerformanceAnalysisReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePerformanceAnalysisReportCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* deserializeAws_json1_1DeletePerformanceAnalysisReportCommand
|
|
74
|
+
*/
|
|
75
|
+
export declare const de_DeletePerformanceAnalysisReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePerformanceAnalysisReportCommandOutput>;
|
|
33
76
|
/**
|
|
34
77
|
* deserializeAws_json1_1DescribeDimensionKeysCommand
|
|
35
78
|
*/
|
|
@@ -38,6 +81,10 @@ export declare const de_DescribeDimensionKeysCommand: (output: __HttpResponse, c
|
|
|
38
81
|
* deserializeAws_json1_1GetDimensionKeyDetailsCommand
|
|
39
82
|
*/
|
|
40
83
|
export declare const de_GetDimensionKeyDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDimensionKeyDetailsCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* deserializeAws_json1_1GetPerformanceAnalysisReportCommand
|
|
86
|
+
*/
|
|
87
|
+
export declare const de_GetPerformanceAnalysisReportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPerformanceAnalysisReportCommandOutput>;
|
|
41
88
|
/**
|
|
42
89
|
* deserializeAws_json1_1GetResourceMetadataCommand
|
|
43
90
|
*/
|
|
@@ -54,3 +101,19 @@ export declare const de_ListAvailableResourceDimensionsCommand: (output: __HttpR
|
|
|
54
101
|
* deserializeAws_json1_1ListAvailableResourceMetricsCommand
|
|
55
102
|
*/
|
|
56
103
|
export declare const de_ListAvailableResourceMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAvailableResourceMetricsCommandOutput>;
|
|
104
|
+
/**
|
|
105
|
+
* deserializeAws_json1_1ListPerformanceAnalysisReportsCommand
|
|
106
|
+
*/
|
|
107
|
+
export declare const de_ListPerformanceAnalysisReportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPerformanceAnalysisReportsCommandOutput>;
|
|
108
|
+
/**
|
|
109
|
+
* deserializeAws_json1_1ListTagsForResourceCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
112
|
+
/**
|
|
113
|
+
* deserializeAws_json1_1TagResourceCommand
|
|
114
|
+
*/
|
|
115
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
116
|
+
/**
|
|
117
|
+
* deserializeAws_json1_1UntagResourceCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
package/dist-types/ts3.4/PI.d.ts
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreatePerformanceAnalysisReportCommandInput,
|
|
4
|
+
CreatePerformanceAnalysisReportCommandOutput,
|
|
5
|
+
} from "./commands/CreatePerformanceAnalysisReportCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeletePerformanceAnalysisReportCommandInput,
|
|
8
|
+
DeletePerformanceAnalysisReportCommandOutput,
|
|
9
|
+
} from "./commands/DeletePerformanceAnalysisReportCommand";
|
|
2
10
|
import {
|
|
3
11
|
DescribeDimensionKeysCommandInput,
|
|
4
12
|
DescribeDimensionKeysCommandOutput,
|
|
@@ -7,6 +15,10 @@ import {
|
|
|
7
15
|
GetDimensionKeyDetailsCommandInput,
|
|
8
16
|
GetDimensionKeyDetailsCommandOutput,
|
|
9
17
|
} from "./commands/GetDimensionKeyDetailsCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetPerformanceAnalysisReportCommandInput,
|
|
20
|
+
GetPerformanceAnalysisReportCommandOutput,
|
|
21
|
+
} from "./commands/GetPerformanceAnalysisReportCommand";
|
|
10
22
|
import {
|
|
11
23
|
GetResourceMetadataCommandInput,
|
|
12
24
|
GetResourceMetadataCommandOutput,
|
|
@@ -23,8 +35,50 @@ import {
|
|
|
23
35
|
ListAvailableResourceMetricsCommandInput,
|
|
24
36
|
ListAvailableResourceMetricsCommandOutput,
|
|
25
37
|
} from "./commands/ListAvailableResourceMetricsCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListPerformanceAnalysisReportsCommandInput,
|
|
40
|
+
ListPerformanceAnalysisReportsCommandOutput,
|
|
41
|
+
} from "./commands/ListPerformanceAnalysisReportsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsForResourceCommandInput,
|
|
44
|
+
ListTagsForResourceCommandOutput,
|
|
45
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
TagResourceCommandInput,
|
|
48
|
+
TagResourceCommandOutput,
|
|
49
|
+
} from "./commands/TagResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
UntagResourceCommandInput,
|
|
52
|
+
UntagResourceCommandOutput,
|
|
53
|
+
} from "./commands/UntagResourceCommand";
|
|
26
54
|
import { PIClient } from "./PIClient";
|
|
27
55
|
export interface PI {
|
|
56
|
+
createPerformanceAnalysisReport(
|
|
57
|
+
args: CreatePerformanceAnalysisReportCommandInput,
|
|
58
|
+
options?: __HttpHandlerOptions
|
|
59
|
+
): Promise<CreatePerformanceAnalysisReportCommandOutput>;
|
|
60
|
+
createPerformanceAnalysisReport(
|
|
61
|
+
args: CreatePerformanceAnalysisReportCommandInput,
|
|
62
|
+
cb: (err: any, data?: CreatePerformanceAnalysisReportCommandOutput) => void
|
|
63
|
+
): void;
|
|
64
|
+
createPerformanceAnalysisReport(
|
|
65
|
+
args: CreatePerformanceAnalysisReportCommandInput,
|
|
66
|
+
options: __HttpHandlerOptions,
|
|
67
|
+
cb: (err: any, data?: CreatePerformanceAnalysisReportCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
deletePerformanceAnalysisReport(
|
|
70
|
+
args: DeletePerformanceAnalysisReportCommandInput,
|
|
71
|
+
options?: __HttpHandlerOptions
|
|
72
|
+
): Promise<DeletePerformanceAnalysisReportCommandOutput>;
|
|
73
|
+
deletePerformanceAnalysisReport(
|
|
74
|
+
args: DeletePerformanceAnalysisReportCommandInput,
|
|
75
|
+
cb: (err: any, data?: DeletePerformanceAnalysisReportCommandOutput) => void
|
|
76
|
+
): void;
|
|
77
|
+
deletePerformanceAnalysisReport(
|
|
78
|
+
args: DeletePerformanceAnalysisReportCommandInput,
|
|
79
|
+
options: __HttpHandlerOptions,
|
|
80
|
+
cb: (err: any, data?: DeletePerformanceAnalysisReportCommandOutput) => void
|
|
81
|
+
): void;
|
|
28
82
|
describeDimensionKeys(
|
|
29
83
|
args: DescribeDimensionKeysCommandInput,
|
|
30
84
|
options?: __HttpHandlerOptions
|
|
@@ -51,6 +105,19 @@ export interface PI {
|
|
|
51
105
|
options: __HttpHandlerOptions,
|
|
52
106
|
cb: (err: any, data?: GetDimensionKeyDetailsCommandOutput) => void
|
|
53
107
|
): void;
|
|
108
|
+
getPerformanceAnalysisReport(
|
|
109
|
+
args: GetPerformanceAnalysisReportCommandInput,
|
|
110
|
+
options?: __HttpHandlerOptions
|
|
111
|
+
): Promise<GetPerformanceAnalysisReportCommandOutput>;
|
|
112
|
+
getPerformanceAnalysisReport(
|
|
113
|
+
args: GetPerformanceAnalysisReportCommandInput,
|
|
114
|
+
cb: (err: any, data?: GetPerformanceAnalysisReportCommandOutput) => void
|
|
115
|
+
): void;
|
|
116
|
+
getPerformanceAnalysisReport(
|
|
117
|
+
args: GetPerformanceAnalysisReportCommandInput,
|
|
118
|
+
options: __HttpHandlerOptions,
|
|
119
|
+
cb: (err: any, data?: GetPerformanceAnalysisReportCommandOutput) => void
|
|
120
|
+
): void;
|
|
54
121
|
getResourceMetadata(
|
|
55
122
|
args: GetResourceMetadataCommandInput,
|
|
56
123
|
options?: __HttpHandlerOptions
|
|
@@ -103,5 +170,57 @@ export interface PI {
|
|
|
103
170
|
options: __HttpHandlerOptions,
|
|
104
171
|
cb: (err: any, data?: ListAvailableResourceMetricsCommandOutput) => void
|
|
105
172
|
): void;
|
|
173
|
+
listPerformanceAnalysisReports(
|
|
174
|
+
args: ListPerformanceAnalysisReportsCommandInput,
|
|
175
|
+
options?: __HttpHandlerOptions
|
|
176
|
+
): Promise<ListPerformanceAnalysisReportsCommandOutput>;
|
|
177
|
+
listPerformanceAnalysisReports(
|
|
178
|
+
args: ListPerformanceAnalysisReportsCommandInput,
|
|
179
|
+
cb: (err: any, data?: ListPerformanceAnalysisReportsCommandOutput) => void
|
|
180
|
+
): void;
|
|
181
|
+
listPerformanceAnalysisReports(
|
|
182
|
+
args: ListPerformanceAnalysisReportsCommandInput,
|
|
183
|
+
options: __HttpHandlerOptions,
|
|
184
|
+
cb: (err: any, data?: ListPerformanceAnalysisReportsCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
listTagsForResource(
|
|
187
|
+
args: ListTagsForResourceCommandInput,
|
|
188
|
+
options?: __HttpHandlerOptions
|
|
189
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
190
|
+
listTagsForResource(
|
|
191
|
+
args: ListTagsForResourceCommandInput,
|
|
192
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
193
|
+
): void;
|
|
194
|
+
listTagsForResource(
|
|
195
|
+
args: ListTagsForResourceCommandInput,
|
|
196
|
+
options: __HttpHandlerOptions,
|
|
197
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
198
|
+
): void;
|
|
199
|
+
tagResource(
|
|
200
|
+
args: TagResourceCommandInput,
|
|
201
|
+
options?: __HttpHandlerOptions
|
|
202
|
+
): Promise<TagResourceCommandOutput>;
|
|
203
|
+
tagResource(
|
|
204
|
+
args: TagResourceCommandInput,
|
|
205
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
206
|
+
): void;
|
|
207
|
+
tagResource(
|
|
208
|
+
args: TagResourceCommandInput,
|
|
209
|
+
options: __HttpHandlerOptions,
|
|
210
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
211
|
+
): void;
|
|
212
|
+
untagResource(
|
|
213
|
+
args: UntagResourceCommandInput,
|
|
214
|
+
options?: __HttpHandlerOptions
|
|
215
|
+
): Promise<UntagResourceCommandOutput>;
|
|
216
|
+
untagResource(
|
|
217
|
+
args: UntagResourceCommandInput,
|
|
218
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
219
|
+
): void;
|
|
220
|
+
untagResource(
|
|
221
|
+
args: UntagResourceCommandInput,
|
|
222
|
+
options: __HttpHandlerOptions,
|
|
223
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
224
|
+
): void;
|
|
106
225
|
}
|
|
107
226
|
export declare class PI extends PIClient implements PI {}
|
|
@@ -45,6 +45,14 @@ import {
|
|
|
45
45
|
UrlParser as __UrlParser,
|
|
46
46
|
UserAgent as __UserAgent,
|
|
47
47
|
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CreatePerformanceAnalysisReportCommandInput,
|
|
50
|
+
CreatePerformanceAnalysisReportCommandOutput,
|
|
51
|
+
} from "./commands/CreatePerformanceAnalysisReportCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeletePerformanceAnalysisReportCommandInput,
|
|
54
|
+
DeletePerformanceAnalysisReportCommandOutput,
|
|
55
|
+
} from "./commands/DeletePerformanceAnalysisReportCommand";
|
|
48
56
|
import {
|
|
49
57
|
DescribeDimensionKeysCommandInput,
|
|
50
58
|
DescribeDimensionKeysCommandOutput,
|
|
@@ -53,6 +61,10 @@ import {
|
|
|
53
61
|
GetDimensionKeyDetailsCommandInput,
|
|
54
62
|
GetDimensionKeyDetailsCommandOutput,
|
|
55
63
|
} from "./commands/GetDimensionKeyDetailsCommand";
|
|
64
|
+
import {
|
|
65
|
+
GetPerformanceAnalysisReportCommandInput,
|
|
66
|
+
GetPerformanceAnalysisReportCommandOutput,
|
|
67
|
+
} from "./commands/GetPerformanceAnalysisReportCommand";
|
|
56
68
|
import {
|
|
57
69
|
GetResourceMetadataCommandInput,
|
|
58
70
|
GetResourceMetadataCommandOutput,
|
|
@@ -69,6 +81,22 @@ import {
|
|
|
69
81
|
ListAvailableResourceMetricsCommandInput,
|
|
70
82
|
ListAvailableResourceMetricsCommandOutput,
|
|
71
83
|
} from "./commands/ListAvailableResourceMetricsCommand";
|
|
84
|
+
import {
|
|
85
|
+
ListPerformanceAnalysisReportsCommandInput,
|
|
86
|
+
ListPerformanceAnalysisReportsCommandOutput,
|
|
87
|
+
} from "./commands/ListPerformanceAnalysisReportsCommand";
|
|
88
|
+
import {
|
|
89
|
+
ListTagsForResourceCommandInput,
|
|
90
|
+
ListTagsForResourceCommandOutput,
|
|
91
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
92
|
+
import {
|
|
93
|
+
TagResourceCommandInput,
|
|
94
|
+
TagResourceCommandOutput,
|
|
95
|
+
} from "./commands/TagResourceCommand";
|
|
96
|
+
import {
|
|
97
|
+
UntagResourceCommandInput,
|
|
98
|
+
UntagResourceCommandOutput,
|
|
99
|
+
} from "./commands/UntagResourceCommand";
|
|
72
100
|
import {
|
|
73
101
|
ClientInputEndpointParameters,
|
|
74
102
|
ClientResolvedEndpointParameters,
|
|
@@ -76,19 +104,33 @@ import {
|
|
|
76
104
|
} from "./endpoint/EndpointParameters";
|
|
77
105
|
export { __Client };
|
|
78
106
|
export type ServiceInputTypes =
|
|
107
|
+
| CreatePerformanceAnalysisReportCommandInput
|
|
108
|
+
| DeletePerformanceAnalysisReportCommandInput
|
|
79
109
|
| DescribeDimensionKeysCommandInput
|
|
80
110
|
| GetDimensionKeyDetailsCommandInput
|
|
111
|
+
| GetPerformanceAnalysisReportCommandInput
|
|
81
112
|
| GetResourceMetadataCommandInput
|
|
82
113
|
| GetResourceMetricsCommandInput
|
|
83
114
|
| ListAvailableResourceDimensionsCommandInput
|
|
84
|
-
| ListAvailableResourceMetricsCommandInput
|
|
115
|
+
| ListAvailableResourceMetricsCommandInput
|
|
116
|
+
| ListPerformanceAnalysisReportsCommandInput
|
|
117
|
+
| ListTagsForResourceCommandInput
|
|
118
|
+
| TagResourceCommandInput
|
|
119
|
+
| UntagResourceCommandInput;
|
|
85
120
|
export type ServiceOutputTypes =
|
|
121
|
+
| CreatePerformanceAnalysisReportCommandOutput
|
|
122
|
+
| DeletePerformanceAnalysisReportCommandOutput
|
|
86
123
|
| DescribeDimensionKeysCommandOutput
|
|
87
124
|
| GetDimensionKeyDetailsCommandOutput
|
|
125
|
+
| GetPerformanceAnalysisReportCommandOutput
|
|
88
126
|
| GetResourceMetadataCommandOutput
|
|
89
127
|
| GetResourceMetricsCommandOutput
|
|
90
128
|
| ListAvailableResourceDimensionsCommandOutput
|
|
91
|
-
| ListAvailableResourceMetricsCommandOutput
|
|
129
|
+
| ListAvailableResourceMetricsCommandOutput
|
|
130
|
+
| ListPerformanceAnalysisReportsCommandOutput
|
|
131
|
+
| ListTagsForResourceCommandOutput
|
|
132
|
+
| TagResourceCommandOutput
|
|
133
|
+
| UntagResourceCommandOutput;
|
|
92
134
|
export interface ClientDefaults
|
|
93
135
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
94
136
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CreatePerformanceAnalysisReportRequest,
|
|
11
|
+
CreatePerformanceAnalysisReportResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PIClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PIClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreatePerformanceAnalysisReportCommandInput
|
|
20
|
+
extends CreatePerformanceAnalysisReportRequest {}
|
|
21
|
+
export interface CreatePerformanceAnalysisReportCommandOutput
|
|
22
|
+
extends CreatePerformanceAnalysisReportResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreatePerformanceAnalysisReportCommand extends $Command<
|
|
25
|
+
CreatePerformanceAnalysisReportCommandInput,
|
|
26
|
+
CreatePerformanceAnalysisReportCommandOutput,
|
|
27
|
+
PIClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreatePerformanceAnalysisReportCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreatePerformanceAnalysisReportCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PIClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreatePerformanceAnalysisReportCommandInput,
|
|
38
|
+
CreatePerformanceAnalysisReportCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
DeletePerformanceAnalysisReportRequest,
|
|
11
|
+
DeletePerformanceAnalysisReportResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PIClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PIClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface DeletePerformanceAnalysisReportCommandInput
|
|
20
|
+
extends DeletePerformanceAnalysisReportRequest {}
|
|
21
|
+
export interface DeletePerformanceAnalysisReportCommandOutput
|
|
22
|
+
extends DeletePerformanceAnalysisReportResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class DeletePerformanceAnalysisReportCommand extends $Command<
|
|
25
|
+
DeletePerformanceAnalysisReportCommandInput,
|
|
26
|
+
DeletePerformanceAnalysisReportCommandOutput,
|
|
27
|
+
PIClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: DeletePerformanceAnalysisReportCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: DeletePerformanceAnalysisReportCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PIClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
DeletePerformanceAnalysisReportCommandInput,
|
|
38
|
+
DeletePerformanceAnalysisReportCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
GetPerformanceAnalysisReportRequest,
|
|
11
|
+
GetPerformanceAnalysisReportResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PIClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PIClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetPerformanceAnalysisReportCommandInput
|
|
20
|
+
extends GetPerformanceAnalysisReportRequest {}
|
|
21
|
+
export interface GetPerformanceAnalysisReportCommandOutput
|
|
22
|
+
extends GetPerformanceAnalysisReportResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class GetPerformanceAnalysisReportCommand extends $Command<
|
|
25
|
+
GetPerformanceAnalysisReportCommandInput,
|
|
26
|
+
GetPerformanceAnalysisReportCommandOutput,
|
|
27
|
+
PIClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: GetPerformanceAnalysisReportCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: GetPerformanceAnalysisReportCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PIClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
GetPerformanceAnalysisReportCommandInput,
|
|
38
|
+
GetPerformanceAnalysisReportCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListPerformanceAnalysisReportsRequest,
|
|
11
|
+
ListPerformanceAnalysisReportsResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PIClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PIClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListPerformanceAnalysisReportsCommandInput
|
|
20
|
+
extends ListPerformanceAnalysisReportsRequest {}
|
|
21
|
+
export interface ListPerformanceAnalysisReportsCommandOutput
|
|
22
|
+
extends ListPerformanceAnalysisReportsResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListPerformanceAnalysisReportsCommand extends $Command<
|
|
25
|
+
ListPerformanceAnalysisReportsCommandInput,
|
|
26
|
+
ListPerformanceAnalysisReportsCommandOutput,
|
|
27
|
+
PIClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListPerformanceAnalysisReportsCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListPerformanceAnalysisReportsCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PIClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListPerformanceAnalysisReportsCommandInput,
|
|
38
|
+
ListPerformanceAnalysisReportsCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListTagsForResourceRequest,
|
|
11
|
+
ListTagsForResourceResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PIClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PIClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListTagsForResourceCommandInput
|
|
20
|
+
extends ListTagsForResourceRequest {}
|
|
21
|
+
export interface ListTagsForResourceCommandOutput
|
|
22
|
+
extends ListTagsForResourceResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
25
|
+
ListTagsForResourceCommandInput,
|
|
26
|
+
ListTagsForResourceCommandOutput,
|
|
27
|
+
PIClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: PIClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
PIClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../PIClient";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
17
|
+
export interface TagResourceCommandOutput
|
|
18
|
+
extends TagResourceResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class TagResourceCommand extends $Command<
|
|
21
|
+
TagResourceCommandInput,
|
|
22
|
+
TagResourceCommandOutput,
|
|
23
|
+
PIClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: TagResourceCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: TagResourceCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: PIClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
UntagResourceRequest,
|
|
11
|
+
UntagResourceResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
PIClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../PIClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
20
|
+
export interface UntagResourceCommandOutput
|
|
21
|
+
extends UntagResourceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class UntagResourceCommand extends $Command<
|
|
24
|
+
UntagResourceCommandInput,
|
|
25
|
+
UntagResourceCommandOutput,
|
|
26
|
+
PIClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UntagResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: UntagResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PIClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,6 +1,13 @@
|
|
|
1
|
+
export * from "./CreatePerformanceAnalysisReportCommand";
|
|
2
|
+
export * from "./DeletePerformanceAnalysisReportCommand";
|
|
1
3
|
export * from "./DescribeDimensionKeysCommand";
|
|
2
4
|
export * from "./GetDimensionKeyDetailsCommand";
|
|
5
|
+
export * from "./GetPerformanceAnalysisReportCommand";
|
|
3
6
|
export * from "./GetResourceMetadataCommand";
|
|
4
7
|
export * from "./GetResourceMetricsCommand";
|
|
5
8
|
export * from "./ListAvailableResourceDimensionsCommand";
|
|
6
9
|
export * from "./ListAvailableResourceMetricsCommand";
|
|
10
|
+
export * from "./ListPerformanceAnalysisReportsCommand";
|
|
11
|
+
export * from "./ListTagsForResourceCommand";
|
|
12
|
+
export * from "./TagResourceCommand";
|
|
13
|
+
export * from "./UntagResourceCommand";
|