@aws-sdk/client-bcm-dashboards 3.870.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/LICENSE +201 -0
- package/README.md +277 -0
- package/dist-cjs/BCMDashboards.js +29 -0
- package/dist-cjs/BCMDashboardsClient.js +52 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateDashboardCommand.js +26 -0
- package/dist-cjs/commands/DeleteDashboardCommand.js +26 -0
- package/dist-cjs/commands/GetDashboardCommand.js +26 -0
- package/dist-cjs/commands/GetResourcePolicyCommand.js +26 -0
- package/dist-cjs/commands/ListDashboardsCommand.js +26 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
- package/dist-cjs/commands/TagResourceCommand.js +26 -0
- package/dist-cjs/commands/UntagResourceCommand.js +26 -0
- package/dist-cjs/commands/UpdateDashboardCommand.js +26 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/endpoint/EndpointParameters.js +15 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/BCMDashboardsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +181 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDashboardsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +5 -0
- package/dist-cjs/protocols/Aws_json1_0.js +587 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +13 -0
- package/dist-es/BCMDashboards.js +25 -0
- package/dist-es/BCMDashboardsClient.js +48 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateDashboardCommand.js +22 -0
- package/dist-es/commands/DeleteDashboardCommand.js +22 -0
- package/dist-es/commands/GetDashboardCommand.js +22 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +22 -0
- package/dist-es/commands/ListDashboardsCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +22 -0
- package/dist-es/commands/UntagResourceCommand.js +22 -0
- package/dist-es/commands/UpdateDashboardCommand.js +22 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/BCMDashboardsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +172 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDashboardsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_0.js +566 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-types/BCMDashboards.d.ts +74 -0
- package/dist-types/BCMDashboardsClient.d.ts +196 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateDashboardCommand.d.ts +328 -0
- package/dist-types/commands/DeleteDashboardCommand.d.ts +99 -0
- package/dist-types/commands/GetDashboardCommand.d.ts +332 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +104 -0
- package/dist-types/commands/ListDashboardsCommand.d.ts +117 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +113 -0
- package/dist-types/commands/TagResourceCommand.d.ts +107 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +101 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +324 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +14 -0
- package/dist-types/models/BCMDashboardsServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1006 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDashboardsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +83 -0
- package/dist-types/runtimeConfig.browser.d.ts +50 -0
- package/dist-types/runtimeConfig.d.ts +50 -0
- package/dist-types/runtimeConfig.native.d.ts +49 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/BCMDashboards.d.ts +161 -0
- package/dist-types/ts3.4/BCMDashboardsClient.d.ts +174 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateDashboardCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteDashboardCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetDashboardCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDashboardsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateDashboardCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/BCMDashboardsServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +381 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDashboardsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +113 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +99 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { BCMDashboardsClient } from "../BCMDashboardsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface BCMDashboardsPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: BCMDashboardsClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDashboardsCommandInput, ListDashboardsCommandOutput } from "../commands/ListDashboardsCommand";
|
|
3
|
+
import { BCMDashboardsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDashboards: (config: BCMDashboardsPaginationConfiguration, input: ListDashboardsCommandInput, ...rest: any[]) => Paginator<ListDashboardsCommandOutput>;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateDashboardCommandInput, CreateDashboardCommandOutput } from "../commands/CreateDashboardCommand";
|
|
4
|
+
import { DeleteDashboardCommandInput, DeleteDashboardCommandOutput } from "../commands/DeleteDashboardCommand";
|
|
5
|
+
import { GetDashboardCommandInput, GetDashboardCommandOutput } from "../commands/GetDashboardCommand";
|
|
6
|
+
import { GetResourcePolicyCommandInput, GetResourcePolicyCommandOutput } from "../commands/GetResourcePolicyCommand";
|
|
7
|
+
import { ListDashboardsCommandInput, ListDashboardsCommandOutput } from "../commands/ListDashboardsCommand";
|
|
8
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
9
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
10
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
11
|
+
import { UpdateDashboardCommandInput, UpdateDashboardCommandOutput } from "../commands/UpdateDashboardCommand";
|
|
12
|
+
/**
|
|
13
|
+
* serializeAws_json1_0CreateDashboardCommand
|
|
14
|
+
*/
|
|
15
|
+
export declare const se_CreateDashboardCommand: (input: CreateDashboardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
16
|
+
/**
|
|
17
|
+
* serializeAws_json1_0DeleteDashboardCommand
|
|
18
|
+
*/
|
|
19
|
+
export declare const se_DeleteDashboardCommand: (input: DeleteDashboardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
+
/**
|
|
21
|
+
* serializeAws_json1_0GetDashboardCommand
|
|
22
|
+
*/
|
|
23
|
+
export declare const se_GetDashboardCommand: (input: GetDashboardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
/**
|
|
25
|
+
* serializeAws_json1_0GetResourcePolicyCommand
|
|
26
|
+
*/
|
|
27
|
+
export declare const se_GetResourcePolicyCommand: (input: GetResourcePolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
/**
|
|
29
|
+
* serializeAws_json1_0ListDashboardsCommand
|
|
30
|
+
*/
|
|
31
|
+
export declare const se_ListDashboardsCommand: (input: ListDashboardsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
/**
|
|
33
|
+
* serializeAws_json1_0ListTagsForResourceCommand
|
|
34
|
+
*/
|
|
35
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
/**
|
|
37
|
+
* serializeAws_json1_0TagResourceCommand
|
|
38
|
+
*/
|
|
39
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
/**
|
|
41
|
+
* serializeAws_json1_0UntagResourceCommand
|
|
42
|
+
*/
|
|
43
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
/**
|
|
45
|
+
* serializeAws_json1_0UpdateDashboardCommand
|
|
46
|
+
*/
|
|
47
|
+
export declare const se_UpdateDashboardCommand: (input: UpdateDashboardCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
/**
|
|
49
|
+
* deserializeAws_json1_0CreateDashboardCommand
|
|
50
|
+
*/
|
|
51
|
+
export declare const de_CreateDashboardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDashboardCommandOutput>;
|
|
52
|
+
/**
|
|
53
|
+
* deserializeAws_json1_0DeleteDashboardCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const de_DeleteDashboardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDashboardCommandOutput>;
|
|
56
|
+
/**
|
|
57
|
+
* deserializeAws_json1_0GetDashboardCommand
|
|
58
|
+
*/
|
|
59
|
+
export declare const de_GetDashboardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDashboardCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* deserializeAws_json1_0GetResourcePolicyCommand
|
|
62
|
+
*/
|
|
63
|
+
export declare const de_GetResourcePolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourcePolicyCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* deserializeAws_json1_0ListDashboardsCommand
|
|
66
|
+
*/
|
|
67
|
+
export declare const de_ListDashboardsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDashboardsCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
70
|
+
*/
|
|
71
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* deserializeAws_json1_0TagResourceCommand
|
|
74
|
+
*/
|
|
75
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* deserializeAws_json1_0UntagResourceCommand
|
|
78
|
+
*/
|
|
79
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* deserializeAws_json1_0UpdateDashboardCommand
|
|
82
|
+
*/
|
|
83
|
+
export declare const de_UpdateDashboardCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDashboardCommandOutput>;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { BCMDashboardsClientConfig } from "./BCMDashboardsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: BCMDashboardsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
cacheMiddleware?: boolean | undefined;
|
|
22
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
23
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
27
|
+
disableHostPrefix: boolean;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
profile?: string;
|
|
30
|
+
logger: import("@smithy/types").Logger;
|
|
31
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
|
+
logger?: import("@smithy/types").Logger;
|
|
38
|
+
}) => import("@smithy/types").EndpointV2;
|
|
39
|
+
tls?: boolean;
|
|
40
|
+
serviceConfiguredEndpoint?: never;
|
|
41
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
42
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
43
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BCMDashboardsHttpAuthSchemeProvider;
|
|
44
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
45
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
46
|
+
signingEscapePath?: boolean;
|
|
47
|
+
systemClockOffset?: number;
|
|
48
|
+
signingRegion?: string;
|
|
49
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
50
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { BCMDashboardsClientConfig } from "./BCMDashboardsClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: BCMDashboardsClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
15
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
16
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
18
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
cacheMiddleware?: boolean | undefined;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
27
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
29
|
+
disableHostPrefix: boolean;
|
|
30
|
+
serviceId: string;
|
|
31
|
+
profile?: string;
|
|
32
|
+
logger: import("@smithy/types").Logger;
|
|
33
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
37
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
38
|
+
logger?: import("@smithy/types").Logger;
|
|
39
|
+
}) => import("@smithy/types").EndpointV2;
|
|
40
|
+
tls?: boolean;
|
|
41
|
+
serviceConfiguredEndpoint?: never;
|
|
42
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
43
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BCMDashboardsHttpAuthSchemeProvider;
|
|
44
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
45
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
46
|
+
signingEscapePath?: boolean;
|
|
47
|
+
systemClockOffset?: number;
|
|
48
|
+
signingRegion?: string;
|
|
49
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
50
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { BCMDashboardsClientConfig } from "./BCMDashboardsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: BCMDashboardsClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
cacheMiddleware?: boolean;
|
|
11
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
12
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
14
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
15
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
16
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
18
|
+
disableHostPrefix: boolean;
|
|
19
|
+
serviceId: string;
|
|
20
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
22
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
+
profile?: string;
|
|
24
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
33
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
|
+
logger?: import("@smithy/types").Logger;
|
|
37
|
+
}) => import("@smithy/types").EndpointV2;
|
|
38
|
+
tls?: boolean;
|
|
39
|
+
serviceConfiguredEndpoint?: never;
|
|
40
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
41
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
42
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BCMDashboardsHttpAuthSchemeProvider;
|
|
43
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
44
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
45
|
+
signingEscapePath?: boolean;
|
|
46
|
+
systemClockOffset?: number;
|
|
47
|
+
signingRegion?: string;
|
|
48
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
49
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BCMDashboardsClientConfig } from "./BCMDashboardsClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: BCMDashboardsClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").BCMDashboardsHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { BCMDashboardsExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configure(extensionConfiguration: BCMDashboardsExtensionConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { BCMDashboardsClient } from "./BCMDashboardsClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateDashboardCommandInput,
|
|
5
|
+
CreateDashboardCommandOutput,
|
|
6
|
+
} from "./commands/CreateDashboardCommand";
|
|
7
|
+
import {
|
|
8
|
+
DeleteDashboardCommandInput,
|
|
9
|
+
DeleteDashboardCommandOutput,
|
|
10
|
+
} from "./commands/DeleteDashboardCommand";
|
|
11
|
+
import {
|
|
12
|
+
GetDashboardCommandInput,
|
|
13
|
+
GetDashboardCommandOutput,
|
|
14
|
+
} from "./commands/GetDashboardCommand";
|
|
15
|
+
import {
|
|
16
|
+
GetResourcePolicyCommandInput,
|
|
17
|
+
GetResourcePolicyCommandOutput,
|
|
18
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
19
|
+
import {
|
|
20
|
+
ListDashboardsCommandInput,
|
|
21
|
+
ListDashboardsCommandOutput,
|
|
22
|
+
} from "./commands/ListDashboardsCommand";
|
|
23
|
+
import {
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
27
|
+
import {
|
|
28
|
+
TagResourceCommandInput,
|
|
29
|
+
TagResourceCommandOutput,
|
|
30
|
+
} from "./commands/TagResourceCommand";
|
|
31
|
+
import {
|
|
32
|
+
UntagResourceCommandInput,
|
|
33
|
+
UntagResourceCommandOutput,
|
|
34
|
+
} from "./commands/UntagResourceCommand";
|
|
35
|
+
import {
|
|
36
|
+
UpdateDashboardCommandInput,
|
|
37
|
+
UpdateDashboardCommandOutput,
|
|
38
|
+
} from "./commands/UpdateDashboardCommand";
|
|
39
|
+
export interface BCMDashboards {
|
|
40
|
+
createDashboard(
|
|
41
|
+
args: CreateDashboardCommandInput,
|
|
42
|
+
options?: __HttpHandlerOptions
|
|
43
|
+
): Promise<CreateDashboardCommandOutput>;
|
|
44
|
+
createDashboard(
|
|
45
|
+
args: CreateDashboardCommandInput,
|
|
46
|
+
cb: (err: any, data?: CreateDashboardCommandOutput) => void
|
|
47
|
+
): void;
|
|
48
|
+
createDashboard(
|
|
49
|
+
args: CreateDashboardCommandInput,
|
|
50
|
+
options: __HttpHandlerOptions,
|
|
51
|
+
cb: (err: any, data?: CreateDashboardCommandOutput) => void
|
|
52
|
+
): void;
|
|
53
|
+
deleteDashboard(
|
|
54
|
+
args: DeleteDashboardCommandInput,
|
|
55
|
+
options?: __HttpHandlerOptions
|
|
56
|
+
): Promise<DeleteDashboardCommandOutput>;
|
|
57
|
+
deleteDashboard(
|
|
58
|
+
args: DeleteDashboardCommandInput,
|
|
59
|
+
cb: (err: any, data?: DeleteDashboardCommandOutput) => void
|
|
60
|
+
): void;
|
|
61
|
+
deleteDashboard(
|
|
62
|
+
args: DeleteDashboardCommandInput,
|
|
63
|
+
options: __HttpHandlerOptions,
|
|
64
|
+
cb: (err: any, data?: DeleteDashboardCommandOutput) => void
|
|
65
|
+
): void;
|
|
66
|
+
getDashboard(
|
|
67
|
+
args: GetDashboardCommandInput,
|
|
68
|
+
options?: __HttpHandlerOptions
|
|
69
|
+
): Promise<GetDashboardCommandOutput>;
|
|
70
|
+
getDashboard(
|
|
71
|
+
args: GetDashboardCommandInput,
|
|
72
|
+
cb: (err: any, data?: GetDashboardCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
getDashboard(
|
|
75
|
+
args: GetDashboardCommandInput,
|
|
76
|
+
options: __HttpHandlerOptions,
|
|
77
|
+
cb: (err: any, data?: GetDashboardCommandOutput) => void
|
|
78
|
+
): void;
|
|
79
|
+
getResourcePolicy(
|
|
80
|
+
args: GetResourcePolicyCommandInput,
|
|
81
|
+
options?: __HttpHandlerOptions
|
|
82
|
+
): Promise<GetResourcePolicyCommandOutput>;
|
|
83
|
+
getResourcePolicy(
|
|
84
|
+
args: GetResourcePolicyCommandInput,
|
|
85
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
getResourcePolicy(
|
|
88
|
+
args: GetResourcePolicyCommandInput,
|
|
89
|
+
options: __HttpHandlerOptions,
|
|
90
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
91
|
+
): void;
|
|
92
|
+
listDashboards(): Promise<ListDashboardsCommandOutput>;
|
|
93
|
+
listDashboards(
|
|
94
|
+
args: ListDashboardsCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<ListDashboardsCommandOutput>;
|
|
97
|
+
listDashboards(
|
|
98
|
+
args: ListDashboardsCommandInput,
|
|
99
|
+
cb: (err: any, data?: ListDashboardsCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
listDashboards(
|
|
102
|
+
args: ListDashboardsCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: ListDashboardsCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
listTagsForResource(
|
|
107
|
+
args: ListTagsForResourceCommandInput,
|
|
108
|
+
options?: __HttpHandlerOptions
|
|
109
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
110
|
+
listTagsForResource(
|
|
111
|
+
args: ListTagsForResourceCommandInput,
|
|
112
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
113
|
+
): void;
|
|
114
|
+
listTagsForResource(
|
|
115
|
+
args: ListTagsForResourceCommandInput,
|
|
116
|
+
options: __HttpHandlerOptions,
|
|
117
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
118
|
+
): void;
|
|
119
|
+
tagResource(
|
|
120
|
+
args: TagResourceCommandInput,
|
|
121
|
+
options?: __HttpHandlerOptions
|
|
122
|
+
): Promise<TagResourceCommandOutput>;
|
|
123
|
+
tagResource(
|
|
124
|
+
args: TagResourceCommandInput,
|
|
125
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
126
|
+
): void;
|
|
127
|
+
tagResource(
|
|
128
|
+
args: TagResourceCommandInput,
|
|
129
|
+
options: __HttpHandlerOptions,
|
|
130
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
131
|
+
): void;
|
|
132
|
+
untagResource(
|
|
133
|
+
args: UntagResourceCommandInput,
|
|
134
|
+
options?: __HttpHandlerOptions
|
|
135
|
+
): Promise<UntagResourceCommandOutput>;
|
|
136
|
+
untagResource(
|
|
137
|
+
args: UntagResourceCommandInput,
|
|
138
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
139
|
+
): void;
|
|
140
|
+
untagResource(
|
|
141
|
+
args: UntagResourceCommandInput,
|
|
142
|
+
options: __HttpHandlerOptions,
|
|
143
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
144
|
+
): void;
|
|
145
|
+
updateDashboard(
|
|
146
|
+
args: UpdateDashboardCommandInput,
|
|
147
|
+
options?: __HttpHandlerOptions
|
|
148
|
+
): Promise<UpdateDashboardCommandOutput>;
|
|
149
|
+
updateDashboard(
|
|
150
|
+
args: UpdateDashboardCommandInput,
|
|
151
|
+
cb: (err: any, data?: UpdateDashboardCommandOutput) => void
|
|
152
|
+
): void;
|
|
153
|
+
updateDashboard(
|
|
154
|
+
args: UpdateDashboardCommandInput,
|
|
155
|
+
options: __HttpHandlerOptions,
|
|
156
|
+
cb: (err: any, data?: UpdateDashboardCommandOutput) => void
|
|
157
|
+
): void;
|
|
158
|
+
}
|
|
159
|
+
export declare class BCMDashboards
|
|
160
|
+
extends BCMDashboardsClient
|
|
161
|
+
implements BCMDashboards {}
|
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EndpointInputConfig,
|
|
15
|
+
EndpointResolvedConfig,
|
|
16
|
+
} from "@smithy/middleware-endpoint";
|
|
17
|
+
import {
|
|
18
|
+
RetryInputConfig,
|
|
19
|
+
RetryResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-retry";
|
|
21
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
|
+
import {
|
|
23
|
+
Client as __Client,
|
|
24
|
+
DefaultsMode as __DefaultsMode,
|
|
25
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
26
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
27
|
+
} from "@smithy/smithy-client";
|
|
28
|
+
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
30
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
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
|
+
StreamCollector as __StreamCollector,
|
|
41
|
+
UrlParser as __UrlParser,
|
|
42
|
+
UserAgent as __UserAgent,
|
|
43
|
+
} from "@smithy/types";
|
|
44
|
+
import {
|
|
45
|
+
HttpAuthSchemeInputConfig,
|
|
46
|
+
HttpAuthSchemeResolvedConfig,
|
|
47
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
CreateDashboardCommandInput,
|
|
50
|
+
CreateDashboardCommandOutput,
|
|
51
|
+
} from "./commands/CreateDashboardCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteDashboardCommandInput,
|
|
54
|
+
DeleteDashboardCommandOutput,
|
|
55
|
+
} from "./commands/DeleteDashboardCommand";
|
|
56
|
+
import {
|
|
57
|
+
GetDashboardCommandInput,
|
|
58
|
+
GetDashboardCommandOutput,
|
|
59
|
+
} from "./commands/GetDashboardCommand";
|
|
60
|
+
import {
|
|
61
|
+
GetResourcePolicyCommandInput,
|
|
62
|
+
GetResourcePolicyCommandOutput,
|
|
63
|
+
} from "./commands/GetResourcePolicyCommand";
|
|
64
|
+
import {
|
|
65
|
+
ListDashboardsCommandInput,
|
|
66
|
+
ListDashboardsCommandOutput,
|
|
67
|
+
} from "./commands/ListDashboardsCommand";
|
|
68
|
+
import {
|
|
69
|
+
ListTagsForResourceCommandInput,
|
|
70
|
+
ListTagsForResourceCommandOutput,
|
|
71
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
72
|
+
import {
|
|
73
|
+
TagResourceCommandInput,
|
|
74
|
+
TagResourceCommandOutput,
|
|
75
|
+
} from "./commands/TagResourceCommand";
|
|
76
|
+
import {
|
|
77
|
+
UntagResourceCommandInput,
|
|
78
|
+
UntagResourceCommandOutput,
|
|
79
|
+
} from "./commands/UntagResourceCommand";
|
|
80
|
+
import {
|
|
81
|
+
UpdateDashboardCommandInput,
|
|
82
|
+
UpdateDashboardCommandOutput,
|
|
83
|
+
} from "./commands/UpdateDashboardCommand";
|
|
84
|
+
import {
|
|
85
|
+
ClientInputEndpointParameters,
|
|
86
|
+
ClientResolvedEndpointParameters,
|
|
87
|
+
EndpointParameters,
|
|
88
|
+
} from "./endpoint/EndpointParameters";
|
|
89
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
90
|
+
export { __Client };
|
|
91
|
+
export type ServiceInputTypes =
|
|
92
|
+
| CreateDashboardCommandInput
|
|
93
|
+
| DeleteDashboardCommandInput
|
|
94
|
+
| GetDashboardCommandInput
|
|
95
|
+
| GetResourcePolicyCommandInput
|
|
96
|
+
| ListDashboardsCommandInput
|
|
97
|
+
| ListTagsForResourceCommandInput
|
|
98
|
+
| TagResourceCommandInput
|
|
99
|
+
| UntagResourceCommandInput
|
|
100
|
+
| UpdateDashboardCommandInput;
|
|
101
|
+
export type ServiceOutputTypes =
|
|
102
|
+
| CreateDashboardCommandOutput
|
|
103
|
+
| DeleteDashboardCommandOutput
|
|
104
|
+
| GetDashboardCommandOutput
|
|
105
|
+
| GetResourcePolicyCommandOutput
|
|
106
|
+
| ListDashboardsCommandOutput
|
|
107
|
+
| ListTagsForResourceCommandOutput
|
|
108
|
+
| TagResourceCommandOutput
|
|
109
|
+
| UntagResourceCommandOutput
|
|
110
|
+
| UpdateDashboardCommandOutput;
|
|
111
|
+
export interface ClientDefaults
|
|
112
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
113
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
114
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
115
|
+
urlParser?: __UrlParser;
|
|
116
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
117
|
+
streamCollector?: __StreamCollector;
|
|
118
|
+
base64Decoder?: __Decoder;
|
|
119
|
+
base64Encoder?: __Encoder;
|
|
120
|
+
utf8Decoder?: __Decoder;
|
|
121
|
+
utf8Encoder?: __Encoder;
|
|
122
|
+
runtime?: string;
|
|
123
|
+
disableHostPrefix?: boolean;
|
|
124
|
+
serviceId?: string;
|
|
125
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
126
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
127
|
+
region?: string | __Provider<string>;
|
|
128
|
+
profile?: string;
|
|
129
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
130
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
131
|
+
maxAttempts?: number | __Provider<number>;
|
|
132
|
+
retryMode?: string | __Provider<string>;
|
|
133
|
+
logger?: __Logger;
|
|
134
|
+
extensions?: RuntimeExtension[];
|
|
135
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
136
|
+
}
|
|
137
|
+
export type BCMDashboardsClientConfigType = Partial<
|
|
138
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
139
|
+
> &
|
|
140
|
+
ClientDefaults &
|
|
141
|
+
UserAgentInputConfig &
|
|
142
|
+
RetryInputConfig &
|
|
143
|
+
RegionInputConfig &
|
|
144
|
+
HostHeaderInputConfig &
|
|
145
|
+
EndpointInputConfig<EndpointParameters> &
|
|
146
|
+
HttpAuthSchemeInputConfig &
|
|
147
|
+
ClientInputEndpointParameters;
|
|
148
|
+
export interface BCMDashboardsClientConfig
|
|
149
|
+
extends BCMDashboardsClientConfigType {}
|
|
150
|
+
export type BCMDashboardsClientResolvedConfigType =
|
|
151
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
152
|
+
Required<ClientDefaults> &
|
|
153
|
+
RuntimeExtensionsConfig &
|
|
154
|
+
UserAgentResolvedConfig &
|
|
155
|
+
RetryResolvedConfig &
|
|
156
|
+
RegionResolvedConfig &
|
|
157
|
+
HostHeaderResolvedConfig &
|
|
158
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
159
|
+
HttpAuthSchemeResolvedConfig &
|
|
160
|
+
ClientResolvedEndpointParameters;
|
|
161
|
+
export interface BCMDashboardsClientResolvedConfig
|
|
162
|
+
extends BCMDashboardsClientResolvedConfigType {}
|
|
163
|
+
export declare class BCMDashboardsClient extends __Client<
|
|
164
|
+
__HttpHandlerOptions,
|
|
165
|
+
ServiceInputTypes,
|
|
166
|
+
ServiceOutputTypes,
|
|
167
|
+
BCMDashboardsClientResolvedConfig
|
|
168
|
+
> {
|
|
169
|
+
readonly config: BCMDashboardsClientResolvedConfig;
|
|
170
|
+
constructor(
|
|
171
|
+
...[configuration]: __CheckOptionalClientConfig<BCMDashboardsClientConfig>
|
|
172
|
+
);
|
|
173
|
+
destroy(): void;
|
|
174
|
+
}
|