@aws-sdk/client-pi 3.296.0 → 3.298.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/commands/DescribeDimensionKeysCommand.js +2 -3
- package/dist-cjs/commands/GetDimensionKeyDetailsCommand.js +2 -3
- package/dist-cjs/commands/GetResourceMetadataCommand.js +2 -3
- package/dist-cjs/commands/GetResourceMetricsCommand.js +2 -3
- package/dist-cjs/commands/ListAvailableResourceDimensionsCommand.js +2 -3
- package/dist-cjs/commands/ListAvailableResourceMetricsCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -101
- package/dist-es/commands/DescribeDimensionKeysCommand.js +2 -3
- package/dist-es/commands/GetDimensionKeyDetailsCommand.js +2 -3
- package/dist-es/commands/GetResourceMetadataCommand.js +2 -3
- package/dist-es/commands/GetResourceMetricsCommand.js +2 -3
- package/dist-es/commands/ListAvailableResourceDimensionsCommand.js +2 -3
- package/dist-es/commands/ListAvailableResourceMetricsCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -75
- package/dist-types/PI.d.ts +7 -0
- package/dist-types/PIClient.d.ts +24 -4
- package/dist-types/commands/DescribeDimensionKeysCommand.d.ts +16 -0
- package/dist-types/commands/GetDimensionKeyDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceMetadataCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceMetricsCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableResourceDimensionsCommand.d.ts +16 -0
- package/dist-types/commands/ListAvailableResourceMetricsCommand.d.ts +16 -0
- package/dist-types/models/PIServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +65 -101
- package/dist-types/pagination/DescribeDimensionKeysPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceMetricsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAvailableResourceDimensionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListAvailableResourceMetricsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -71
- package/package.json +4 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput } from "../commands/ListAvailableResourceMetricsCommand";
|
|
3
3
|
import { PIPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListAvailableResourceMetrics(config: PIPaginationConfiguration, input: ListAvailableResourceMetricsCommandInput, ...additionalArguments: any): Paginator<ListAvailableResourceMetricsCommandOutput>;
|
|
@@ -179,74 +179,3 @@ export interface ListAvailableResourceMetricsResponse {
|
|
|
179
179
|
Metrics?: ResponseResourceMetric[];
|
|
180
180
|
NextToken?: string;
|
|
181
181
|
}
|
|
182
|
-
export declare const DataPointFilterSensitiveLog: (obj: DataPoint) => any;
|
|
183
|
-
export declare const DimensionGroupFilterSensitiveLog: (
|
|
184
|
-
obj: DimensionGroup
|
|
185
|
-
) => any;
|
|
186
|
-
export declare const DescribeDimensionKeysRequestFilterSensitiveLog: (
|
|
187
|
-
obj: DescribeDimensionKeysRequest
|
|
188
|
-
) => any;
|
|
189
|
-
export declare const DimensionKeyDescriptionFilterSensitiveLog: (
|
|
190
|
-
obj: DimensionKeyDescription
|
|
191
|
-
) => any;
|
|
192
|
-
export declare const ResponsePartitionKeyFilterSensitiveLog: (
|
|
193
|
-
obj: ResponsePartitionKey
|
|
194
|
-
) => any;
|
|
195
|
-
export declare const DescribeDimensionKeysResponseFilterSensitiveLog: (
|
|
196
|
-
obj: DescribeDimensionKeysResponse
|
|
197
|
-
) => any;
|
|
198
|
-
export declare const DimensionDetailFilterSensitiveLog: (
|
|
199
|
-
obj: DimensionDetail
|
|
200
|
-
) => any;
|
|
201
|
-
export declare const DimensionGroupDetailFilterSensitiveLog: (
|
|
202
|
-
obj: DimensionGroupDetail
|
|
203
|
-
) => any;
|
|
204
|
-
export declare const DimensionKeyDetailFilterSensitiveLog: (
|
|
205
|
-
obj: DimensionKeyDetail
|
|
206
|
-
) => any;
|
|
207
|
-
export declare const FeatureMetadataFilterSensitiveLog: (
|
|
208
|
-
obj: FeatureMetadata
|
|
209
|
-
) => any;
|
|
210
|
-
export declare const GetDimensionKeyDetailsRequestFilterSensitiveLog: (
|
|
211
|
-
obj: GetDimensionKeyDetailsRequest
|
|
212
|
-
) => any;
|
|
213
|
-
export declare const GetDimensionKeyDetailsResponseFilterSensitiveLog: (
|
|
214
|
-
obj: GetDimensionKeyDetailsResponse
|
|
215
|
-
) => any;
|
|
216
|
-
export declare const GetResourceMetadataRequestFilterSensitiveLog: (
|
|
217
|
-
obj: GetResourceMetadataRequest
|
|
218
|
-
) => any;
|
|
219
|
-
export declare const GetResourceMetadataResponseFilterSensitiveLog: (
|
|
220
|
-
obj: GetResourceMetadataResponse
|
|
221
|
-
) => any;
|
|
222
|
-
export declare const MetricQueryFilterSensitiveLog: (obj: MetricQuery) => any;
|
|
223
|
-
export declare const GetResourceMetricsRequestFilterSensitiveLog: (
|
|
224
|
-
obj: GetResourceMetricsRequest
|
|
225
|
-
) => any;
|
|
226
|
-
export declare const ResponseResourceMetricKeyFilterSensitiveLog: (
|
|
227
|
-
obj: ResponseResourceMetricKey
|
|
228
|
-
) => any;
|
|
229
|
-
export declare const MetricKeyDataPointsFilterSensitiveLog: (
|
|
230
|
-
obj: MetricKeyDataPoints
|
|
231
|
-
) => any;
|
|
232
|
-
export declare const GetResourceMetricsResponseFilterSensitiveLog: (
|
|
233
|
-
obj: GetResourceMetricsResponse
|
|
234
|
-
) => any;
|
|
235
|
-
export declare const ListAvailableResourceDimensionsRequestFilterSensitiveLog: (
|
|
236
|
-
obj: ListAvailableResourceDimensionsRequest
|
|
237
|
-
) => any;
|
|
238
|
-
export declare const MetricDimensionGroupsFilterSensitiveLog: (
|
|
239
|
-
obj: MetricDimensionGroups
|
|
240
|
-
) => any;
|
|
241
|
-
export declare const ListAvailableResourceDimensionsResponseFilterSensitiveLog: (
|
|
242
|
-
obj: ListAvailableResourceDimensionsResponse
|
|
243
|
-
) => any;
|
|
244
|
-
export declare const ListAvailableResourceMetricsRequestFilterSensitiveLog: (
|
|
245
|
-
obj: ListAvailableResourceMetricsRequest
|
|
246
|
-
) => any;
|
|
247
|
-
export declare const ResponseResourceMetricFilterSensitiveLog: (
|
|
248
|
-
obj: ResponseResourceMetric
|
|
249
|
-
) => any;
|
|
250
|
-
export declare const ListAvailableResourceMetricsResponseFilterSensitiveLog: (
|
|
251
|
-
obj: ListAvailableResourceMetricsResponse
|
|
252
|
-
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pi",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pi Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo pi"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|