@aws-sdk/client-bcm-data-exports 3.458.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 (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +308 -0
  3. package/dist-cjs/BCMDataExports.js +35 -0
  4. package/dist-cjs/BCMDataExportsClient.js +43 -0
  5. package/dist-cjs/commands/CreateExportCommand.js +50 -0
  6. package/dist-cjs/commands/DeleteExportCommand.js +50 -0
  7. package/dist-cjs/commands/GetExecutionCommand.js +50 -0
  8. package/dist-cjs/commands/GetExportCommand.js +50 -0
  9. package/dist-cjs/commands/GetTableCommand.js +50 -0
  10. package/dist-cjs/commands/ListExecutionsCommand.js +50 -0
  11. package/dist-cjs/commands/ListExportsCommand.js +50 -0
  12. package/dist-cjs/commands/ListTablesCommand.js +50 -0
  13. package/dist-cjs/commands/ListTagsForResourceCommand.js +50 -0
  14. package/dist-cjs/commands/TagResourceCommand.js +50 -0
  15. package/dist-cjs/commands/UntagResourceCommand.js +50 -0
  16. package/dist-cjs/commands/UpdateExportCommand.js +50 -0
  17. package/dist-cjs/commands/index.js +15 -0
  18. package/dist-cjs/endpoint/EndpointParameters.js +11 -0
  19. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  20. package/dist-cjs/endpoint/ruleset.js +7 -0
  21. package/dist-cjs/extensionConfiguration.js +2 -0
  22. package/dist-cjs/index.js +12 -0
  23. package/dist-cjs/models/BCMDataExportsServiceException.js +12 -0
  24. package/dist-cjs/models/index.js +4 -0
  25. package/dist-cjs/models/models_0.js +126 -0
  26. package/dist-cjs/pagination/Interfaces.js +2 -0
  27. package/dist-cjs/pagination/ListExecutionsPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListExportsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListTablesPaginator.js +29 -0
  30. package/dist-cjs/pagination/index.js +7 -0
  31. package/dist-cjs/protocols/Aws_json1_1.js +775 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +50 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +24 -0
  36. package/dist-cjs/runtimeExtensions.js +22 -0
  37. package/dist-es/BCMDataExports.js +31 -0
  38. package/dist-es/BCMDataExportsClient.js +39 -0
  39. package/dist-es/commands/CreateExportCommand.js +46 -0
  40. package/dist-es/commands/DeleteExportCommand.js +46 -0
  41. package/dist-es/commands/GetExecutionCommand.js +46 -0
  42. package/dist-es/commands/GetExportCommand.js +46 -0
  43. package/dist-es/commands/GetTableCommand.js +46 -0
  44. package/dist-es/commands/ListExecutionsCommand.js +46 -0
  45. package/dist-es/commands/ListExportsCommand.js +46 -0
  46. package/dist-es/commands/ListTablesCommand.js +46 -0
  47. package/dist-es/commands/ListTagsForResourceCommand.js +46 -0
  48. package/dist-es/commands/TagResourceCommand.js +46 -0
  49. package/dist-es/commands/UntagResourceCommand.js +46 -0
  50. package/dist-es/commands/UpdateExportCommand.js +46 -0
  51. package/dist-es/commands/index.js +12 -0
  52. package/dist-es/endpoint/EndpointParameters.js +7 -0
  53. package/dist-es/endpoint/endpointResolver.js +8 -0
  54. package/dist-es/endpoint/ruleset.js +4 -0
  55. package/dist-es/extensionConfiguration.js +1 -0
  56. package/dist-es/index.js +7 -0
  57. package/dist-es/models/BCMDataExportsServiceException.js +8 -0
  58. package/dist-es/models/index.js +1 -0
  59. package/dist-es/models/models_0.js +118 -0
  60. package/dist-es/pagination/Interfaces.js +1 -0
  61. package/dist-es/pagination/ListExecutionsPaginator.js +25 -0
  62. package/dist-es/pagination/ListExportsPaginator.js +25 -0
  63. package/dist-es/pagination/ListTablesPaginator.js +25 -0
  64. package/dist-es/pagination/index.js +4 -0
  65. package/dist-es/protocols/Aws_json1_1.js +748 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +45 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +20 -0
  70. package/dist-es/runtimeExtensions.js +18 -0
  71. package/dist-types/BCMDataExports.d.ts +101 -0
  72. package/dist-types/BCMDataExportsClient.d.ts +188 -0
  73. package/dist-types/commands/CreateExportCommand.d.ts +138 -0
  74. package/dist-types/commands/DeleteExportCommand.d.ts +87 -0
  75. package/dist-types/commands/GetExecutionCommand.d.ts +124 -0
  76. package/dist-types/commands/GetExportCommand.d.ts +122 -0
  77. package/dist-types/commands/GetTableCommand.d.ts +99 -0
  78. package/dist-types/commands/ListExecutionsCommand.d.ts +101 -0
  79. package/dist-types/commands/ListExportsCommand.d.ts +98 -0
  80. package/dist-types/commands/ListTablesCommand.d.ts +101 -0
  81. package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
  82. package/dist-types/commands/TagResourceCommand.d.ts +91 -0
  83. package/dist-types/commands/UntagResourceCommand.d.ts +88 -0
  84. package/dist-types/commands/UpdateExportCommand.d.ts +117 -0
  85. package/dist-types/commands/index.d.ts +12 -0
  86. package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
  87. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  88. package/dist-types/endpoint/ruleset.d.ts +2 -0
  89. package/dist-types/extensionConfiguration.d.ts +8 -0
  90. package/dist-types/index.d.ts +22 -0
  91. package/dist-types/models/BCMDataExportsServiceException.d.ts +13 -0
  92. package/dist-types/models/index.d.ts +1 -0
  93. package/dist-types/models/models_0.d.ts +921 -0
  94. package/dist-types/pagination/Interfaces.d.ts +8 -0
  95. package/dist-types/pagination/ListExecutionsPaginator.d.ts +7 -0
  96. package/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +4 -0
  99. package/dist-types/protocols/Aws_json1_1.d.ts +110 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +46 -0
  101. package/dist-types/runtimeConfig.d.ts +46 -0
  102. package/dist-types/runtimeConfig.native.d.ts +45 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +19 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/BCMDataExports.d.ts +211 -0
  106. package/dist-types/ts3.4/BCMDataExportsClient.d.ts +191 -0
  107. package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +35 -0
  108. package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +35 -0
  109. package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +35 -0
  110. package/dist-types/ts3.4/commands/GetExportCommand.d.ts +35 -0
  111. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +35 -0
  112. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +38 -0
  113. package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +35 -0
  114. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +35 -0
  115. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  116. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  117. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  118. package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +35 -0
  119. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  120. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +31 -0
  121. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  122. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  123. package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
  124. package/dist-types/ts3.4/index.d.ts +10 -0
  125. package/dist-types/ts3.4/models/BCMDataExportsServiceException.d.ts +8 -0
  126. package/dist-types/ts3.4/models/index.d.ts +1 -0
  127. package/dist-types/ts3.4/models/models_0.d.ts +277 -0
  128. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  129. package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -0
  130. package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  133. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +149 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  139. package/package.json +102 -0
@@ -0,0 +1,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { BCMDataExportsClient } from "../BCMDataExportsClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface BCMDataExportsPaginationConfiguration extends PaginationConfiguration {
7
+ client: BCMDataExportsClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "../commands/ListExecutionsCommand";
3
+ import { BCMDataExportsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListExecutions(config: BCMDataExportsPaginationConfiguration, input: ListExecutionsCommandInput, ...additionalArguments: any): Paginator<ListExecutionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand";
3
+ import { BCMDataExportsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListExports(config: BCMDataExportsPaginationConfiguration, input: ListExportsCommandInput, ...additionalArguments: any): Paginator<ListExportsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
3
+ import { BCMDataExportsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListTables(config: BCMDataExportsPaginationConfiguration, input: ListTablesCommandInput, ...additionalArguments: any): Paginator<ListTablesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListExecutionsPaginator";
3
+ export * from "./ListExportsPaginator";
4
+ export * from "./ListTablesPaginator";
@@ -0,0 +1,110 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateExportCommandInput, CreateExportCommandOutput } from "../commands/CreateExportCommand";
4
+ import { DeleteExportCommandInput, DeleteExportCommandOutput } from "../commands/DeleteExportCommand";
5
+ import { GetExecutionCommandInput, GetExecutionCommandOutput } from "../commands/GetExecutionCommand";
6
+ import { GetExportCommandInput, GetExportCommandOutput } from "../commands/GetExportCommand";
7
+ import { GetTableCommandInput, GetTableCommandOutput } from "../commands/GetTableCommand";
8
+ import { ListExecutionsCommandInput, ListExecutionsCommandOutput } from "../commands/ListExecutionsCommand";
9
+ import { ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand";
10
+ import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
11
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
12
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
13
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
14
+ import { UpdateExportCommandInput, UpdateExportCommandOutput } from "../commands/UpdateExportCommand";
15
+ /**
16
+ * serializeAws_json1_1CreateExportCommand
17
+ */
18
+ export declare const se_CreateExportCommand: (input: CreateExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ /**
20
+ * serializeAws_json1_1DeleteExportCommand
21
+ */
22
+ export declare const se_DeleteExportCommand: (input: DeleteExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * serializeAws_json1_1GetExecutionCommand
25
+ */
26
+ export declare const se_GetExecutionCommand: (input: GetExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_json1_1GetExportCommand
29
+ */
30
+ export declare const se_GetExportCommand: (input: GetExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_json1_1GetTableCommand
33
+ */
34
+ export declare const se_GetTableCommand: (input: GetTableCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_json1_1ListExecutionsCommand
37
+ */
38
+ export declare const se_ListExecutionsCommand: (input: ListExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_json1_1ListExportsCommand
41
+ */
42
+ export declare const se_ListExportsCommand: (input: ListExportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_json1_1ListTablesCommand
45
+ */
46
+ export declare const se_ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_json1_1ListTagsForResourceCommand
49
+ */
50
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_json1_1TagResourceCommand
53
+ */
54
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_json1_1UntagResourceCommand
57
+ */
58
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_json1_1UpdateExportCommand
61
+ */
62
+ export declare const se_UpdateExportCommand: (input: UpdateExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * deserializeAws_json1_1CreateExportCommand
65
+ */
66
+ export declare const de_CreateExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExportCommandOutput>;
67
+ /**
68
+ * deserializeAws_json1_1DeleteExportCommand
69
+ */
70
+ export declare const de_DeleteExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExportCommandOutput>;
71
+ /**
72
+ * deserializeAws_json1_1GetExecutionCommand
73
+ */
74
+ export declare const de_GetExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExecutionCommandOutput>;
75
+ /**
76
+ * deserializeAws_json1_1GetExportCommand
77
+ */
78
+ export declare const de_GetExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExportCommandOutput>;
79
+ /**
80
+ * deserializeAws_json1_1GetTableCommand
81
+ */
82
+ export declare const de_GetTableCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableCommandOutput>;
83
+ /**
84
+ * deserializeAws_json1_1ListExecutionsCommand
85
+ */
86
+ export declare const de_ListExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExecutionsCommandOutput>;
87
+ /**
88
+ * deserializeAws_json1_1ListExportsCommand
89
+ */
90
+ export declare const de_ListExportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExportsCommandOutput>;
91
+ /**
92
+ * deserializeAws_json1_1ListTablesCommand
93
+ */
94
+ export declare const de_ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
95
+ /**
96
+ * deserializeAws_json1_1ListTagsForResourceCommand
97
+ */
98
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
99
+ /**
100
+ * deserializeAws_json1_1TagResourceCommand
101
+ */
102
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
103
+ /**
104
+ * deserializeAws_json1_1UntagResourceCommand
105
+ */
106
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
107
+ /**
108
+ * deserializeAws_json1_1UpdateExportCommand
109
+ */
110
+ export declare const de_UpdateExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateExportCommandOutput>;
@@ -0,0 +1,46 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { BCMDataExportsClientConfig } from "./BCMDataExportsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
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").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ 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;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,46 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { BCMDataExportsClientConfig } from "./BCMDataExportsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
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").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
15
+ updateHttpClientConfig(key: never, value: never): void;
16
+ httpHandlerConfigs(): {};
17
+ }) | RequestHandler;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ apiVersion: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: import("@smithy/types").Encoder;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: import("@smithy/types").Encoder;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ logger: import("@smithy/types").Logger;
32
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
33
+ 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;
34
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
35
+ logger?: import("@smithy/types").Logger | undefined;
36
+ }) => import("@smithy/types").EndpointV2;
37
+ tls?: boolean | undefined;
38
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
46
+ };
@@ -0,0 +1,45 @@
1
+ import { BCMDataExportsClientConfig } from "./BCMDataExportsClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: (import("@smithy/types").RequestHandler<any, any, import("@smithy/types").HttpHandlerOptions> & import("@smithy/types").RequestHandler<import("@smithy/protocol-http").HttpRequest, import("@smithy/protocol-http").HttpResponse, import("@smithy/types").HttpHandlerOptions> & {
9
+ updateHttpClientConfig(key: never, value: never): void;
10
+ httpHandlerConfigs(): {};
11
+ }) | import("@smithy/fetch-http-handler").FetchHttpHandler;
12
+ apiVersion: string;
13
+ urlParser: import("@smithy/types").UrlParser;
14
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
15
+ streamCollector: import("@smithy/types").StreamCollector;
16
+ base64Decoder: import("@smithy/types").Decoder;
17
+ base64Encoder: import("@smithy/types").Encoder;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: import("@smithy/types").Encoder;
20
+ disableHostPrefix: boolean;
21
+ serviceId: string;
22
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
24
+ region: string | import("@smithy/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
27
+ maxAttempts: number | import("@smithy/types").Provider<number>;
28
+ retryMode: string | import("@smithy/types").Provider<string>;
29
+ logger: import("@smithy/types").Logger;
30
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
31
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ 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> | undefined;
33
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
34
+ logger?: import("@smithy/types").Logger | undefined;
35
+ }) => import("@smithy/types").EndpointV2;
36
+ tls?: boolean | undefined;
37
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
38
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").Provider<import("@smithy/types").AwsCredentialIdentity> | undefined;
39
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
40
+ signingEscapePath?: boolean | undefined;
41
+ systemClockOffset?: number | undefined;
42
+ signingRegion?: string | undefined;
43
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
45
+ };
@@ -0,0 +1,19 @@
1
+ import { BCMDataExportsClientConfig } from "./BCMDataExportsClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: BCMDataExportsClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: import("@smithy/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ logger: import("@smithy/types").Logger;
15
+ serviceId: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ utf8Decoder: import("@smithy/types").Decoder;
18
+ utf8Encoder: import("@smithy/types").Encoder;
19
+ };
@@ -0,0 +1,17 @@
1
+ import { BCMDataExportsExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: BCMDataExportsExtensionConfiguration): 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,211 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import { BCMDataExportsClient } from "./BCMDataExportsClient";
3
+ import {
4
+ CreateExportCommandInput,
5
+ CreateExportCommandOutput,
6
+ } from "./commands/CreateExportCommand";
7
+ import {
8
+ DeleteExportCommandInput,
9
+ DeleteExportCommandOutput,
10
+ } from "./commands/DeleteExportCommand";
11
+ import {
12
+ GetExecutionCommandInput,
13
+ GetExecutionCommandOutput,
14
+ } from "./commands/GetExecutionCommand";
15
+ import {
16
+ GetExportCommandInput,
17
+ GetExportCommandOutput,
18
+ } from "./commands/GetExportCommand";
19
+ import {
20
+ GetTableCommandInput,
21
+ GetTableCommandOutput,
22
+ } from "./commands/GetTableCommand";
23
+ import {
24
+ ListExecutionsCommandInput,
25
+ ListExecutionsCommandOutput,
26
+ } from "./commands/ListExecutionsCommand";
27
+ import {
28
+ ListExportsCommandInput,
29
+ ListExportsCommandOutput,
30
+ } from "./commands/ListExportsCommand";
31
+ import {
32
+ ListTablesCommandInput,
33
+ ListTablesCommandOutput,
34
+ } from "./commands/ListTablesCommand";
35
+ import {
36
+ ListTagsForResourceCommandInput,
37
+ ListTagsForResourceCommandOutput,
38
+ } from "./commands/ListTagsForResourceCommand";
39
+ import {
40
+ TagResourceCommandInput,
41
+ TagResourceCommandOutput,
42
+ } from "./commands/TagResourceCommand";
43
+ import {
44
+ UntagResourceCommandInput,
45
+ UntagResourceCommandOutput,
46
+ } from "./commands/UntagResourceCommand";
47
+ import {
48
+ UpdateExportCommandInput,
49
+ UpdateExportCommandOutput,
50
+ } from "./commands/UpdateExportCommand";
51
+ export interface BCMDataExports {
52
+ createExport(
53
+ args: CreateExportCommandInput,
54
+ options?: __HttpHandlerOptions
55
+ ): Promise<CreateExportCommandOutput>;
56
+ createExport(
57
+ args: CreateExportCommandInput,
58
+ cb: (err: any, data?: CreateExportCommandOutput) => void
59
+ ): void;
60
+ createExport(
61
+ args: CreateExportCommandInput,
62
+ options: __HttpHandlerOptions,
63
+ cb: (err: any, data?: CreateExportCommandOutput) => void
64
+ ): void;
65
+ deleteExport(
66
+ args: DeleteExportCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<DeleteExportCommandOutput>;
69
+ deleteExport(
70
+ args: DeleteExportCommandInput,
71
+ cb: (err: any, data?: DeleteExportCommandOutput) => void
72
+ ): void;
73
+ deleteExport(
74
+ args: DeleteExportCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: DeleteExportCommandOutput) => void
77
+ ): void;
78
+ getExecution(
79
+ args: GetExecutionCommandInput,
80
+ options?: __HttpHandlerOptions
81
+ ): Promise<GetExecutionCommandOutput>;
82
+ getExecution(
83
+ args: GetExecutionCommandInput,
84
+ cb: (err: any, data?: GetExecutionCommandOutput) => void
85
+ ): void;
86
+ getExecution(
87
+ args: GetExecutionCommandInput,
88
+ options: __HttpHandlerOptions,
89
+ cb: (err: any, data?: GetExecutionCommandOutput) => void
90
+ ): void;
91
+ getExport(
92
+ args: GetExportCommandInput,
93
+ options?: __HttpHandlerOptions
94
+ ): Promise<GetExportCommandOutput>;
95
+ getExport(
96
+ args: GetExportCommandInput,
97
+ cb: (err: any, data?: GetExportCommandOutput) => void
98
+ ): void;
99
+ getExport(
100
+ args: GetExportCommandInput,
101
+ options: __HttpHandlerOptions,
102
+ cb: (err: any, data?: GetExportCommandOutput) => void
103
+ ): void;
104
+ getTable(
105
+ args: GetTableCommandInput,
106
+ options?: __HttpHandlerOptions
107
+ ): Promise<GetTableCommandOutput>;
108
+ getTable(
109
+ args: GetTableCommandInput,
110
+ cb: (err: any, data?: GetTableCommandOutput) => void
111
+ ): void;
112
+ getTable(
113
+ args: GetTableCommandInput,
114
+ options: __HttpHandlerOptions,
115
+ cb: (err: any, data?: GetTableCommandOutput) => void
116
+ ): void;
117
+ listExecutions(
118
+ args: ListExecutionsCommandInput,
119
+ options?: __HttpHandlerOptions
120
+ ): Promise<ListExecutionsCommandOutput>;
121
+ listExecutions(
122
+ args: ListExecutionsCommandInput,
123
+ cb: (err: any, data?: ListExecutionsCommandOutput) => void
124
+ ): void;
125
+ listExecutions(
126
+ args: ListExecutionsCommandInput,
127
+ options: __HttpHandlerOptions,
128
+ cb: (err: any, data?: ListExecutionsCommandOutput) => void
129
+ ): void;
130
+ listExports(
131
+ args: ListExportsCommandInput,
132
+ options?: __HttpHandlerOptions
133
+ ): Promise<ListExportsCommandOutput>;
134
+ listExports(
135
+ args: ListExportsCommandInput,
136
+ cb: (err: any, data?: ListExportsCommandOutput) => void
137
+ ): void;
138
+ listExports(
139
+ args: ListExportsCommandInput,
140
+ options: __HttpHandlerOptions,
141
+ cb: (err: any, data?: ListExportsCommandOutput) => void
142
+ ): void;
143
+ listTables(
144
+ args: ListTablesCommandInput,
145
+ options?: __HttpHandlerOptions
146
+ ): Promise<ListTablesCommandOutput>;
147
+ listTables(
148
+ args: ListTablesCommandInput,
149
+ cb: (err: any, data?: ListTablesCommandOutput) => void
150
+ ): void;
151
+ listTables(
152
+ args: ListTablesCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: ListTablesCommandOutput) => void
155
+ ): void;
156
+ listTagsForResource(
157
+ args: ListTagsForResourceCommandInput,
158
+ options?: __HttpHandlerOptions
159
+ ): Promise<ListTagsForResourceCommandOutput>;
160
+ listTagsForResource(
161
+ args: ListTagsForResourceCommandInput,
162
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
163
+ ): void;
164
+ listTagsForResource(
165
+ args: ListTagsForResourceCommandInput,
166
+ options: __HttpHandlerOptions,
167
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
168
+ ): void;
169
+ tagResource(
170
+ args: TagResourceCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<TagResourceCommandOutput>;
173
+ tagResource(
174
+ args: TagResourceCommandInput,
175
+ cb: (err: any, data?: TagResourceCommandOutput) => void
176
+ ): void;
177
+ tagResource(
178
+ args: TagResourceCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: TagResourceCommandOutput) => void
181
+ ): void;
182
+ untagResource(
183
+ args: UntagResourceCommandInput,
184
+ options?: __HttpHandlerOptions
185
+ ): Promise<UntagResourceCommandOutput>;
186
+ untagResource(
187
+ args: UntagResourceCommandInput,
188
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
189
+ ): void;
190
+ untagResource(
191
+ args: UntagResourceCommandInput,
192
+ options: __HttpHandlerOptions,
193
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
194
+ ): void;
195
+ updateExport(
196
+ args: UpdateExportCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<UpdateExportCommandOutput>;
199
+ updateExport(
200
+ args: UpdateExportCommandInput,
201
+ cb: (err: any, data?: UpdateExportCommandOutput) => void
202
+ ): void;
203
+ updateExport(
204
+ args: UpdateExportCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: UpdateExportCommandOutput) => void
207
+ ): void;
208
+ }
209
+ export declare class BCMDataExports
210
+ extends BCMDataExportsClient
211
+ implements BCMDataExports {}