@aws-sdk/client-bcm-data-exports 3.1077.0 → 3.1079.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 (44) hide show
  1. package/dist-cjs/index.js +20 -123
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CreateExportCommand.js +2 -14
  4. package/dist-es/commands/DeleteExportCommand.js +2 -14
  5. package/dist-es/commands/GetExecutionCommand.js +2 -14
  6. package/dist-es/commands/GetExportCommand.js +2 -14
  7. package/dist-es/commands/GetTableCommand.js +2 -14
  8. package/dist-es/commands/ListExecutionsCommand.js +2 -14
  9. package/dist-es/commands/ListExportsCommand.js +2 -14
  10. package/dist-es/commands/ListTablesCommand.js +2 -14
  11. package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
  12. package/dist-es/commands/TagResourceCommand.js +2 -14
  13. package/dist-es/commands/UntagResourceCommand.js +2 -14
  14. package/dist-es/commands/UpdateExportCommand.js +2 -14
  15. package/dist-es/index.js +1 -0
  16. package/dist-types/commandBuilder.d.ts +18 -0
  17. package/dist-types/commands/CreateExportCommand.d.ts +3 -8
  18. package/dist-types/commands/DeleteExportCommand.d.ts +3 -8
  19. package/dist-types/commands/GetExecutionCommand.d.ts +3 -8
  20. package/dist-types/commands/GetExportCommand.d.ts +3 -8
  21. package/dist-types/commands/GetTableCommand.d.ts +3 -8
  22. package/dist-types/commands/ListExecutionsCommand.d.ts +3 -8
  23. package/dist-types/commands/ListExportsCommand.d.ts +3 -8
  24. package/dist-types/commands/ListTablesCommand.d.ts +3 -8
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
  26. package/dist-types/commands/TagResourceCommand.d.ts +3 -8
  27. package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
  28. package/dist-types/commands/UpdateExportCommand.d.ts +3 -8
  29. package/dist-types/index.d.ts +1 -0
  30. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  31. package/dist-types/ts3.4/commands/CreateExportCommand.d.ts +7 -16
  32. package/dist-types/ts3.4/commands/DeleteExportCommand.d.ts +7 -16
  33. package/dist-types/ts3.4/commands/GetExecutionCommand.d.ts +7 -16
  34. package/dist-types/ts3.4/commands/GetExportCommand.d.ts +7 -16
  35. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +7 -16
  36. package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +7 -16
  37. package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +7 -16
  38. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +7 -16
  39. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
  40. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
  41. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
  42. package/dist-types/ts3.4/commands/UpdateExportCommand.d.ts +7 -16
  43. package/dist-types/ts3.4/index.d.ts +1 -0
  44. package/package.json +8 -8
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -66,7 +67,7 @@ const commonParams = {
66
67
  Region: { type: "builtInParams", name: "region" },
67
68
  };
68
69
 
69
- var version = "3.1076.0";
70
+ var version = "3.1078.0";
70
71
  var packageInfo = {
71
72
  version: version};
72
73
 
@@ -794,148 +795,44 @@ class BCMDataExportsClient extends Client {
794
795
  }
795
796
  }
796
797
 
797
- class CreateExportCommand extends Command
798
- .classBuilder()
799
- .ep(commonParams)
800
- .m(function (Command, cs, config, o) {
801
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
802
- })
803
- .s("AWSBillingAndCostManagementDataExports", "CreateExport", {})
804
- .n("BCMDataExportsClient", "CreateExportCommand")
805
- .sc(CreateExport$)
806
- .build() {
798
+ const command = makeBuilder(commonParams, "AWSBillingAndCostManagementDataExports", "BCMDataExportsClient", getEndpointPlugin);
799
+ const _ep0 = {};
800
+ const _mw0 = (Command, cs, config, o) => [];
801
+
802
+ class CreateExportCommand extends command(_ep0, _mw0, "CreateExport", CreateExport$) {
807
803
  }
808
804
 
809
- class DeleteExportCommand extends Command
810
- .classBuilder()
811
- .ep(commonParams)
812
- .m(function (Command, cs, config, o) {
813
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
814
- })
815
- .s("AWSBillingAndCostManagementDataExports", "DeleteExport", {})
816
- .n("BCMDataExportsClient", "DeleteExportCommand")
817
- .sc(DeleteExport$)
818
- .build() {
805
+ class DeleteExportCommand extends command(_ep0, _mw0, "DeleteExport", DeleteExport$) {
819
806
  }
820
807
 
821
- class GetExecutionCommand extends Command
822
- .classBuilder()
823
- .ep(commonParams)
824
- .m(function (Command, cs, config, o) {
825
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
826
- })
827
- .s("AWSBillingAndCostManagementDataExports", "GetExecution", {})
828
- .n("BCMDataExportsClient", "GetExecutionCommand")
829
- .sc(GetExecution$)
830
- .build() {
808
+ class GetExecutionCommand extends command(_ep0, _mw0, "GetExecution", GetExecution$) {
831
809
  }
832
810
 
833
- class GetExportCommand extends Command
834
- .classBuilder()
835
- .ep(commonParams)
836
- .m(function (Command, cs, config, o) {
837
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
838
- })
839
- .s("AWSBillingAndCostManagementDataExports", "GetExport", {})
840
- .n("BCMDataExportsClient", "GetExportCommand")
841
- .sc(GetExport$)
842
- .build() {
811
+ class GetExportCommand extends command(_ep0, _mw0, "GetExport", GetExport$) {
843
812
  }
844
813
 
845
- class GetTableCommand extends Command
846
- .classBuilder()
847
- .ep(commonParams)
848
- .m(function (Command, cs, config, o) {
849
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
850
- })
851
- .s("AWSBillingAndCostManagementDataExports", "GetTable", {})
852
- .n("BCMDataExportsClient", "GetTableCommand")
853
- .sc(GetTable$)
854
- .build() {
814
+ class GetTableCommand extends command(_ep0, _mw0, "GetTable", GetTable$) {
855
815
  }
856
816
 
857
- class ListExecutionsCommand extends Command
858
- .classBuilder()
859
- .ep(commonParams)
860
- .m(function (Command, cs, config, o) {
861
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
862
- })
863
- .s("AWSBillingAndCostManagementDataExports", "ListExecutions", {})
864
- .n("BCMDataExportsClient", "ListExecutionsCommand")
865
- .sc(ListExecutions$)
866
- .build() {
817
+ class ListExecutionsCommand extends command(_ep0, _mw0, "ListExecutions", ListExecutions$) {
867
818
  }
868
819
 
869
- class ListExportsCommand extends Command
870
- .classBuilder()
871
- .ep(commonParams)
872
- .m(function (Command, cs, config, o) {
873
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
874
- })
875
- .s("AWSBillingAndCostManagementDataExports", "ListExports", {})
876
- .n("BCMDataExportsClient", "ListExportsCommand")
877
- .sc(ListExports$)
878
- .build() {
820
+ class ListExportsCommand extends command(_ep0, _mw0, "ListExports", ListExports$) {
879
821
  }
880
822
 
881
- class ListTablesCommand extends Command
882
- .classBuilder()
883
- .ep(commonParams)
884
- .m(function (Command, cs, config, o) {
885
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
886
- })
887
- .s("AWSBillingAndCostManagementDataExports", "ListTables", {})
888
- .n("BCMDataExportsClient", "ListTablesCommand")
889
- .sc(ListTables$)
890
- .build() {
823
+ class ListTablesCommand extends command(_ep0, _mw0, "ListTables", ListTables$) {
891
824
  }
892
825
 
893
- class ListTagsForResourceCommand extends Command
894
- .classBuilder()
895
- .ep(commonParams)
896
- .m(function (Command, cs, config, o) {
897
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
898
- })
899
- .s("AWSBillingAndCostManagementDataExports", "ListTagsForResource", {})
900
- .n("BCMDataExportsClient", "ListTagsForResourceCommand")
901
- .sc(ListTagsForResource$)
902
- .build() {
826
+ class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
903
827
  }
904
828
 
905
- class TagResourceCommand extends Command
906
- .classBuilder()
907
- .ep(commonParams)
908
- .m(function (Command, cs, config, o) {
909
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
910
- })
911
- .s("AWSBillingAndCostManagementDataExports", "TagResource", {})
912
- .n("BCMDataExportsClient", "TagResourceCommand")
913
- .sc(TagResource$)
914
- .build() {
829
+ class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
915
830
  }
916
831
 
917
- class UntagResourceCommand extends Command
918
- .classBuilder()
919
- .ep(commonParams)
920
- .m(function (Command, cs, config, o) {
921
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
922
- })
923
- .s("AWSBillingAndCostManagementDataExports", "UntagResource", {})
924
- .n("BCMDataExportsClient", "UntagResourceCommand")
925
- .sc(UntagResource$)
926
- .build() {
832
+ class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
927
833
  }
928
834
 
929
- class UpdateExportCommand extends Command
930
- .classBuilder()
931
- .ep(commonParams)
932
- .m(function (Command, cs, config, o) {
933
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
934
- })
935
- .s("AWSBillingAndCostManagementDataExports", "UpdateExport", {})
936
- .n("BCMDataExportsClient", "UpdateExportCommand")
937
- .sc(UpdateExport$)
938
- .build() {
835
+ class UpdateExportCommand extends command(_ep0, _mw0, "UpdateExport", UpdateExport$) {
939
836
  }
940
837
 
941
838
  const paginateListExecutions = createPaginator(BCMDataExportsClient, ListExecutionsCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "AWSBillingAndCostManagementDataExports", "BCMDataExportsClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CreateExport$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CreateExportCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "CreateExport", {})
13
- .n("BCMDataExportsClient", "CreateExportCommand")
14
- .sc(CreateExport$)
15
- .build() {
3
+ export class CreateExportCommand extends command(_ep0, _mw0, "CreateExport", CreateExport$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { DeleteExport$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class DeleteExportCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "DeleteExport", {})
13
- .n("BCMDataExportsClient", "DeleteExportCommand")
14
- .sc(DeleteExport$)
15
- .build() {
3
+ export class DeleteExportCommand extends command(_ep0, _mw0, "DeleteExport", DeleteExport$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetExecution$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetExecutionCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "GetExecution", {})
13
- .n("BCMDataExportsClient", "GetExecutionCommand")
14
- .sc(GetExecution$)
15
- .build() {
3
+ export class GetExecutionCommand extends command(_ep0, _mw0, "GetExecution", GetExecution$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetExport$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetExportCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "GetExport", {})
13
- .n("BCMDataExportsClient", "GetExportCommand")
14
- .sc(GetExport$)
15
- .build() {
3
+ export class GetExportCommand extends command(_ep0, _mw0, "GetExport", GetExport$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetTable$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetTableCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "GetTable", {})
13
- .n("BCMDataExportsClient", "GetTableCommand")
14
- .sc(GetTable$)
15
- .build() {
3
+ export class GetTableCommand extends command(_ep0, _mw0, "GetTable", GetTable$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListExecutions$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListExecutionsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "ListExecutions", {})
13
- .n("BCMDataExportsClient", "ListExecutionsCommand")
14
- .sc(ListExecutions$)
15
- .build() {
3
+ export class ListExecutionsCommand extends command(_ep0, _mw0, "ListExecutions", ListExecutions$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListExports$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListExportsCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "ListExports", {})
13
- .n("BCMDataExportsClient", "ListExportsCommand")
14
- .sc(ListExports$)
15
- .build() {
3
+ export class ListExportsCommand extends command(_ep0, _mw0, "ListExports", ListExports$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListTables$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListTablesCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "ListTables", {})
13
- .n("BCMDataExportsClient", "ListTablesCommand")
14
- .sc(ListTables$)
15
- .build() {
3
+ export class ListTablesCommand extends command(_ep0, _mw0, "ListTables", ListTables$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListTagsForResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListTagsForResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "ListTagsForResource", {})
13
- .n("BCMDataExportsClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource$)
15
- .build() {
3
+ export class ListTagsForResourceCommand extends command(_ep0, _mw0, "ListTagsForResource", ListTagsForResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { TagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class TagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "TagResource", {})
13
- .n("BCMDataExportsClient", "TagResourceCommand")
14
- .sc(TagResource$)
15
- .build() {
3
+ export class TagResourceCommand extends command(_ep0, _mw0, "TagResource", TagResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UntagResource$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UntagResourceCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "UntagResource", {})
13
- .n("BCMDataExportsClient", "UntagResourceCommand")
14
- .sc(UntagResource$)
15
- .build() {
3
+ export class UntagResourceCommand extends command(_ep0, _mw0, "UntagResource", UntagResource$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { UpdateExport$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class UpdateExportCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("AWSBillingAndCostManagementDataExports", "UpdateExport", {})
13
- .n("BCMDataExportsClient", "UpdateExportCommand")
14
- .sc(UpdateExport$)
15
- .build() {
3
+ export class UpdateExportCommand extends command(_ep0, _mw0, "UpdateExport", UpdateExport$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./BCMDataExportsClient";
2
2
  export * from "./BCMDataExports";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./BCMDataExportsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
4
2
  import type { CreateExportRequest, CreateExportResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CreateExportCommandInput extends CreateExportRequest {
22
19
  export interface CreateExportCommandOutput extends CreateExportResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CreateExportCommand_base: {
25
- new (input: CreateExportCommandInput): import("@smithy/core/client").CommandImpl<CreateExportCommandInput, CreateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CreateExportCommandInput): import("@smithy/core/client").CommandImpl<CreateExportCommandInput, CreateExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CreateExportCommandInput): import("@smithy/core/client").CommandImpl<CreateExportCommandInput, CreateExportCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CreateExportCommandInput): import("@smithy/core/client").CommandImpl<CreateExportCommandInput, CreateExportCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a data export and specifies the data query, the delivery preference, and any optional resource tags.</p> <p>A <code>DataQuery</code> consists of both a <code>QueryStatement</code> and <code>TableConfigurations</code>.</p> <p>The <code>QueryStatement</code> is an SQL statement. Data Exports only supports a limited subset of the SQL syntax. For more information on the SQL syntax that is supported, see <a href="https://docs.aws.amazon.com/cur/latest/userguide/de-data-query.html">Data query</a>. To view the available tables and columns, see the <a href="https://docs.aws.amazon.com/cur/latest/userguide/de-table-dictionary.html">Data Exports table dictionary</a>.</p> <p>The <code>TableConfigurations</code> is a collection of specified <code>TableProperties</code> for the table being queried in the <code>QueryStatement</code>. TableProperties are additional configurations you can provide to change the data and schema of a table. Each table can have different TableProperties. However, tables are not required to have any TableProperties. Each table property has a default value that it assumes if not specified. For more information on table configurations, see <a href="https://docs.aws.amazon.com/cur/latest/userguide/de-data-query.html">Data query</a>. To view the table properties available for each table, see the <a href="https://docs.aws.amazon.com/cur/latest/userguide/de-table-dictionary.html">Data Exports table dictionary</a> or use the <code>ListTables</code> API to get a response of all tables and their available properties.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
4
2
  import type { DeleteExportRequest, DeleteExportResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface DeleteExportCommandInput extends DeleteExportRequest {
22
19
  export interface DeleteExportCommandOutput extends DeleteExportResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DeleteExportCommand_base: {
25
- new (input: DeleteExportCommandInput): import("@smithy/core/client").CommandImpl<DeleteExportCommandInput, DeleteExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DeleteExportCommandInput): import("@smithy/core/client").CommandImpl<DeleteExportCommandInput, DeleteExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DeleteExportCommandInput): import("@smithy/core/client").CommandImpl<DeleteExportCommandInput, DeleteExportCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DeleteExportCommandInput): import("@smithy/core/client").CommandImpl<DeleteExportCommandInput, DeleteExportCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Deletes an existing data export.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
4
2
  import type { GetExecutionRequest, GetExecutionResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetExecutionCommandInput extends GetExecutionRequest {
22
19
  export interface GetExecutionCommandOutput extends GetExecutionResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetExecutionCommand_base: {
25
- new (input: GetExecutionCommandInput): import("@smithy/core/client").CommandImpl<GetExecutionCommandInput, GetExecutionCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetExecutionCommandInput): import("@smithy/core/client").CommandImpl<GetExecutionCommandInput, GetExecutionCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetExecutionCommandInput): import("@smithy/core/client").CommandImpl<GetExecutionCommandInput, GetExecutionCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetExecutionCommandInput): import("@smithy/core/client").CommandImpl<GetExecutionCommandInput, GetExecutionCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Exports data based on the source data update.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
4
2
  import type { GetExportRequest, GetExportResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetExportCommandInput extends GetExportRequest {
22
19
  export interface GetExportCommandOutput extends GetExportResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetExportCommand_base: {
25
- new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetExportCommandInput): import("@smithy/core/client").CommandImpl<GetExportCommandInput, GetExportCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Views the definition of an existing data export.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
4
2
  import type { GetTableRequest, GetTableResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface GetTableCommandInput extends GetTableRequest {
22
19
  export interface GetTableCommandOutput extends GetTableResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetTableCommand_base: {
25
- new (input: GetTableCommandInput): import("@smithy/core/client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: GetTableCommandInput): import("@smithy/core/client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetTableCommandInput): import("@smithy/core/client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetTableCommandInput): import("@smithy/core/client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns the metadata for the specified table and table properties. This includes the list of columns in the table schema, their data types, and column descriptions.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../BCMDataExportsClient";
4
2
  import type { ListExecutionsRequest, ListExecutionsResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListExecutionsCommandInput extends ListExecutionsRequest {
22
19
  export interface ListExecutionsCommandOutput extends ListExecutionsResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListExecutionsCommand_base: {
25
- new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, BCMDataExportsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListExecutionsCommandInput): import("@smithy/core/client").CommandImpl<ListExecutionsCommandInput, ListExecutionsCommandOutput, import("..").BCMDataExportsClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Lists the historical executions for the export.</p>