@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.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/PIServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +44 -1
- package/dist-cjs/protocols/Aws_json1_1.js +73 -193
- package/dist-es/index.js +1 -0
- package/dist-es/models/PIServiceException.js +12 -0
- package/dist-es/models/models_0.js +41 -1
- package/dist-es/protocols/Aws_json1_1.js +140 -212
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/PIServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +23 -10
- package/dist-types/ts3.4/PI.d.ts +35 -0
- package/dist-types/ts3.4/PIClient.d.ts +79 -0
- package/dist-types/ts3.4/commands/DescribeDimensionKeysCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDimensionKeyDetailsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceMetadataCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetResourceMetricsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAvailableResourceDimensionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAvailableResourceMetricsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/PIServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +386 -0
- package/dist-types/ts3.4/pagination/DescribeDimensionKeysPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetResourceMetricsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAvailableResourceDimensionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListAvailableResourceMetricsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +20 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
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
|
|
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
|
|
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
|
|
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 @@
|
|
|
1
|
+
export * from "./models_0";
|