@aws-sdk/client-pi 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/PI.d.ts +112 -35
- package/dist-types/ts3.4/PIClient.d.ts +164 -79
- package/dist-types/ts3.4/commands/DescribeDimensionKeysCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetDimensionKeyDetailsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetResourceMetadataCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetResourceMetricsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListAvailableResourceDimensionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAvailableResourceMetricsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +6 -6
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/PIServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +349 -322
- package/dist-types/ts3.4/pagination/DescribeDimensionKeysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/GetResourceMetricsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListAvailableResourceDimensionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAvailableResourceMetricsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +77 -20
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-pi
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-pi
|
package/dist-types/ts3.4/PI.d.ts
CHANGED
|
@@ -1,35 +1,112 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeDimensionKeysCommandInput,
|
|
4
|
+
DescribeDimensionKeysCommandOutput,
|
|
5
|
+
} from "./commands/DescribeDimensionKeysCommand";
|
|
6
|
+
import {
|
|
7
|
+
GetDimensionKeyDetailsCommandInput,
|
|
8
|
+
GetDimensionKeyDetailsCommandOutput,
|
|
9
|
+
} from "./commands/GetDimensionKeyDetailsCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetResourceMetadataCommandInput,
|
|
12
|
+
GetResourceMetadataCommandOutput,
|
|
13
|
+
} from "./commands/GetResourceMetadataCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetResourceMetricsCommandInput,
|
|
16
|
+
GetResourceMetricsCommandOutput,
|
|
17
|
+
} from "./commands/GetResourceMetricsCommand";
|
|
18
|
+
import {
|
|
19
|
+
ListAvailableResourceDimensionsCommandInput,
|
|
20
|
+
ListAvailableResourceDimensionsCommandOutput,
|
|
21
|
+
} from "./commands/ListAvailableResourceDimensionsCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListAvailableResourceMetricsCommandInput,
|
|
24
|
+
ListAvailableResourceMetricsCommandOutput,
|
|
25
|
+
} from "./commands/ListAvailableResourceMetricsCommand";
|
|
26
|
+
import { PIClient } from "./PIClient";
|
|
27
|
+
|
|
28
|
+
export declare class PI extends PIClient {
|
|
29
|
+
describeDimensionKeys(
|
|
30
|
+
args: DescribeDimensionKeysCommandInput,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Promise<DescribeDimensionKeysCommandOutput>;
|
|
33
|
+
describeDimensionKeys(
|
|
34
|
+
args: DescribeDimensionKeysCommandInput,
|
|
35
|
+
cb: (err: any, data?: DescribeDimensionKeysCommandOutput) => void
|
|
36
|
+
): void;
|
|
37
|
+
describeDimensionKeys(
|
|
38
|
+
args: DescribeDimensionKeysCommandInput,
|
|
39
|
+
options: __HttpHandlerOptions,
|
|
40
|
+
cb: (err: any, data?: DescribeDimensionKeysCommandOutput) => void
|
|
41
|
+
): void;
|
|
42
|
+
|
|
43
|
+
getDimensionKeyDetails(
|
|
44
|
+
args: GetDimensionKeyDetailsCommandInput,
|
|
45
|
+
options?: __HttpHandlerOptions
|
|
46
|
+
): Promise<GetDimensionKeyDetailsCommandOutput>;
|
|
47
|
+
getDimensionKeyDetails(
|
|
48
|
+
args: GetDimensionKeyDetailsCommandInput,
|
|
49
|
+
cb: (err: any, data?: GetDimensionKeyDetailsCommandOutput) => void
|
|
50
|
+
): void;
|
|
51
|
+
getDimensionKeyDetails(
|
|
52
|
+
args: GetDimensionKeyDetailsCommandInput,
|
|
53
|
+
options: __HttpHandlerOptions,
|
|
54
|
+
cb: (err: any, data?: GetDimensionKeyDetailsCommandOutput) => void
|
|
55
|
+
): void;
|
|
56
|
+
|
|
57
|
+
getResourceMetadata(
|
|
58
|
+
args: GetResourceMetadataCommandInput,
|
|
59
|
+
options?: __HttpHandlerOptions
|
|
60
|
+
): Promise<GetResourceMetadataCommandOutput>;
|
|
61
|
+
getResourceMetadata(
|
|
62
|
+
args: GetResourceMetadataCommandInput,
|
|
63
|
+
cb: (err: any, data?: GetResourceMetadataCommandOutput) => void
|
|
64
|
+
): void;
|
|
65
|
+
getResourceMetadata(
|
|
66
|
+
args: GetResourceMetadataCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (err: any, data?: GetResourceMetadataCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
|
|
71
|
+
getResourceMetrics(
|
|
72
|
+
args: GetResourceMetricsCommandInput,
|
|
73
|
+
options?: __HttpHandlerOptions
|
|
74
|
+
): Promise<GetResourceMetricsCommandOutput>;
|
|
75
|
+
getResourceMetrics(
|
|
76
|
+
args: GetResourceMetricsCommandInput,
|
|
77
|
+
cb: (err: any, data?: GetResourceMetricsCommandOutput) => void
|
|
78
|
+
): void;
|
|
79
|
+
getResourceMetrics(
|
|
80
|
+
args: GetResourceMetricsCommandInput,
|
|
81
|
+
options: __HttpHandlerOptions,
|
|
82
|
+
cb: (err: any, data?: GetResourceMetricsCommandOutput) => void
|
|
83
|
+
): void;
|
|
84
|
+
|
|
85
|
+
listAvailableResourceDimensions(
|
|
86
|
+
args: ListAvailableResourceDimensionsCommandInput,
|
|
87
|
+
options?: __HttpHandlerOptions
|
|
88
|
+
): Promise<ListAvailableResourceDimensionsCommandOutput>;
|
|
89
|
+
listAvailableResourceDimensions(
|
|
90
|
+
args: ListAvailableResourceDimensionsCommandInput,
|
|
91
|
+
cb: (err: any, data?: ListAvailableResourceDimensionsCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
listAvailableResourceDimensions(
|
|
94
|
+
args: ListAvailableResourceDimensionsCommandInput,
|
|
95
|
+
options: __HttpHandlerOptions,
|
|
96
|
+
cb: (err: any, data?: ListAvailableResourceDimensionsCommandOutput) => void
|
|
97
|
+
): void;
|
|
98
|
+
|
|
99
|
+
listAvailableResourceMetrics(
|
|
100
|
+
args: ListAvailableResourceMetricsCommandInput,
|
|
101
|
+
options?: __HttpHandlerOptions
|
|
102
|
+
): Promise<ListAvailableResourceMetricsCommandOutput>;
|
|
103
|
+
listAvailableResourceMetrics(
|
|
104
|
+
args: ListAvailableResourceMetricsCommandInput,
|
|
105
|
+
cb: (err: any, data?: ListAvailableResourceMetricsCommandOutput) => void
|
|
106
|
+
): void;
|
|
107
|
+
listAvailableResourceMetrics(
|
|
108
|
+
args: ListAvailableResourceMetricsCommandInput,
|
|
109
|
+
options: __HttpHandlerOptions,
|
|
110
|
+
cb: (err: any, data?: ListAvailableResourceMetricsCommandOutput) => void
|
|
111
|
+
): void;
|
|
112
|
+
}
|
|
@@ -1,79 +1,164 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
export
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
DescribeDimensionKeysCommandInput,
|
|
47
|
+
DescribeDimensionKeysCommandOutput,
|
|
48
|
+
} from "./commands/DescribeDimensionKeysCommand";
|
|
49
|
+
import {
|
|
50
|
+
GetDimensionKeyDetailsCommandInput,
|
|
51
|
+
GetDimensionKeyDetailsCommandOutput,
|
|
52
|
+
} from "./commands/GetDimensionKeyDetailsCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetResourceMetadataCommandInput,
|
|
55
|
+
GetResourceMetadataCommandOutput,
|
|
56
|
+
} from "./commands/GetResourceMetadataCommand";
|
|
57
|
+
import {
|
|
58
|
+
GetResourceMetricsCommandInput,
|
|
59
|
+
GetResourceMetricsCommandOutput,
|
|
60
|
+
} from "./commands/GetResourceMetricsCommand";
|
|
61
|
+
import {
|
|
62
|
+
ListAvailableResourceDimensionsCommandInput,
|
|
63
|
+
ListAvailableResourceDimensionsCommandOutput,
|
|
64
|
+
} from "./commands/ListAvailableResourceDimensionsCommand";
|
|
65
|
+
import {
|
|
66
|
+
ListAvailableResourceMetricsCommandInput,
|
|
67
|
+
ListAvailableResourceMetricsCommandOutput,
|
|
68
|
+
} from "./commands/ListAvailableResourceMetricsCommand";
|
|
69
|
+
export declare type ServiceInputTypes =
|
|
70
|
+
| DescribeDimensionKeysCommandInput
|
|
71
|
+
| GetDimensionKeyDetailsCommandInput
|
|
72
|
+
| GetResourceMetadataCommandInput
|
|
73
|
+
| GetResourceMetricsCommandInput
|
|
74
|
+
| ListAvailableResourceDimensionsCommandInput
|
|
75
|
+
| ListAvailableResourceMetricsCommandInput;
|
|
76
|
+
export declare type ServiceOutputTypes =
|
|
77
|
+
| DescribeDimensionKeysCommandOutput
|
|
78
|
+
| GetDimensionKeyDetailsCommandOutput
|
|
79
|
+
| GetResourceMetadataCommandOutput
|
|
80
|
+
| GetResourceMetricsCommandOutput
|
|
81
|
+
| ListAvailableResourceDimensionsCommandOutput
|
|
82
|
+
| ListAvailableResourceMetricsCommandOutput;
|
|
83
|
+
export interface ClientDefaults
|
|
84
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
85
|
+
requestHandler?: __HttpHandler;
|
|
86
|
+
|
|
87
|
+
sha256?: __HashConstructor;
|
|
88
|
+
|
|
89
|
+
urlParser?: __UrlParser;
|
|
90
|
+
|
|
91
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
92
|
+
|
|
93
|
+
streamCollector?: __StreamCollector;
|
|
94
|
+
|
|
95
|
+
base64Decoder?: __Decoder;
|
|
96
|
+
|
|
97
|
+
base64Encoder?: __Encoder;
|
|
98
|
+
|
|
99
|
+
utf8Decoder?: __Decoder;
|
|
100
|
+
|
|
101
|
+
utf8Encoder?: __Encoder;
|
|
102
|
+
|
|
103
|
+
runtime?: string;
|
|
104
|
+
|
|
105
|
+
disableHostPrefix?: boolean;
|
|
106
|
+
|
|
107
|
+
maxAttempts?: number | __Provider<number>;
|
|
108
|
+
|
|
109
|
+
retryMode?: string | __Provider<string>;
|
|
110
|
+
|
|
111
|
+
logger?: __Logger;
|
|
112
|
+
|
|
113
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
114
|
+
|
|
115
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
116
|
+
|
|
117
|
+
serviceId?: string;
|
|
118
|
+
|
|
119
|
+
region?: string | __Provider<string>;
|
|
120
|
+
|
|
121
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
122
|
+
|
|
123
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
124
|
+
|
|
125
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
126
|
+
|
|
127
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
128
|
+
}
|
|
129
|
+
declare type PIClientConfigType = Partial<
|
|
130
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
131
|
+
> &
|
|
132
|
+
ClientDefaults &
|
|
133
|
+
RegionInputConfig &
|
|
134
|
+
EndpointsInputConfig &
|
|
135
|
+
RetryInputConfig &
|
|
136
|
+
HostHeaderInputConfig &
|
|
137
|
+
AwsAuthInputConfig &
|
|
138
|
+
UserAgentInputConfig;
|
|
139
|
+
|
|
140
|
+
export interface PIClientConfig extends PIClientConfigType {}
|
|
141
|
+
declare type PIClientResolvedConfigType =
|
|
142
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
143
|
+
Required<ClientDefaults> &
|
|
144
|
+
RegionResolvedConfig &
|
|
145
|
+
EndpointsResolvedConfig &
|
|
146
|
+
RetryResolvedConfig &
|
|
147
|
+
HostHeaderResolvedConfig &
|
|
148
|
+
AwsAuthResolvedConfig &
|
|
149
|
+
UserAgentResolvedConfig;
|
|
150
|
+
|
|
151
|
+
export interface PIClientResolvedConfig extends PIClientResolvedConfigType {}
|
|
152
|
+
|
|
153
|
+
export declare class PIClient extends __Client<
|
|
154
|
+
__HttpHandlerOptions,
|
|
155
|
+
ServiceInputTypes,
|
|
156
|
+
ServiceOutputTypes,
|
|
157
|
+
PIClientResolvedConfig
|
|
158
|
+
> {
|
|
159
|
+
readonly config: PIClientResolvedConfig;
|
|
160
|
+
constructor(configuration: PIClientConfig);
|
|
161
|
+
|
|
162
|
+
destroy(): void;
|
|
163
|
+
}
|
|
164
|
+
export {};
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DescribeDimensionKeysRequest,
|
|
10
|
+
DescribeDimensionKeysResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
PIClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../PIClient";
|
|
17
|
+
export interface DescribeDimensionKeysCommandInput
|
|
18
|
+
extends DescribeDimensionKeysRequest {}
|
|
19
|
+
export interface DescribeDimensionKeysCommandOutput
|
|
20
|
+
extends DescribeDimensionKeysResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeDimensionKeysCommand extends $Command<
|
|
24
|
+
DescribeDimensionKeysCommandInput,
|
|
25
|
+
DescribeDimensionKeysCommandOutput,
|
|
26
|
+
PIClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeDimensionKeysCommandInput;
|
|
29
|
+
constructor(input: DescribeDimensionKeysCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PIClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeDimensionKeysCommandInput,
|
|
37
|
+
DescribeDimensionKeysCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetDimensionKeyDetailsRequest,
|
|
10
|
+
GetDimensionKeyDetailsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
PIClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../PIClient";
|
|
17
|
+
export interface GetDimensionKeyDetailsCommandInput
|
|
18
|
+
extends GetDimensionKeyDetailsRequest {}
|
|
19
|
+
export interface GetDimensionKeyDetailsCommandOutput
|
|
20
|
+
extends GetDimensionKeyDetailsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetDimensionKeyDetailsCommand extends $Command<
|
|
24
|
+
GetDimensionKeyDetailsCommandInput,
|
|
25
|
+
GetDimensionKeyDetailsCommandOutput,
|
|
26
|
+
PIClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDimensionKeyDetailsCommandInput;
|
|
29
|
+
constructor(input: GetDimensionKeyDetailsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PIClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetDimensionKeyDetailsCommandInput,
|
|
37
|
+
GetDimensionKeyDetailsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetResourceMetadataRequest,
|
|
10
|
+
GetResourceMetadataResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
PIClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../PIClient";
|
|
17
|
+
export interface GetResourceMetadataCommandInput
|
|
18
|
+
extends GetResourceMetadataRequest {}
|
|
19
|
+
export interface GetResourceMetadataCommandOutput
|
|
20
|
+
extends GetResourceMetadataResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetResourceMetadataCommand extends $Command<
|
|
24
|
+
GetResourceMetadataCommandInput,
|
|
25
|
+
GetResourceMetadataCommandOutput,
|
|
26
|
+
PIClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetResourceMetadataCommandInput;
|
|
29
|
+
constructor(input: GetResourceMetadataCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PIClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetResourceMetadataCommandInput, GetResourceMetadataCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetResourceMetricsRequest,
|
|
10
|
+
GetResourceMetricsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
PIClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../PIClient";
|
|
17
|
+
export interface GetResourceMetricsCommandInput
|
|
18
|
+
extends GetResourceMetricsRequest {}
|
|
19
|
+
export interface GetResourceMetricsCommandOutput
|
|
20
|
+
extends GetResourceMetricsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetResourceMetricsCommand extends $Command<
|
|
24
|
+
GetResourceMetricsCommandInput,
|
|
25
|
+
GetResourceMetricsCommandOutput,
|
|
26
|
+
PIClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetResourceMetricsCommandInput;
|
|
29
|
+
constructor(input: GetResourceMetricsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: PIClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetResourceMetricsCommandInput, GetResourceMetricsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|