@aws-sdk/client-supplychain 3.806.0 → 3.808.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 (69) hide show
  1. package/README.md +72 -0
  2. package/dist-cjs/index.js +585 -4
  3. package/dist-es/SupplyChain.js +18 -0
  4. package/dist-es/commands/CreateDataIntegrationFlowCommand.js +2 -1
  5. package/dist-es/commands/CreateDataLakeNamespaceCommand.js +22 -0
  6. package/dist-es/commands/DeleteDataLakeNamespaceCommand.js +22 -0
  7. package/dist-es/commands/GetDataIntegrationEventCommand.js +22 -0
  8. package/dist-es/commands/GetDataIntegrationFlowCommand.js +2 -1
  9. package/dist-es/commands/GetDataIntegrationFlowExecutionCommand.js +22 -0
  10. package/dist-es/commands/GetDataLakeNamespaceCommand.js +22 -0
  11. package/dist-es/commands/ListDataIntegrationEventsCommand.js +22 -0
  12. package/dist-es/commands/ListDataIntegrationFlowExecutionsCommand.js +22 -0
  13. package/dist-es/commands/ListDataIntegrationFlowsCommand.js +2 -1
  14. package/dist-es/commands/ListDataLakeNamespacesCommand.js +22 -0
  15. package/dist-es/commands/UpdateDataIntegrationFlowCommand.js +2 -1
  16. package/dist-es/commands/UpdateDataLakeNamespaceCommand.js +22 -0
  17. package/dist-es/commands/index.js +9 -0
  18. package/dist-es/models/models_0.js +71 -0
  19. package/dist-es/pagination/ListDataIntegrationEventsPaginator.js +4 -0
  20. package/dist-es/pagination/ListDataIntegrationFlowExecutionsPaginator.js +4 -0
  21. package/dist-es/pagination/ListDataLakeNamespacesPaginator.js +4 -0
  22. package/dist-es/pagination/index.js +3 -0
  23. package/dist-es/protocols/Aws_restJson1.js +304 -0
  24. package/dist-types/SupplyChain.d.ts +63 -0
  25. package/dist-types/SupplyChainClient.d.ts +11 -2
  26. package/dist-types/commands/CreateDataIntegrationFlowCommand.d.ts +38 -1
  27. package/dist-types/commands/CreateDataLakeDatasetCommand.d.ts +89 -7
  28. package/dist-types/commands/CreateDataLakeNamespaceCommand.d.ts +133 -0
  29. package/dist-types/commands/DeleteDataLakeNamespaceCommand.d.ts +112 -0
  30. package/dist-types/commands/GetDataIntegrationEventCommand.d.ts +137 -0
  31. package/dist-types/commands/GetDataIntegrationFlowCommand.d.ts +22 -0
  32. package/dist-types/commands/GetDataIntegrationFlowExecutionCommand.d.ts +177 -0
  33. package/dist-types/commands/GetDataLakeDatasetCommand.d.ts +43 -2
  34. package/dist-types/commands/GetDataLakeNamespaceCommand.d.ts +146 -0
  35. package/dist-types/commands/ListDataIntegrationEventsCommand.d.ts +143 -0
  36. package/dist-types/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +152 -0
  37. package/dist-types/commands/ListDataIntegrationFlowsCommand.d.ts +38 -1
  38. package/dist-types/commands/ListDataLakeDatasetsCommand.d.ts +43 -2
  39. package/dist-types/commands/ListDataLakeNamespacesCommand.d.ts +161 -0
  40. package/dist-types/commands/SendDataIntegrationEventCommand.d.ts +29 -2
  41. package/dist-types/commands/UpdateDataIntegrationFlowCommand.d.ts +76 -2
  42. package/dist-types/commands/UpdateDataLakeDatasetCommand.d.ts +43 -2
  43. package/dist-types/commands/UpdateDataLakeNamespaceCommand.d.ts +126 -0
  44. package/dist-types/commands/index.d.ts +9 -0
  45. package/dist-types/models/models_0.d.ts +938 -34
  46. package/dist-types/pagination/ListDataIntegrationEventsPaginator.d.ts +7 -0
  47. package/dist-types/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +7 -0
  48. package/dist-types/pagination/ListDataLakeNamespacesPaginator.d.ts +7 -0
  49. package/dist-types/pagination/index.d.ts +3 -0
  50. package/dist-types/protocols/Aws_restJson1.d.ts +81 -0
  51. package/dist-types/ts3.4/SupplyChain.d.ts +159 -0
  52. package/dist-types/ts3.4/SupplyChainClient.d.ts +54 -0
  53. package/dist-types/ts3.4/commands/CreateDataLakeNamespaceCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/DeleteDataLakeNamespaceCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/GetDataIntegrationEventCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/GetDataIntegrationFlowExecutionCommand.d.ts +51 -0
  57. package/dist-types/ts3.4/commands/GetDataLakeNamespaceCommand.d.ts +51 -0
  58. package/dist-types/ts3.4/commands/ListDataIntegrationEventsCommand.d.ts +51 -0
  59. package/dist-types/ts3.4/commands/ListDataIntegrationFlowExecutionsCommand.d.ts +51 -0
  60. package/dist-types/ts3.4/commands/ListDataLakeNamespacesCommand.d.ts +51 -0
  61. package/dist-types/ts3.4/commands/UpdateDataLakeNamespaceCommand.d.ts +51 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +237 -6
  64. package/dist-types/ts3.4/pagination/ListDataIntegrationEventsPaginator.d.ts +11 -0
  65. package/dist-types/ts3.4/pagination/ListDataIntegrationFlowExecutionsPaginator.d.ts +11 -0
  66. package/dist-types/ts3.4/pagination/ListDataLakeNamespacesPaginator.d.ts +11 -0
  67. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  68. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +108 -0
  69. package/package.json +15 -15
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateDataLakeNamespaceRequest,
5
+ CreateDataLakeNamespaceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateDataLakeNamespaceCommandInput
15
+ extends CreateDataLakeNamespaceRequest {}
16
+ export interface CreateDataLakeNamespaceCommandOutput
17
+ extends CreateDataLakeNamespaceResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateDataLakeNamespaceCommand_base: {
20
+ new (
21
+ input: CreateDataLakeNamespaceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateDataLakeNamespaceCommandInput,
24
+ CreateDataLakeNamespaceCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateDataLakeNamespaceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateDataLakeNamespaceCommandInput,
33
+ CreateDataLakeNamespaceCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateDataLakeNamespaceCommand extends CreateDataLakeNamespaceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateDataLakeNamespaceRequest;
44
+ output: CreateDataLakeNamespaceResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateDataLakeNamespaceCommandInput;
48
+ output: CreateDataLakeNamespaceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteDataLakeNamespaceRequest,
5
+ DeleteDataLakeNamespaceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteDataLakeNamespaceCommandInput
15
+ extends DeleteDataLakeNamespaceRequest {}
16
+ export interface DeleteDataLakeNamespaceCommandOutput
17
+ extends DeleteDataLakeNamespaceResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteDataLakeNamespaceCommand_base: {
20
+ new (
21
+ input: DeleteDataLakeNamespaceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteDataLakeNamespaceCommandInput,
24
+ DeleteDataLakeNamespaceCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteDataLakeNamespaceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteDataLakeNamespaceCommandInput,
33
+ DeleteDataLakeNamespaceCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteDataLakeNamespaceCommand extends DeleteDataLakeNamespaceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteDataLakeNamespaceRequest;
44
+ output: DeleteDataLakeNamespaceResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteDataLakeNamespaceCommandInput;
48
+ output: DeleteDataLakeNamespaceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetDataIntegrationEventRequest,
5
+ GetDataIntegrationEventResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDataIntegrationEventCommandInput
15
+ extends GetDataIntegrationEventRequest {}
16
+ export interface GetDataIntegrationEventCommandOutput
17
+ extends GetDataIntegrationEventResponse,
18
+ __MetadataBearer {}
19
+ declare const GetDataIntegrationEventCommand_base: {
20
+ new (
21
+ input: GetDataIntegrationEventCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetDataIntegrationEventCommandInput,
24
+ GetDataIntegrationEventCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetDataIntegrationEventCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetDataIntegrationEventCommandInput,
33
+ GetDataIntegrationEventCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetDataIntegrationEventCommand extends GetDataIntegrationEventCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetDataIntegrationEventRequest;
44
+ output: GetDataIntegrationEventResponse;
45
+ };
46
+ sdk: {
47
+ input: GetDataIntegrationEventCommandInput;
48
+ output: GetDataIntegrationEventCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetDataIntegrationFlowExecutionRequest,
5
+ GetDataIntegrationFlowExecutionResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDataIntegrationFlowExecutionCommandInput
15
+ extends GetDataIntegrationFlowExecutionRequest {}
16
+ export interface GetDataIntegrationFlowExecutionCommandOutput
17
+ extends GetDataIntegrationFlowExecutionResponse,
18
+ __MetadataBearer {}
19
+ declare const GetDataIntegrationFlowExecutionCommand_base: {
20
+ new (
21
+ input: GetDataIntegrationFlowExecutionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetDataIntegrationFlowExecutionCommandInput,
24
+ GetDataIntegrationFlowExecutionCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetDataIntegrationFlowExecutionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetDataIntegrationFlowExecutionCommandInput,
33
+ GetDataIntegrationFlowExecutionCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetDataIntegrationFlowExecutionCommand extends GetDataIntegrationFlowExecutionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetDataIntegrationFlowExecutionRequest;
44
+ output: GetDataIntegrationFlowExecutionResponse;
45
+ };
46
+ sdk: {
47
+ input: GetDataIntegrationFlowExecutionCommandInput;
48
+ output: GetDataIntegrationFlowExecutionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetDataLakeNamespaceRequest,
5
+ GetDataLakeNamespaceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDataLakeNamespaceCommandInput
15
+ extends GetDataLakeNamespaceRequest {}
16
+ export interface GetDataLakeNamespaceCommandOutput
17
+ extends GetDataLakeNamespaceResponse,
18
+ __MetadataBearer {}
19
+ declare const GetDataLakeNamespaceCommand_base: {
20
+ new (
21
+ input: GetDataLakeNamespaceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetDataLakeNamespaceCommandInput,
24
+ GetDataLakeNamespaceCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: GetDataLakeNamespaceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetDataLakeNamespaceCommandInput,
33
+ GetDataLakeNamespaceCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetDataLakeNamespaceCommand extends GetDataLakeNamespaceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetDataLakeNamespaceRequest;
44
+ output: GetDataLakeNamespaceResponse;
45
+ };
46
+ sdk: {
47
+ input: GetDataLakeNamespaceCommandInput;
48
+ output: GetDataLakeNamespaceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListDataIntegrationEventsRequest,
5
+ ListDataIntegrationEventsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDataIntegrationEventsCommandInput
15
+ extends ListDataIntegrationEventsRequest {}
16
+ export interface ListDataIntegrationEventsCommandOutput
17
+ extends ListDataIntegrationEventsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListDataIntegrationEventsCommand_base: {
20
+ new (
21
+ input: ListDataIntegrationEventsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDataIntegrationEventsCommandInput,
24
+ ListDataIntegrationEventsCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListDataIntegrationEventsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDataIntegrationEventsCommandInput,
33
+ ListDataIntegrationEventsCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDataIntegrationEventsCommand extends ListDataIntegrationEventsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDataIntegrationEventsRequest;
44
+ output: ListDataIntegrationEventsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListDataIntegrationEventsCommandInput;
48
+ output: ListDataIntegrationEventsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListDataIntegrationFlowExecutionsRequest,
5
+ ListDataIntegrationFlowExecutionsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDataIntegrationFlowExecutionsCommandInput
15
+ extends ListDataIntegrationFlowExecutionsRequest {}
16
+ export interface ListDataIntegrationFlowExecutionsCommandOutput
17
+ extends ListDataIntegrationFlowExecutionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListDataIntegrationFlowExecutionsCommand_base: {
20
+ new (
21
+ input: ListDataIntegrationFlowExecutionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDataIntegrationFlowExecutionsCommandInput,
24
+ ListDataIntegrationFlowExecutionsCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListDataIntegrationFlowExecutionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDataIntegrationFlowExecutionsCommandInput,
33
+ ListDataIntegrationFlowExecutionsCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDataIntegrationFlowExecutionsCommand extends ListDataIntegrationFlowExecutionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDataIntegrationFlowExecutionsRequest;
44
+ output: ListDataIntegrationFlowExecutionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListDataIntegrationFlowExecutionsCommandInput;
48
+ output: ListDataIntegrationFlowExecutionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListDataLakeNamespacesRequest,
5
+ ListDataLakeNamespacesResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListDataLakeNamespacesCommandInput
15
+ extends ListDataLakeNamespacesRequest {}
16
+ export interface ListDataLakeNamespacesCommandOutput
17
+ extends ListDataLakeNamespacesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListDataLakeNamespacesCommand_base: {
20
+ new (
21
+ input: ListDataLakeNamespacesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDataLakeNamespacesCommandInput,
24
+ ListDataLakeNamespacesCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListDataLakeNamespacesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDataLakeNamespacesCommandInput,
33
+ ListDataLakeNamespacesCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDataLakeNamespacesCommand extends ListDataLakeNamespacesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDataLakeNamespacesRequest;
44
+ output: ListDataLakeNamespacesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListDataLakeNamespacesCommandInput;
48
+ output: ListDataLakeNamespacesCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateDataLakeNamespaceRequest,
5
+ UpdateDataLakeNamespaceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ SupplyChainClientResolvedConfig,
11
+ } from "../SupplyChainClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateDataLakeNamespaceCommandInput
15
+ extends UpdateDataLakeNamespaceRequest {}
16
+ export interface UpdateDataLakeNamespaceCommandOutput
17
+ extends UpdateDataLakeNamespaceResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateDataLakeNamespaceCommand_base: {
20
+ new (
21
+ input: UpdateDataLakeNamespaceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateDataLakeNamespaceCommandInput,
24
+ UpdateDataLakeNamespaceCommandOutput,
25
+ SupplyChainClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateDataLakeNamespaceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateDataLakeNamespaceCommandInput,
33
+ UpdateDataLakeNamespaceCommandOutput,
34
+ SupplyChainClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateDataLakeNamespaceCommand extends UpdateDataLakeNamespaceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateDataLakeNamespaceRequest;
44
+ output: UpdateDataLakeNamespaceResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateDataLakeNamespaceCommandInput;
48
+ output: UpdateDataLakeNamespaceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,16 +1,24 @@
1
1
  export * from "./CreateBillOfMaterialsImportJobCommand";
2
2
  export * from "./CreateDataIntegrationFlowCommand";
3
3
  export * from "./CreateDataLakeDatasetCommand";
4
+ export * from "./CreateDataLakeNamespaceCommand";
4
5
  export * from "./CreateInstanceCommand";
5
6
  export * from "./DeleteDataIntegrationFlowCommand";
6
7
  export * from "./DeleteDataLakeDatasetCommand";
8
+ export * from "./DeleteDataLakeNamespaceCommand";
7
9
  export * from "./DeleteInstanceCommand";
8
10
  export * from "./GetBillOfMaterialsImportJobCommand";
11
+ export * from "./GetDataIntegrationEventCommand";
9
12
  export * from "./GetDataIntegrationFlowCommand";
13
+ export * from "./GetDataIntegrationFlowExecutionCommand";
10
14
  export * from "./GetDataLakeDatasetCommand";
15
+ export * from "./GetDataLakeNamespaceCommand";
11
16
  export * from "./GetInstanceCommand";
17
+ export * from "./ListDataIntegrationEventsCommand";
18
+ export * from "./ListDataIntegrationFlowExecutionsCommand";
12
19
  export * from "./ListDataIntegrationFlowsCommand";
13
20
  export * from "./ListDataLakeDatasetsCommand";
21
+ export * from "./ListDataLakeNamespacesCommand";
14
22
  export * from "./ListInstancesCommand";
15
23
  export * from "./ListTagsForResourceCommand";
16
24
  export * from "./SendDataIntegrationEventCommand";
@@ -18,4 +26,5 @@ export * from "./TagResourceCommand";
18
26
  export * from "./UntagResourceCommand";
19
27
  export * from "./UpdateDataIntegrationFlowCommand";
20
28
  export * from "./UpdateDataLakeDatasetCommand";
29
+ export * from "./UpdateDataLakeNamespaceCommand";
21
30
  export * from "./UpdateInstanceCommand";