@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,124 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { GetExecutionRequest, GetExecutionResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetExecutionCommand}.
14
+ */
15
+ export interface GetExecutionCommandInput extends GetExecutionRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetExecutionCommand}.
21
+ */
22
+ export interface GetExecutionCommandOutput extends GetExecutionResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Exports data based on the source data update.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, GetExecutionCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, GetExecutionCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // GetExecutionRequest
34
+ * ExportArn: "STRING_VALUE", // required
35
+ * ExecutionId: "STRING_VALUE", // required
36
+ * };
37
+ * const command = new GetExecutionCommand(input);
38
+ * const response = await client.send(command);
39
+ * // { // GetExecutionResponse
40
+ * // ExecutionId: "STRING_VALUE",
41
+ * // Export: { // Export
42
+ * // ExportArn: "STRING_VALUE",
43
+ * // Name: "STRING_VALUE", // required
44
+ * // Description: "STRING_VALUE",
45
+ * // DataQuery: { // DataQuery
46
+ * // QueryStatement: "STRING_VALUE", // required
47
+ * // TableConfigurations: { // TableConfigurations
48
+ * // "<keys>": { // TableProperties
49
+ * // "<keys>": "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // },
53
+ * // DestinationConfigurations: { // DestinationConfigurations
54
+ * // S3Destination: { // S3Destination
55
+ * // S3Bucket: "STRING_VALUE", // required
56
+ * // S3Prefix: "STRING_VALUE", // required
57
+ * // S3Region: "STRING_VALUE", // required
58
+ * // S3OutputConfigurations: { // S3OutputConfigurations
59
+ * // OutputType: "CUSTOM", // required
60
+ * // Format: "TEXT_OR_CSV" || "PARQUET", // required
61
+ * // Compression: "GZIP" || "PARQUET", // required
62
+ * // Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
63
+ * // },
64
+ * // },
65
+ * // },
66
+ * // RefreshCadence: { // RefreshCadence
67
+ * // Frequency: "SYNCHRONOUS", // required
68
+ * // },
69
+ * // },
70
+ * // ExecutionStatus: { // ExecutionStatus
71
+ * // StatusCode: "INITIATION_IN_PROCESS" || "QUERY_QUEUED" || "QUERY_IN_PROCESS" || "QUERY_FAILURE" || "DELIVERY_IN_PROCESS" || "DELIVERY_SUCCESS" || "DELIVERY_FAILURE",
72
+ * // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
73
+ * // CreatedAt: new Date("TIMESTAMP"),
74
+ * // CompletedAt: new Date("TIMESTAMP"),
75
+ * // LastUpdatedAt: new Date("TIMESTAMP"),
76
+ * // },
77
+ * // };
78
+ *
79
+ * ```
80
+ *
81
+ * @param GetExecutionCommandInput - {@link GetExecutionCommandInput}
82
+ * @returns {@link GetExecutionCommandOutput}
83
+ * @see {@link GetExecutionCommandInput} for command's `input` shape.
84
+ * @see {@link GetExecutionCommandOutput} for command's `response` shape.
85
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
86
+ *
87
+ * @throws {@link InternalServerException} (server fault)
88
+ * <p>An error on the server occurred during the processing of your request. Try again
89
+ * later.</p>
90
+ *
91
+ * @throws {@link ResourceNotFoundException} (client fault)
92
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
93
+ *
94
+ * @throws {@link ThrottlingException} (client fault)
95
+ * <p>The request was denied due to request throttling.</p>
96
+ *
97
+ * @throws {@link ValidationException} (client fault)
98
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
99
+ * service.</p>
100
+ *
101
+ * @throws {@link BCMDataExportsServiceException}
102
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
103
+ *
104
+ */
105
+ export declare class GetExecutionCommand extends $Command<GetExecutionCommandInput, GetExecutionCommandOutput, BCMDataExportsClientResolvedConfig> {
106
+ readonly input: GetExecutionCommandInput;
107
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
108
+ /**
109
+ * @public
110
+ */
111
+ constructor(input: GetExecutionCommandInput);
112
+ /**
113
+ * @internal
114
+ */
115
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExecutionCommandInput, GetExecutionCommandOutput>;
116
+ /**
117
+ * @internal
118
+ */
119
+ private serialize;
120
+ /**
121
+ * @internal
122
+ */
123
+ private deserialize;
124
+ }
@@ -0,0 +1,122 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { GetExportRequest, GetExportResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetExportCommand}.
14
+ */
15
+ export interface GetExportCommandInput extends GetExportRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetExportCommand}.
21
+ */
22
+ export interface GetExportCommandOutput extends GetExportResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Views the definition of an existing data export.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, GetExportCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, GetExportCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // GetExportRequest
34
+ * ExportArn: "STRING_VALUE", // required
35
+ * };
36
+ * const command = new GetExportCommand(input);
37
+ * const response = await client.send(command);
38
+ * // { // GetExportResponse
39
+ * // Export: { // Export
40
+ * // ExportArn: "STRING_VALUE",
41
+ * // Name: "STRING_VALUE", // required
42
+ * // Description: "STRING_VALUE",
43
+ * // DataQuery: { // DataQuery
44
+ * // QueryStatement: "STRING_VALUE", // required
45
+ * // TableConfigurations: { // TableConfigurations
46
+ * // "<keys>": { // TableProperties
47
+ * // "<keys>": "STRING_VALUE",
48
+ * // },
49
+ * // },
50
+ * // },
51
+ * // DestinationConfigurations: { // DestinationConfigurations
52
+ * // S3Destination: { // S3Destination
53
+ * // S3Bucket: "STRING_VALUE", // required
54
+ * // S3Prefix: "STRING_VALUE", // required
55
+ * // S3Region: "STRING_VALUE", // required
56
+ * // S3OutputConfigurations: { // S3OutputConfigurations
57
+ * // OutputType: "CUSTOM", // required
58
+ * // Format: "TEXT_OR_CSV" || "PARQUET", // required
59
+ * // Compression: "GZIP" || "PARQUET", // required
60
+ * // Overwrite: "CREATE_NEW_REPORT" || "OVERWRITE_REPORT", // required
61
+ * // },
62
+ * // },
63
+ * // },
64
+ * // RefreshCadence: { // RefreshCadence
65
+ * // Frequency: "SYNCHRONOUS", // required
66
+ * // },
67
+ * // },
68
+ * // ExportStatus: { // ExportStatus
69
+ * // StatusCode: "HEALTHY" || "UNHEALTHY",
70
+ * // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
71
+ * // CreatedAt: new Date("TIMESTAMP"),
72
+ * // LastUpdatedAt: new Date("TIMESTAMP"),
73
+ * // LastRefreshedAt: new Date("TIMESTAMP"),
74
+ * // },
75
+ * // };
76
+ *
77
+ * ```
78
+ *
79
+ * @param GetExportCommandInput - {@link GetExportCommandInput}
80
+ * @returns {@link GetExportCommandOutput}
81
+ * @see {@link GetExportCommandInput} for command's `input` shape.
82
+ * @see {@link GetExportCommandOutput} for command's `response` shape.
83
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
84
+ *
85
+ * @throws {@link InternalServerException} (server fault)
86
+ * <p>An error on the server occurred during the processing of your request. Try again
87
+ * later.</p>
88
+ *
89
+ * @throws {@link ResourceNotFoundException} (client fault)
90
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
91
+ *
92
+ * @throws {@link ThrottlingException} (client fault)
93
+ * <p>The request was denied due to request throttling.</p>
94
+ *
95
+ * @throws {@link ValidationException} (client fault)
96
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
97
+ * service.</p>
98
+ *
99
+ * @throws {@link BCMDataExportsServiceException}
100
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
101
+ *
102
+ */
103
+ export declare class GetExportCommand extends $Command<GetExportCommandInput, GetExportCommandOutput, BCMDataExportsClientResolvedConfig> {
104
+ readonly input: GetExportCommandInput;
105
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
106
+ /**
107
+ * @public
108
+ */
109
+ constructor(input: GetExportCommandInput);
110
+ /**
111
+ * @internal
112
+ */
113
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetExportCommandInput, GetExportCommandOutput>;
114
+ /**
115
+ * @internal
116
+ */
117
+ private serialize;
118
+ /**
119
+ * @internal
120
+ */
121
+ private deserialize;
122
+ }
@@ -0,0 +1,99 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { GetTableRequest, GetTableResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetTableCommand}.
14
+ */
15
+ export interface GetTableCommandInput extends GetTableRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetTableCommand}.
21
+ */
22
+ export interface GetTableCommandOutput extends GetTableResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Returns the metadata for the specified table and table properties. This includes the list
27
+ * of columns in the table schema, their data types, and column descriptions.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { BCMDataExportsClient, GetTableCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
32
+ * // const { BCMDataExportsClient, GetTableCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
33
+ * const client = new BCMDataExportsClient(config);
34
+ * const input = { // GetTableRequest
35
+ * TableName: "STRING_VALUE", // required
36
+ * TableProperties: { // TableProperties
37
+ * "<keys>": "STRING_VALUE",
38
+ * },
39
+ * };
40
+ * const command = new GetTableCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetTableResponse
43
+ * // TableName: "STRING_VALUE",
44
+ * // Description: "STRING_VALUE",
45
+ * // TableProperties: { // TableProperties
46
+ * // "<keys>": "STRING_VALUE",
47
+ * // },
48
+ * // Schema: [ // ColumnList
49
+ * // { // Column
50
+ * // Name: "STRING_VALUE",
51
+ * // Type: "STRING_VALUE",
52
+ * // Description: "STRING_VALUE",
53
+ * // },
54
+ * // ],
55
+ * // };
56
+ *
57
+ * ```
58
+ *
59
+ * @param GetTableCommandInput - {@link GetTableCommandInput}
60
+ * @returns {@link GetTableCommandOutput}
61
+ * @see {@link GetTableCommandInput} for command's `input` shape.
62
+ * @see {@link GetTableCommandOutput} for command's `response` shape.
63
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
64
+ *
65
+ * @throws {@link InternalServerException} (server fault)
66
+ * <p>An error on the server occurred during the processing of your request. Try again
67
+ * later.</p>
68
+ *
69
+ * @throws {@link ThrottlingException} (client fault)
70
+ * <p>The request was denied due to request throttling.</p>
71
+ *
72
+ * @throws {@link ValidationException} (client fault)
73
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
74
+ * service.</p>
75
+ *
76
+ * @throws {@link BCMDataExportsServiceException}
77
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
78
+ *
79
+ */
80
+ export declare class GetTableCommand extends $Command<GetTableCommandInput, GetTableCommandOutput, BCMDataExportsClientResolvedConfig> {
81
+ readonly input: GetTableCommandInput;
82
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
83
+ /**
84
+ * @public
85
+ */
86
+ constructor(input: GetTableCommandInput);
87
+ /**
88
+ * @internal
89
+ */
90
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTableCommandInput, GetTableCommandOutput>;
91
+ /**
92
+ * @internal
93
+ */
94
+ private serialize;
95
+ /**
96
+ * @internal
97
+ */
98
+ private deserialize;
99
+ }
@@ -0,0 +1,101 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListExecutionsCommand}.
14
+ */
15
+ export interface ListExecutionsCommandInput extends ListExecutionsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListExecutionsCommand}.
21
+ */
22
+ export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Lists the historical executions for the export.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, ListExecutionsCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, ListExecutionsCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // ListExecutionsRequest
34
+ * ExportArn: "STRING_VALUE", // required
35
+ * MaxResults: Number("int"),
36
+ * NextToken: "STRING_VALUE",
37
+ * };
38
+ * const command = new ListExecutionsCommand(input);
39
+ * const response = await client.send(command);
40
+ * // { // ListExecutionsResponse
41
+ * // Executions: [ // ExecutionReferenceList
42
+ * // { // ExecutionReference
43
+ * // ExecutionId: "STRING_VALUE", // required
44
+ * // ExecutionStatus: { // ExecutionStatus
45
+ * // StatusCode: "INITIATION_IN_PROCESS" || "QUERY_QUEUED" || "QUERY_IN_PROCESS" || "QUERY_FAILURE" || "DELIVERY_IN_PROCESS" || "DELIVERY_SUCCESS" || "DELIVERY_FAILURE",
46
+ * // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
47
+ * // CreatedAt: new Date("TIMESTAMP"),
48
+ * // CompletedAt: new Date("TIMESTAMP"),
49
+ * // LastUpdatedAt: new Date("TIMESTAMP"),
50
+ * // },
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param ListExecutionsCommandInput - {@link ListExecutionsCommandInput}
59
+ * @returns {@link ListExecutionsCommandOutput}
60
+ * @see {@link ListExecutionsCommandInput} for command's `input` shape.
61
+ * @see {@link ListExecutionsCommandOutput} for command's `response` shape.
62
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
63
+ *
64
+ * @throws {@link InternalServerException} (server fault)
65
+ * <p>An error on the server occurred during the processing of your request. Try again
66
+ * later.</p>
67
+ *
68
+ * @throws {@link ResourceNotFoundException} (client fault)
69
+ * <p>The specified Amazon Resource Name (ARN) in the request doesn't exist.</p>
70
+ *
71
+ * @throws {@link ThrottlingException} (client fault)
72
+ * <p>The request was denied due to request throttling.</p>
73
+ *
74
+ * @throws {@link ValidationException} (client fault)
75
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
76
+ * service.</p>
77
+ *
78
+ * @throws {@link BCMDataExportsServiceException}
79
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
80
+ *
81
+ */
82
+ export declare class ListExecutionsCommand extends $Command<ListExecutionsCommandInput, ListExecutionsCommandOutput, BCMDataExportsClientResolvedConfig> {
83
+ readonly input: ListExecutionsCommandInput;
84
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
85
+ /**
86
+ * @public
87
+ */
88
+ constructor(input: ListExecutionsCommandInput);
89
+ /**
90
+ * @internal
91
+ */
92
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExecutionsCommandInput, ListExecutionsCommandOutput>;
93
+ /**
94
+ * @internal
95
+ */
96
+ private serialize;
97
+ /**
98
+ * @internal
99
+ */
100
+ private deserialize;
101
+ }
@@ -0,0 +1,98 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { ListExportsRequest, ListExportsResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListExportsCommand}.
14
+ */
15
+ export interface ListExportsCommandInput extends ListExportsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListExportsCommand}.
21
+ */
22
+ export interface ListExportsCommandOutput extends ListExportsResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Lists all data export definitions.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, ListExportsCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, ListExportsCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // ListExportsRequest
34
+ * MaxResults: Number("int"),
35
+ * NextToken: "STRING_VALUE",
36
+ * };
37
+ * const command = new ListExportsCommand(input);
38
+ * const response = await client.send(command);
39
+ * // { // ListExportsResponse
40
+ * // Exports: [ // ExportReferenceList
41
+ * // { // ExportReference
42
+ * // ExportArn: "STRING_VALUE", // required
43
+ * // ExportName: "STRING_VALUE", // required
44
+ * // ExportStatus: { // ExportStatus
45
+ * // StatusCode: "HEALTHY" || "UNHEALTHY",
46
+ * // StatusReason: "INSUFFICIENT_PERMISSION" || "BILL_OWNER_CHANGED" || "INTERNAL_FAILURE",
47
+ * // CreatedAt: new Date("TIMESTAMP"),
48
+ * // LastUpdatedAt: new Date("TIMESTAMP"),
49
+ * // LastRefreshedAt: new Date("TIMESTAMP"),
50
+ * // },
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param ListExportsCommandInput - {@link ListExportsCommandInput}
59
+ * @returns {@link ListExportsCommandOutput}
60
+ * @see {@link ListExportsCommandInput} for command's `input` shape.
61
+ * @see {@link ListExportsCommandOutput} for command's `response` shape.
62
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
63
+ *
64
+ * @throws {@link InternalServerException} (server fault)
65
+ * <p>An error on the server occurred during the processing of your request. Try again
66
+ * later.</p>
67
+ *
68
+ * @throws {@link ThrottlingException} (client fault)
69
+ * <p>The request was denied due to request throttling.</p>
70
+ *
71
+ * @throws {@link ValidationException} (client fault)
72
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
73
+ * service.</p>
74
+ *
75
+ * @throws {@link BCMDataExportsServiceException}
76
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
77
+ *
78
+ */
79
+ export declare class ListExportsCommand extends $Command<ListExportsCommandInput, ListExportsCommandOutput, BCMDataExportsClientResolvedConfig> {
80
+ readonly input: ListExportsCommandInput;
81
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
85
+ constructor(input: ListExportsCommandInput);
86
+ /**
87
+ * @internal
88
+ */
89
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListExportsCommandInput, ListExportsCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
93
+ private serialize;
94
+ /**
95
+ * @internal
96
+ */
97
+ private deserialize;
98
+ }
@@ -0,0 +1,101 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
5
+ import { ListTablesRequest, ListTablesResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListTablesCommand}.
14
+ */
15
+ export interface ListTablesCommandInput extends ListTablesRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListTablesCommand}.
21
+ */
22
+ export interface ListTablesCommandOutput extends ListTablesResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Lists all available tables in data exports.</p>
27
+ * @example
28
+ * Use a bare-bones client and the command you need to make an API call.
29
+ * ```javascript
30
+ * import { BCMDataExportsClient, ListTablesCommand } from "@aws-sdk/client-bcm-data-exports"; // ES Modules import
31
+ * // const { BCMDataExportsClient, ListTablesCommand } = require("@aws-sdk/client-bcm-data-exports"); // CommonJS import
32
+ * const client = new BCMDataExportsClient(config);
33
+ * const input = { // ListTablesRequest
34
+ * NextToken: "STRING_VALUE",
35
+ * MaxResults: Number("int"),
36
+ * };
37
+ * const command = new ListTablesCommand(input);
38
+ * const response = await client.send(command);
39
+ * // { // ListTablesResponse
40
+ * // Tables: [ // TableList
41
+ * // { // Table
42
+ * // TableName: "STRING_VALUE",
43
+ * // Description: "STRING_VALUE",
44
+ * // TableProperties: [ // TablePropertyDescriptionList
45
+ * // { // TablePropertyDescription
46
+ * // Name: "STRING_VALUE",
47
+ * // ValidValues: [ // GenericStringList
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // DefaultValue: "STRING_VALUE",
51
+ * // Description: "STRING_VALUE",
52
+ * // },
53
+ * // ],
54
+ * // },
55
+ * // ],
56
+ * // NextToken: "STRING_VALUE",
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param ListTablesCommandInput - {@link ListTablesCommandInput}
62
+ * @returns {@link ListTablesCommandOutput}
63
+ * @see {@link ListTablesCommandInput} for command's `input` shape.
64
+ * @see {@link ListTablesCommandOutput} for command's `response` shape.
65
+ * @see {@link BCMDataExportsClientResolvedConfig | config} for BCMDataExportsClient's `config` shape.
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>An error on the server occurred during the processing of your request. Try again
69
+ * later.</p>
70
+ *
71
+ * @throws {@link ThrottlingException} (client fault)
72
+ * <p>The request was denied due to request throttling.</p>
73
+ *
74
+ * @throws {@link ValidationException} (client fault)
75
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services
76
+ * service.</p>
77
+ *
78
+ * @throws {@link BCMDataExportsServiceException}
79
+ * <p>Base exception class for all service exceptions from BCMDataExports service.</p>
80
+ *
81
+ */
82
+ export declare class ListTablesCommand extends $Command<ListTablesCommandInput, ListTablesCommandOutput, BCMDataExportsClientResolvedConfig> {
83
+ readonly input: ListTablesCommandInput;
84
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
85
+ /**
86
+ * @public
87
+ */
88
+ constructor(input: ListTablesCommandInput);
89
+ /**
90
+ * @internal
91
+ */
92
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: BCMDataExportsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTablesCommandInput, ListTablesCommandOutput>;
93
+ /**
94
+ * @internal
95
+ */
96
+ private serialize;
97
+ /**
98
+ * @internal
99
+ */
100
+ private deserialize;
101
+ }