@aws-sdk/client-pi 3.170.0 → 3.178.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-pi
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-pi
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-pi
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: PIClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: PIClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: PIClientConfig) => {
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -24,7 +24,6 @@ import {
24
24
  ListAvailableResourceMetricsCommandOutput,
25
25
  } from "./commands/ListAvailableResourceMetricsCommand";
26
26
  import { PIClient } from "./PIClient";
27
-
28
27
  export declare class PI extends PIClient {
29
28
  describeDimensionKeys(
30
29
  args: DescribeDimensionKeysCommandInput,
@@ -39,7 +38,6 @@ export declare class PI extends PIClient {
39
38
  options: __HttpHandlerOptions,
40
39
  cb: (err: any, data?: DescribeDimensionKeysCommandOutput) => void
41
40
  ): void;
42
-
43
41
  getDimensionKeyDetails(
44
42
  args: GetDimensionKeyDetailsCommandInput,
45
43
  options?: __HttpHandlerOptions
@@ -53,7 +51,6 @@ export declare class PI extends PIClient {
53
51
  options: __HttpHandlerOptions,
54
52
  cb: (err: any, data?: GetDimensionKeyDetailsCommandOutput) => void
55
53
  ): void;
56
-
57
54
  getResourceMetadata(
58
55
  args: GetResourceMetadataCommandInput,
59
56
  options?: __HttpHandlerOptions
@@ -67,7 +64,6 @@ export declare class PI extends PIClient {
67
64
  options: __HttpHandlerOptions,
68
65
  cb: (err: any, data?: GetResourceMetadataCommandOutput) => void
69
66
  ): void;
70
-
71
67
  getResourceMetrics(
72
68
  args: GetResourceMetricsCommandInput,
73
69
  options?: __HttpHandlerOptions
@@ -81,7 +77,6 @@ export declare class PI extends PIClient {
81
77
  options: __HttpHandlerOptions,
82
78
  cb: (err: any, data?: GetResourceMetricsCommandOutput) => void
83
79
  ): void;
84
-
85
80
  listAvailableResourceDimensions(
86
81
  args: ListAvailableResourceDimensionsCommandInput,
87
82
  options?: __HttpHandlerOptions
@@ -95,7 +90,6 @@ export declare class PI extends PIClient {
95
90
  options: __HttpHandlerOptions,
96
91
  cb: (err: any, data?: ListAvailableResourceDimensionsCommandOutput) => void
97
92
  ): void;
98
-
99
93
  listAvailableResourceMetrics(
100
94
  args: ListAvailableResourceMetricsCommandInput,
101
95
  options?: __HttpHandlerOptions
@@ -83,47 +83,26 @@ export declare type ServiceOutputTypes =
83
83
  export interface ClientDefaults
84
84
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
85
85
  requestHandler?: __HttpHandler;
86
-
87
86
  sha256?: __HashConstructor;
88
-
89
87
  urlParser?: __UrlParser;
90
-
91
88
  bodyLengthChecker?: __BodyLengthCalculator;
92
-
93
89
  streamCollector?: __StreamCollector;
94
-
95
90
  base64Decoder?: __Decoder;
96
-
97
91
  base64Encoder?: __Encoder;
98
-
99
92
  utf8Decoder?: __Decoder;
100
-
101
93
  utf8Encoder?: __Encoder;
102
-
103
94
  runtime?: string;
104
-
105
95
  disableHostPrefix?: boolean;
106
-
107
96
  maxAttempts?: number | __Provider<number>;
108
-
109
97
  retryMode?: string | __Provider<string>;
110
-
111
98
  logger?: __Logger;
112
-
113
99
  useDualstackEndpoint?: boolean | __Provider<boolean>;
114
-
115
100
  useFipsEndpoint?: boolean | __Provider<boolean>;
116
-
117
101
  serviceId?: string;
118
-
119
102
  region?: string | __Provider<string>;
120
-
121
103
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
122
-
123
104
  regionInfoProvider?: RegionInfoProvider;
124
-
125
105
  defaultUserAgentProvider?: Provider<__UserAgent>;
126
-
127
106
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
128
107
  }
129
108
  declare type PIClientConfigType = Partial<
@@ -136,7 +115,6 @@ declare type PIClientConfigType = Partial<
136
115
  HostHeaderInputConfig &
137
116
  AwsAuthInputConfig &
138
117
  UserAgentInputConfig;
139
-
140
118
  export interface PIClientConfig extends PIClientConfigType {}
141
119
  declare type PIClientResolvedConfigType =
142
120
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
@@ -147,9 +125,7 @@ declare type PIClientResolvedConfigType =
147
125
  HostHeaderResolvedConfig &
148
126
  AwsAuthResolvedConfig &
149
127
  UserAgentResolvedConfig;
150
-
151
128
  export interface PIClientResolvedConfig extends PIClientResolvedConfigType {}
152
-
153
129
  export declare class PIClient extends __Client<
154
130
  __HttpHandlerOptions,
155
131
  ServiceInputTypes,
@@ -158,7 +134,6 @@ export declare class PIClient extends __Client<
158
134
  > {
159
135
  readonly config: PIClientResolvedConfig;
160
136
  constructor(configuration: PIClientConfig);
161
-
162
137
  destroy(): void;
163
138
  }
164
139
  export {};
@@ -19,7 +19,6 @@ export interface DescribeDimensionKeysCommandInput
19
19
  export interface DescribeDimensionKeysCommandOutput
20
20
  extends DescribeDimensionKeysResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class DescribeDimensionKeysCommand extends $Command<
24
23
  DescribeDimensionKeysCommandInput,
25
24
  DescribeDimensionKeysCommandOutput,
@@ -27,7 +26,6 @@ export declare class DescribeDimensionKeysCommand extends $Command<
27
26
  > {
28
27
  readonly input: DescribeDimensionKeysCommandInput;
29
28
  constructor(input: DescribeDimensionKeysCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: PIClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetDimensionKeyDetailsCommandInput
19
19
  export interface GetDimensionKeyDetailsCommandOutput
20
20
  extends GetDimensionKeyDetailsResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetDimensionKeyDetailsCommand extends $Command<
24
23
  GetDimensionKeyDetailsCommandInput,
25
24
  GetDimensionKeyDetailsCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetDimensionKeyDetailsCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetDimensionKeyDetailsCommandInput;
29
28
  constructor(input: GetDimensionKeyDetailsCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: PIClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetResourceMetadataCommandInput
19
19
  export interface GetResourceMetadataCommandOutput
20
20
  extends GetResourceMetadataResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetResourceMetadataCommand extends $Command<
24
23
  GetResourceMetadataCommandInput,
25
24
  GetResourceMetadataCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetResourceMetadataCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetResourceMetadataCommandInput;
29
28
  constructor(input: GetResourceMetadataCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: PIClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface GetResourceMetricsCommandInput
19
19
  export interface GetResourceMetricsCommandOutput
20
20
  extends GetResourceMetricsResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class GetResourceMetricsCommand extends $Command<
24
23
  GetResourceMetricsCommandInput,
25
24
  GetResourceMetricsCommandOutput,
@@ -27,7 +26,6 @@ export declare class GetResourceMetricsCommand extends $Command<
27
26
  > {
28
27
  readonly input: GetResourceMetricsCommandInput;
29
28
  constructor(input: GetResourceMetricsCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: PIClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListAvailableResourceDimensionsCommandInput
19
19
  export interface ListAvailableResourceDimensionsCommandOutput
20
20
  extends ListAvailableResourceDimensionsResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListAvailableResourceDimensionsCommand extends $Command<
24
23
  ListAvailableResourceDimensionsCommandInput,
25
24
  ListAvailableResourceDimensionsCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListAvailableResourceDimensionsCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListAvailableResourceDimensionsCommandInput;
29
28
  constructor(input: ListAvailableResourceDimensionsCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: PIClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListAvailableResourceMetricsCommandInput
19
19
  export interface ListAvailableResourceMetricsCommandOutput
20
20
  extends ListAvailableResourceMetricsResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListAvailableResourceMetricsCommand extends $Command<
24
23
  ListAvailableResourceMetricsCommandInput,
25
24
  ListAvailableResourceMetricsCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListAvailableResourceMetricsCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListAvailableResourceMetricsCommandInput;
29
28
  constructor(input: ListAvailableResourceMetricsCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: PIClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class PIServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -1,17 +1,12 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { PIServiceException as __BaseException } from "./PIServiceException";
3
-
4
3
  export interface DataPoint {
5
4
  Timestamp: Date | undefined;
6
-
7
5
  Value: number | undefined;
8
6
  }
9
-
10
7
  export interface DimensionGroup {
11
8
  Group: string | undefined;
12
-
13
9
  Dimensions?: string[];
14
-
15
10
  Limit?: number;
16
11
  }
17
12
  export declare enum ServiceType {
@@ -20,80 +15,54 @@ export declare enum ServiceType {
20
15
  }
21
16
  export interface DescribeDimensionKeysRequest {
22
17
  ServiceType: ServiceType | string | undefined;
23
-
24
18
  Identifier: string | undefined;
25
-
26
19
  StartTime: Date | undefined;
27
-
28
20
  EndTime: Date | undefined;
29
-
30
21
  Metric: string | undefined;
31
-
32
22
  PeriodInSeconds?: number;
33
-
34
23
  GroupBy: DimensionGroup | undefined;
35
-
36
24
  AdditionalMetrics?: string[];
37
-
38
25
  PartitionBy?: DimensionGroup;
39
-
40
26
  Filter?: Record<string, string>;
41
-
42
27
  MaxResults?: number;
43
-
44
28
  NextToken?: string;
45
29
  }
46
-
47
30
  export interface DimensionKeyDescription {
48
31
  Dimensions?: Record<string, string>;
49
-
50
32
  Total?: number;
51
-
52
33
  AdditionalMetrics?: Record<string, number>;
53
-
54
34
  Partitions?: number[];
55
35
  }
56
-
57
36
  export interface ResponsePartitionKey {
58
37
  Dimensions: Record<string, string> | undefined;
59
38
  }
60
39
  export interface DescribeDimensionKeysResponse {
61
40
  AlignedStartTime?: Date;
62
-
63
41
  AlignedEndTime?: Date;
64
-
65
42
  PartitionKeys?: ResponsePartitionKey[];
66
-
67
43
  Keys?: DimensionKeyDescription[];
68
-
69
44
  NextToken?: string;
70
45
  }
71
-
72
46
  export declare class InternalServiceError extends __BaseException {
73
47
  readonly name: "InternalServiceError";
74
48
  readonly $fault: "server";
75
49
  Message?: string;
76
-
77
50
  constructor(
78
51
  opts: __ExceptionOptionType<InternalServiceError, __BaseException>
79
52
  );
80
53
  }
81
-
82
54
  export declare class InvalidArgumentException extends __BaseException {
83
55
  readonly name: "InvalidArgumentException";
84
56
  readonly $fault: "client";
85
57
  Message?: string;
86
-
87
58
  constructor(
88
59
  opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>
89
60
  );
90
61
  }
91
-
92
62
  export declare class NotAuthorizedException extends __BaseException {
93
63
  readonly name: "NotAuthorizedException";
94
64
  readonly $fault: "client";
95
65
  Message?: string;
96
-
97
66
  constructor(
98
67
  opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>
99
68
  );
@@ -103,22 +72,16 @@ export declare enum DetailStatus {
103
72
  PROCESSING = "PROCESSING",
104
73
  UNAVAILABLE = "UNAVAILABLE",
105
74
  }
106
-
107
75
  export interface DimensionDetail {
108
76
  Identifier?: string;
109
77
  }
110
-
111
78
  export interface DimensionGroupDetail {
112
79
  Group?: string;
113
-
114
80
  Dimensions?: DimensionDetail[];
115
81
  }
116
-
117
82
  export interface DimensionKeyDetail {
118
83
  Value?: string;
119
-
120
84
  Dimension?: string;
121
-
122
85
  Status?: DetailStatus | string;
123
86
  }
124
87
  export declare enum FeatureStatus {
@@ -129,19 +92,14 @@ export declare enum FeatureStatus {
129
92
  UNKNOWN = "UNKNOWN",
130
93
  UNSUPPORTED = "UNSUPPORTED",
131
94
  }
132
-
133
95
  export interface FeatureMetadata {
134
96
  Status?: FeatureStatus | string;
135
97
  }
136
98
  export interface GetDimensionKeyDetailsRequest {
137
99
  ServiceType: ServiceType | string | undefined;
138
-
139
100
  Identifier: string | undefined;
140
-
141
101
  Group: string | undefined;
142
-
143
102
  GroupIdentifier: string | undefined;
144
-
145
103
  RequestedDimensions?: string[];
146
104
  }
147
105
  export interface GetDimensionKeyDetailsResponse {
@@ -149,201 +107,141 @@ export interface GetDimensionKeyDetailsResponse {
149
107
  }
150
108
  export interface GetResourceMetadataRequest {
151
109
  ServiceType: ServiceType | string | undefined;
152
-
153
110
  Identifier: string | undefined;
154
111
  }
155
112
  export interface GetResourceMetadataResponse {
156
113
  Identifier?: string;
157
-
158
114
  Features?: Record<string, FeatureMetadata>;
159
115
  }
160
-
161
116
  export interface MetricQuery {
162
117
  Metric: string | undefined;
163
-
164
118
  GroupBy?: DimensionGroup;
165
-
166
119
  Filter?: Record<string, string>;
167
120
  }
168
121
  export interface GetResourceMetricsRequest {
169
122
  ServiceType: ServiceType | string | undefined;
170
-
171
123
  Identifier: string | undefined;
172
-
173
124
  MetricQueries: MetricQuery[] | undefined;
174
-
175
125
  StartTime: Date | undefined;
176
-
177
126
  EndTime: Date | undefined;
178
-
179
127
  PeriodInSeconds?: number;
180
-
181
128
  MaxResults?: number;
182
-
183
129
  NextToken?: string;
184
130
  }
185
-
186
131
  export interface ResponseResourceMetricKey {
187
132
  Metric: string | undefined;
188
-
189
133
  Dimensions?: Record<string, string>;
190
134
  }
191
-
192
135
  export interface MetricKeyDataPoints {
193
136
  Key?: ResponseResourceMetricKey;
194
-
195
137
  DataPoints?: DataPoint[];
196
138
  }
197
139
  export interface GetResourceMetricsResponse {
198
140
  AlignedStartTime?: Date;
199
-
200
141
  AlignedEndTime?: Date;
201
-
202
142
  Identifier?: string;
203
-
204
143
  MetricList?: MetricKeyDataPoints[];
205
-
206
144
  NextToken?: string;
207
145
  }
208
146
  export interface ListAvailableResourceDimensionsRequest {
209
147
  ServiceType: ServiceType | string | undefined;
210
-
211
148
  Identifier: string | undefined;
212
-
213
149
  Metrics: string[] | undefined;
214
-
215
150
  MaxResults?: number;
216
-
217
151
  NextToken?: string;
218
152
  }
219
-
220
153
  export interface MetricDimensionGroups {
221
154
  Metric?: string;
222
-
223
155
  Groups?: DimensionGroupDetail[];
224
156
  }
225
157
  export interface ListAvailableResourceDimensionsResponse {
226
158
  MetricDimensions?: MetricDimensionGroups[];
227
-
228
159
  NextToken?: string;
229
160
  }
230
161
  export interface ListAvailableResourceMetricsRequest {
231
162
  ServiceType: ServiceType | string | undefined;
232
-
233
163
  Identifier: string | undefined;
234
-
235
164
  MetricTypes: string[] | undefined;
236
-
237
165
  NextToken?: string;
238
-
239
166
  MaxResults?: number;
240
167
  }
241
-
242
168
  export interface ResponseResourceMetric {
243
169
  Metric?: string;
244
-
245
170
  Description?: string;
246
-
247
171
  Unit?: string;
248
172
  }
249
173
  export interface ListAvailableResourceMetricsResponse {
250
174
  Metrics?: ResponseResourceMetric[];
251
-
252
175
  NextToken?: string;
253
176
  }
254
-
255
177
  export declare const DataPointFilterSensitiveLog: (obj: DataPoint) => any;
256
-
257
178
  export declare const DimensionGroupFilterSensitiveLog: (
258
179
  obj: DimensionGroup
259
180
  ) => any;
260
-
261
181
  export declare const DescribeDimensionKeysRequestFilterSensitiveLog: (
262
182
  obj: DescribeDimensionKeysRequest
263
183
  ) => any;
264
-
265
184
  export declare const DimensionKeyDescriptionFilterSensitiveLog: (
266
185
  obj: DimensionKeyDescription
267
186
  ) => any;
268
-
269
187
  export declare const ResponsePartitionKeyFilterSensitiveLog: (
270
188
  obj: ResponsePartitionKey
271
189
  ) => any;
272
-
273
190
  export declare const DescribeDimensionKeysResponseFilterSensitiveLog: (
274
191
  obj: DescribeDimensionKeysResponse
275
192
  ) => any;
276
-
277
193
  export declare const DimensionDetailFilterSensitiveLog: (
278
194
  obj: DimensionDetail
279
195
  ) => any;
280
-
281
196
  export declare const DimensionGroupDetailFilterSensitiveLog: (
282
197
  obj: DimensionGroupDetail
283
198
  ) => any;
284
-
285
199
  export declare const DimensionKeyDetailFilterSensitiveLog: (
286
200
  obj: DimensionKeyDetail
287
201
  ) => any;
288
-
289
202
  export declare const FeatureMetadataFilterSensitiveLog: (
290
203
  obj: FeatureMetadata
291
204
  ) => any;
292
-
293
205
  export declare const GetDimensionKeyDetailsRequestFilterSensitiveLog: (
294
206
  obj: GetDimensionKeyDetailsRequest
295
207
  ) => any;
296
-
297
208
  export declare const GetDimensionKeyDetailsResponseFilterSensitiveLog: (
298
209
  obj: GetDimensionKeyDetailsResponse
299
210
  ) => any;
300
-
301
211
  export declare const GetResourceMetadataRequestFilterSensitiveLog: (
302
212
  obj: GetResourceMetadataRequest
303
213
  ) => any;
304
-
305
214
  export declare const GetResourceMetadataResponseFilterSensitiveLog: (
306
215
  obj: GetResourceMetadataResponse
307
216
  ) => any;
308
-
309
217
  export declare const MetricQueryFilterSensitiveLog: (obj: MetricQuery) => any;
310
-
311
218
  export declare const GetResourceMetricsRequestFilterSensitiveLog: (
312
219
  obj: GetResourceMetricsRequest
313
220
  ) => any;
314
-
315
221
  export declare const ResponseResourceMetricKeyFilterSensitiveLog: (
316
222
  obj: ResponseResourceMetricKey
317
223
  ) => any;
318
-
319
224
  export declare const MetricKeyDataPointsFilterSensitiveLog: (
320
225
  obj: MetricKeyDataPoints
321
226
  ) => any;
322
-
323
227
  export declare const GetResourceMetricsResponseFilterSensitiveLog: (
324
228
  obj: GetResourceMetricsResponse
325
229
  ) => any;
326
-
327
230
  export declare const ListAvailableResourceDimensionsRequestFilterSensitiveLog: (
328
231
  obj: ListAvailableResourceDimensionsRequest
329
232
  ) => any;
330
-
331
233
  export declare const MetricDimensionGroupsFilterSensitiveLog: (
332
234
  obj: MetricDimensionGroups
333
235
  ) => any;
334
-
335
236
  export declare const ListAvailableResourceDimensionsResponseFilterSensitiveLog: (
336
237
  obj: ListAvailableResourceDimensionsResponse
337
238
  ) => any;
338
-
339
239
  export declare const ListAvailableResourceMetricsRequestFilterSensitiveLog: (
340
240
  obj: ListAvailableResourceMetricsRequest
341
241
  ) => any;
342
-
343
242
  export declare const ResponseResourceMetricFilterSensitiveLog: (
344
243
  obj: ResponseResourceMetric
345
244
  ) => any;
346
-
347
245
  export declare const ListAvailableResourceMetricsResponseFilterSensitiveLog: (
348
246
  obj: ListAvailableResourceMetricsResponse
349
247
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { PIClientConfig } from "./PIClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: PIClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: PIClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { PIClientConfig } from "./PIClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: PIClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: PIClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,5 +1,4 @@
1
1
  import { PIClientConfig } from "./PIClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: PIClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: PIClientConfig) => {
52
51
  | undefined;
53
52
  signer?:
54
53
  | import("@aws-sdk/types").RequestSigner
55
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | ((
55
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
56
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
56
57
  | undefined;
57
58
  signingEscapePath?: boolean | undefined;
58
59
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { PIClientConfig } from "./PIClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: PIClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
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.170.0",
4
+ "version": "3.178.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",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.178.0",
23
+ "@aws-sdk/config-resolver": "3.178.0",
24
+ "@aws-sdk/credential-provider-node": "3.178.0",
25
+ "@aws-sdk/fetch-http-handler": "3.178.0",
26
+ "@aws-sdk/hash-node": "3.178.0",
27
+ "@aws-sdk/invalid-dependency": "3.178.0",
28
+ "@aws-sdk/middleware-content-length": "3.178.0",
29
+ "@aws-sdk/middleware-host-header": "3.178.0",
30
+ "@aws-sdk/middleware-logger": "3.178.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
32
+ "@aws-sdk/middleware-retry": "3.178.0",
33
+ "@aws-sdk/middleware-serde": "3.178.0",
34
+ "@aws-sdk/middleware-signing": "3.178.0",
35
+ "@aws-sdk/middleware-stack": "3.178.0",
36
+ "@aws-sdk/middleware-user-agent": "3.178.0",
37
+ "@aws-sdk/node-config-provider": "3.178.0",
38
+ "@aws-sdk/node-http-handler": "3.178.0",
39
+ "@aws-sdk/protocol-http": "3.178.0",
40
+ "@aws-sdk/smithy-client": "3.178.0",
41
+ "@aws-sdk/types": "3.178.0",
42
+ "@aws-sdk/url-parser": "3.178.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.178.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
50
+ "@aws-sdk/util-user-agent-node": "3.178.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1"