@aws-sdk/client-pi 3.50.0 → 3.53.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.
Files changed (38) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/PIServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +44 -1
  5. package/dist-cjs/protocols/Aws_json1_1.js +73 -193
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/PIServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +41 -1
  9. package/dist-es/protocols/Aws_json1_1.js +140 -212
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/PIServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +23 -10
  13. package/dist-types/ts3.4/PI.d.ts +35 -0
  14. package/dist-types/ts3.4/PIClient.d.ts +79 -0
  15. package/dist-types/ts3.4/commands/DescribeDimensionKeysCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetDimensionKeyDetailsCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetResourceMetadataCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetResourceMetricsCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListAvailableResourceDimensionsCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListAvailableResourceMetricsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  22. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  23. package/dist-types/ts3.4/index.d.ts +6 -0
  24. package/dist-types/ts3.4/models/PIServiceException.d.ts +6 -0
  25. package/dist-types/ts3.4/models/index.d.ts +1 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +386 -0
  27. package/dist-types/ts3.4/pagination/DescribeDimensionKeysPaginator.d.ts +4 -0
  28. package/dist-types/ts3.4/pagination/GetResourceMetricsPaginator.d.ts +4 -0
  29. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  30. package/dist-types/ts3.4/pagination/ListAvailableResourceDimensionsPaginator.d.ts +4 -0
  31. package/dist-types/ts3.4/pagination/ListAvailableResourceMetricsPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  33. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +20 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  38. package/package.json +33 -33
@@ -1,4 +1,5 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { PIServiceException as __BaseException } from "./PIServiceException";
2
3
  /**
3
4
  * <p>A timestamp, and a single numerical value, which together represent a measurement at a particular point in time.</p>
4
5
  */
@@ -411,26 +412,38 @@ export declare namespace DescribeDimensionKeysResponse {
411
412
  /**
412
413
  * <p>The request failed due to an unknown error.</p>
413
414
  */
414
- export interface InternalServiceError extends __SmithyException, $MetadataBearer {
415
- name: "InternalServiceError";
416
- $fault: "server";
415
+ export declare class InternalServiceError extends __BaseException {
416
+ readonly name: "InternalServiceError";
417
+ readonly $fault: "server";
417
418
  Message?: string;
419
+ /**
420
+ * @internal
421
+ */
422
+ constructor(opts: __ExceptionOptionType<InternalServiceError, __BaseException>);
418
423
  }
419
424
  /**
420
425
  * <p>One of the arguments provided is invalid for this request.</p>
421
426
  */
422
- export interface InvalidArgumentException extends __SmithyException, $MetadataBearer {
423
- name: "InvalidArgumentException";
424
- $fault: "client";
427
+ export declare class InvalidArgumentException extends __BaseException {
428
+ readonly name: "InvalidArgumentException";
429
+ readonly $fault: "client";
425
430
  Message?: string;
431
+ /**
432
+ * @internal
433
+ */
434
+ constructor(opts: __ExceptionOptionType<InvalidArgumentException, __BaseException>);
426
435
  }
427
436
  /**
428
437
  * <p>The user is not authorized to perform this request.</p>
429
438
  */
430
- export interface NotAuthorizedException extends __SmithyException, $MetadataBearer {
431
- name: "NotAuthorizedException";
432
- $fault: "client";
439
+ export declare class NotAuthorizedException extends __BaseException {
440
+ readonly name: "NotAuthorizedException";
441
+ readonly $fault: "client";
433
442
  Message?: string;
443
+ /**
444
+ * @internal
445
+ */
446
+ constructor(opts: __ExceptionOptionType<NotAuthorizedException, __BaseException>);
434
447
  }
435
448
  export declare enum DetailStatus {
436
449
  AVAILABLE = "AVAILABLE",
@@ -0,0 +1,35 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { DescribeDimensionKeysCommandInput, DescribeDimensionKeysCommandOutput } from "./commands/DescribeDimensionKeysCommand";
3
+ import { GetDimensionKeyDetailsCommandInput, GetDimensionKeyDetailsCommandOutput } from "./commands/GetDimensionKeyDetailsCommand";
4
+ import { GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput } from "./commands/GetResourceMetadataCommand";
5
+ import { GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput } from "./commands/GetResourceMetricsCommand";
6
+ import { ListAvailableResourceDimensionsCommandInput, ListAvailableResourceDimensionsCommandOutput } from "./commands/ListAvailableResourceDimensionsCommand";
7
+ import { ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput } from "./commands/ListAvailableResourceMetricsCommand";
8
+ import { PIClient } from "./PIClient";
9
+
10
+ export declare class PI extends PIClient {
11
+
12
+ describeDimensionKeys(args: DescribeDimensionKeysCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDimensionKeysCommandOutput>;
13
+ describeDimensionKeys(args: DescribeDimensionKeysCommandInput, cb: (err: any, data?: DescribeDimensionKeysCommandOutput) => void): void;
14
+ describeDimensionKeys(args: DescribeDimensionKeysCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDimensionKeysCommandOutput) => void): void;
15
+
16
+ getDimensionKeyDetails(args: GetDimensionKeyDetailsCommandInput, options?: __HttpHandlerOptions): Promise<GetDimensionKeyDetailsCommandOutput>;
17
+ getDimensionKeyDetails(args: GetDimensionKeyDetailsCommandInput, cb: (err: any, data?: GetDimensionKeyDetailsCommandOutput) => void): void;
18
+ getDimensionKeyDetails(args: GetDimensionKeyDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDimensionKeyDetailsCommandOutput) => void): void;
19
+
20
+ getResourceMetadata(args: GetResourceMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceMetadataCommandOutput>;
21
+ getResourceMetadata(args: GetResourceMetadataCommandInput, cb: (err: any, data?: GetResourceMetadataCommandOutput) => void): void;
22
+ getResourceMetadata(args: GetResourceMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceMetadataCommandOutput) => void): void;
23
+
24
+ getResourceMetrics(args: GetResourceMetricsCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceMetricsCommandOutput>;
25
+ getResourceMetrics(args: GetResourceMetricsCommandInput, cb: (err: any, data?: GetResourceMetricsCommandOutput) => void): void;
26
+ getResourceMetrics(args: GetResourceMetricsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceMetricsCommandOutput) => void): void;
27
+
28
+ listAvailableResourceDimensions(args: ListAvailableResourceDimensionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAvailableResourceDimensionsCommandOutput>;
29
+ listAvailableResourceDimensions(args: ListAvailableResourceDimensionsCommandInput, cb: (err: any, data?: ListAvailableResourceDimensionsCommandOutput) => void): void;
30
+ listAvailableResourceDimensions(args: ListAvailableResourceDimensionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAvailableResourceDimensionsCommandOutput) => void): void;
31
+
32
+ listAvailableResourceMetrics(args: ListAvailableResourceMetricsCommandInput, options?: __HttpHandlerOptions): Promise<ListAvailableResourceMetricsCommandOutput>;
33
+ listAvailableResourceMetrics(args: ListAvailableResourceMetricsCommandInput, cb: (err: any, data?: ListAvailableResourceMetricsCommandOutput) => void): void;
34
+ listAvailableResourceMetrics(args: ListAvailableResourceMetricsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAvailableResourceMetricsCommandOutput) => void): void;
35
+ }
@@ -0,0 +1,79 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { DescribeDimensionKeysCommandInput, DescribeDimensionKeysCommandOutput } from "./commands/DescribeDimensionKeysCommand";
10
+ import { GetDimensionKeyDetailsCommandInput, GetDimensionKeyDetailsCommandOutput } from "./commands/GetDimensionKeyDetailsCommand";
11
+ import { GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput } from "./commands/GetResourceMetadataCommand";
12
+ import { GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput } from "./commands/GetResourceMetricsCommand";
13
+ import { ListAvailableResourceDimensionsCommandInput, ListAvailableResourceDimensionsCommandOutput } from "./commands/ListAvailableResourceDimensionsCommand";
14
+ import { ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput } from "./commands/ListAvailableResourceMetricsCommand";
15
+ export declare type ServiceInputTypes = DescribeDimensionKeysCommandInput | GetDimensionKeyDetailsCommandInput | GetResourceMetadataCommandInput | GetResourceMetricsCommandInput | ListAvailableResourceDimensionsCommandInput | ListAvailableResourceMetricsCommandInput;
16
+ export declare type ServiceOutputTypes = DescribeDimensionKeysCommandOutput | GetDimensionKeyDetailsCommandOutput | GetResourceMetadataCommandOutput | GetResourceMetricsCommandOutput | ListAvailableResourceDimensionsCommandOutput | ListAvailableResourceMetricsCommandOutput;
17
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
18
+
19
+ requestHandler?: __HttpHandler;
20
+
21
+ sha256?: __HashConstructor;
22
+
23
+ urlParser?: __UrlParser;
24
+
25
+ bodyLengthChecker?: (body: any) => number | undefined;
26
+
27
+ streamCollector?: __StreamCollector;
28
+
29
+ base64Decoder?: __Decoder;
30
+
31
+ base64Encoder?: __Encoder;
32
+
33
+ utf8Decoder?: __Decoder;
34
+
35
+ utf8Encoder?: __Encoder;
36
+
37
+ runtime?: string;
38
+
39
+ disableHostPrefix?: boolean;
40
+
41
+ maxAttempts?: number | __Provider<number>;
42
+
43
+ retryMode?: string | __Provider<string>;
44
+
45
+ logger?: __Logger;
46
+
47
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
48
+
49
+ useFipsEndpoint?: boolean | __Provider<boolean>;
50
+
51
+ serviceId?: string;
52
+
53
+ region?: string | __Provider<string>;
54
+
55
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
56
+
57
+ regionInfoProvider?: RegionInfoProvider;
58
+
59
+ defaultUserAgentProvider?: Provider<__UserAgent>;
60
+
61
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
62
+ }
63
+ declare type PIClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
64
+
65
+ export interface PIClientConfig extends PIClientConfigType {
66
+ }
67
+ declare type PIClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
68
+
69
+ export interface PIClientResolvedConfig extends PIClientResolvedConfigType {
70
+ }
71
+
72
+ export declare class PIClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, PIClientResolvedConfig> {
73
+
74
+ readonly config: PIClientResolvedConfig;
75
+ constructor(configuration: PIClientConfig);
76
+
77
+ destroy(): void;
78
+ }
79
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DescribeDimensionKeysRequest, DescribeDimensionKeysResponse } from "../models/models_0";
4
+ import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient";
5
+ export interface DescribeDimensionKeysCommandInput extends DescribeDimensionKeysRequest {
6
+ }
7
+ export interface DescribeDimensionKeysCommandOutput extends DescribeDimensionKeysResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeDimensionKeysCommand extends $Command<DescribeDimensionKeysCommandInput, DescribeDimensionKeysCommandOutput, PIClientResolvedConfig> {
11
+ readonly input: DescribeDimensionKeysCommandInput;
12
+ constructor(input: DescribeDimensionKeysCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDimensionKeysCommandInput, DescribeDimensionKeysCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetDimensionKeyDetailsRequest, GetDimensionKeyDetailsResponse } from "../models/models_0";
4
+ import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient";
5
+ export interface GetDimensionKeyDetailsCommandInput extends GetDimensionKeyDetailsRequest {
6
+ }
7
+ export interface GetDimensionKeyDetailsCommandOutput extends GetDimensionKeyDetailsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetDimensionKeyDetailsCommand extends $Command<GetDimensionKeyDetailsCommandInput, GetDimensionKeyDetailsCommandOutput, PIClientResolvedConfig> {
11
+ readonly input: GetDimensionKeyDetailsCommandInput;
12
+ constructor(input: GetDimensionKeyDetailsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDimensionKeyDetailsCommandInput, GetDimensionKeyDetailsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetResourceMetadataRequest, GetResourceMetadataResponse } from "../models/models_0";
4
+ import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient";
5
+ export interface GetResourceMetadataCommandInput extends GetResourceMetadataRequest {
6
+ }
7
+ export interface GetResourceMetadataCommandOutput extends GetResourceMetadataResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetResourceMetadataCommand extends $Command<GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput, PIClientResolvedConfig> {
11
+ readonly input: GetResourceMetadataCommandInput;
12
+ constructor(input: GetResourceMetadataCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetResourceMetricsRequest, GetResourceMetricsResponse } from "../models/models_0";
4
+ import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient";
5
+ export interface GetResourceMetricsCommandInput extends GetResourceMetricsRequest {
6
+ }
7
+ export interface GetResourceMetricsCommandOutput extends GetResourceMetricsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetResourceMetricsCommand extends $Command<GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput, PIClientResolvedConfig> {
11
+ readonly input: GetResourceMetricsCommandInput;
12
+ constructor(input: GetResourceMetricsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListAvailableResourceDimensionsRequest, ListAvailableResourceDimensionsResponse } from "../models/models_0";
4
+ import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient";
5
+ export interface ListAvailableResourceDimensionsCommandInput extends ListAvailableResourceDimensionsRequest {
6
+ }
7
+ export interface ListAvailableResourceDimensionsCommandOutput extends ListAvailableResourceDimensionsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListAvailableResourceDimensionsCommand extends $Command<ListAvailableResourceDimensionsCommandInput, ListAvailableResourceDimensionsCommandOutput, PIClientResolvedConfig> {
11
+ readonly input: ListAvailableResourceDimensionsCommandInput;
12
+ constructor(input: ListAvailableResourceDimensionsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAvailableResourceDimensionsCommandInput, ListAvailableResourceDimensionsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ListAvailableResourceMetricsRequest, ListAvailableResourceMetricsResponse } from "../models/models_0";
4
+ import { PIClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PIClient";
5
+ export interface ListAvailableResourceMetricsCommandInput extends ListAvailableResourceMetricsRequest {
6
+ }
7
+ export interface ListAvailableResourceMetricsCommandOutput extends ListAvailableResourceMetricsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListAvailableResourceMetricsCommand extends $Command<ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput, PIClientResolvedConfig> {
11
+ readonly input: ListAvailableResourceMetricsCommandInput;
12
+ constructor(input: ListAvailableResourceMetricsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PIClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAvailableResourceMetricsCommandInput, ListAvailableResourceMetricsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,6 @@
1
+ export * from "./DescribeDimensionKeysCommand";
2
+ export * from "./GetDimensionKeyDetailsCommand";
3
+ export * from "./GetResourceMetadataCommand";
4
+ export * from "./GetResourceMetricsCommand";
5
+ export * from "./ListAvailableResourceDimensionsCommand";
6
+ export * from "./ListAvailableResourceMetricsCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./PI";
2
+ export * from "./PIClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { PIServiceException } from "./models/PIServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class PIServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";