@aws-sdk/client-dataexchange 3.169.0 → 3.170.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 (51) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/DataExchange.d.ts +526 -150
  3. package/dist-types/ts3.4/DataExchangeClient.d.ts +304 -102
  4. package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +33 -17
  12. package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +41 -17
  19. package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
  22. package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +38 -17
  23. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  24. package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  29. package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +38 -17
  32. package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/index.d.ts +29 -29
  34. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  35. package/dist-types/ts3.4/index.d.ts +6 -6
  36. package/dist-types/ts3.4/models/DataExchangeServiceException.d.ts +8 -6
  37. package/dist-types/ts3.4/models/index.d.ts +1 -1
  38. package/dist-types/ts3.4/models/models_0.d.ts +1423 -1337
  39. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  40. package/dist-types/ts3.4/pagination/ListDataSetRevisionsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListEventActionsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListRevisionAssetsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  51. package/package.json +34 -34
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { DataExchange } from "../DataExchange";
3
- import { DataExchangeClient } from "../DataExchangeClient";
4
- export interface DataExchangePaginationConfiguration extends PaginationConfiguration {
5
- client: DataExchange | DataExchangeClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { DataExchange } from "../DataExchange";
3
+ import { DataExchangeClient } from "../DataExchangeClient";
4
+ export interface DataExchangePaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: DataExchange | DataExchangeClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput } from "../commands/ListDataSetRevisionsCommand";
3
- import { DataExchangePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListDataSetRevisions(config: DataExchangePaginationConfiguration, input: ListDataSetRevisionsCommandInput, ...additionalArguments: any): Paginator<ListDataSetRevisionsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListDataSetRevisionsCommandInput,
4
+ ListDataSetRevisionsCommandOutput,
5
+ } from "../commands/ListDataSetRevisionsCommand";
6
+ import { DataExchangePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDataSetRevisions(
8
+ config: DataExchangePaginationConfiguration,
9
+ input: ListDataSetRevisionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDataSetRevisionsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListDataSetsCommandInput, ListDataSetsCommandOutput } from "../commands/ListDataSetsCommand";
3
- import { DataExchangePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListDataSets(config: DataExchangePaginationConfiguration, input: ListDataSetsCommandInput, ...additionalArguments: any): Paginator<ListDataSetsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListDataSetsCommandInput,
4
+ ListDataSetsCommandOutput,
5
+ } from "../commands/ListDataSetsCommand";
6
+ import { DataExchangePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListDataSets(
8
+ config: DataExchangePaginationConfiguration,
9
+ input: ListDataSetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListDataSetsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListEventActionsCommandInput, ListEventActionsCommandOutput } from "../commands/ListEventActionsCommand";
3
- import { DataExchangePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListEventActions(config: DataExchangePaginationConfiguration, input: ListEventActionsCommandInput, ...additionalArguments: any): Paginator<ListEventActionsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListEventActionsCommandInput,
4
+ ListEventActionsCommandOutput,
5
+ } from "../commands/ListEventActionsCommand";
6
+ import { DataExchangePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListEventActions(
8
+ config: DataExchangePaginationConfiguration,
9
+ input: ListEventActionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListEventActionsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
3
- import { DataExchangePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListJobs(config: DataExchangePaginationConfiguration, input: ListJobsCommandInput, ...additionalArguments: any): Paginator<ListJobsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListJobsCommandInput,
4
+ ListJobsCommandOutput,
5
+ } from "../commands/ListJobsCommand";
6
+ import { DataExchangePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListJobs(
8
+ config: DataExchangePaginationConfiguration,
9
+ input: ListJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListJobsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput } from "../commands/ListRevisionAssetsCommand";
3
- import { DataExchangePaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListRevisionAssets(config: DataExchangePaginationConfiguration, input: ListRevisionAssetsCommandInput, ...additionalArguments: any): Paginator<ListRevisionAssetsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListRevisionAssetsCommandInput,
4
+ ListRevisionAssetsCommandOutput,
5
+ } from "../commands/ListRevisionAssetsCommand";
6
+ import { DataExchangePaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListRevisionAssets(
8
+ config: DataExchangePaginationConfiguration,
9
+ input: ListRevisionAssetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListRevisionAssetsCommandOutput>;
@@ -1,6 +1,6 @@
1
- export * from "./Interfaces";
2
- export * from "./ListDataSetRevisionsPaginator";
3
- export * from "./ListDataSetsPaginator";
4
- export * from "./ListEventActionsPaginator";
5
- export * from "./ListJobsPaginator";
6
- export * from "./ListRevisionAssetsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListDataSetRevisionsPaginator";
3
+ export * from "./ListDataSetsPaginator";
4
+ export * from "./ListEventActionsPaginator";
5
+ export * from "./ListJobsPaginator";
6
+ export * from "./ListRevisionAssetsPaginator";
@@ -1,89 +1,353 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CancelJobCommandInput, CancelJobCommandOutput } from "../commands/CancelJobCommand";
4
- import { CreateDataSetCommandInput, CreateDataSetCommandOutput } from "../commands/CreateDataSetCommand";
5
- import { CreateEventActionCommandInput, CreateEventActionCommandOutput } from "../commands/CreateEventActionCommand";
6
- import { CreateJobCommandInput, CreateJobCommandOutput } from "../commands/CreateJobCommand";
7
- import { CreateRevisionCommandInput, CreateRevisionCommandOutput } from "../commands/CreateRevisionCommand";
8
- import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "../commands/DeleteAssetCommand";
9
- import { DeleteDataSetCommandInput, DeleteDataSetCommandOutput } from "../commands/DeleteDataSetCommand";
10
- import { DeleteEventActionCommandInput, DeleteEventActionCommandOutput } from "../commands/DeleteEventActionCommand";
11
- import { DeleteRevisionCommandInput, DeleteRevisionCommandOutput } from "../commands/DeleteRevisionCommand";
12
- import { GetAssetCommandInput, GetAssetCommandOutput } from "../commands/GetAssetCommand";
13
- import { GetDataSetCommandInput, GetDataSetCommandOutput } from "../commands/GetDataSetCommand";
14
- import { GetEventActionCommandInput, GetEventActionCommandOutput } from "../commands/GetEventActionCommand";
15
- import { GetJobCommandInput, GetJobCommandOutput } from "../commands/GetJobCommand";
16
- import { GetRevisionCommandInput, GetRevisionCommandOutput } from "../commands/GetRevisionCommand";
17
- import { ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput } from "../commands/ListDataSetRevisionsCommand";
18
- import { ListDataSetsCommandInput, ListDataSetsCommandOutput } from "../commands/ListDataSetsCommand";
19
- import { ListEventActionsCommandInput, ListEventActionsCommandOutput } from "../commands/ListEventActionsCommand";
20
- import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
21
- import { ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput } from "../commands/ListRevisionAssetsCommand";
22
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
23
- import { RevokeRevisionCommandInput, RevokeRevisionCommandOutput } from "../commands/RevokeRevisionCommand";
24
- import { SendApiAssetCommandInput, SendApiAssetCommandOutput } from "../commands/SendApiAssetCommand";
25
- import { StartJobCommandInput, StartJobCommandOutput } from "../commands/StartJobCommand";
26
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
27
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
28
- import { UpdateAssetCommandInput, UpdateAssetCommandOutput } from "../commands/UpdateAssetCommand";
29
- import { UpdateDataSetCommandInput, UpdateDataSetCommandOutput } from "../commands/UpdateDataSetCommand";
30
- import { UpdateEventActionCommandInput, UpdateEventActionCommandOutput } from "../commands/UpdateEventActionCommand";
31
- import { UpdateRevisionCommandInput, UpdateRevisionCommandOutput } from "../commands/UpdateRevisionCommand";
32
- export declare const serializeAws_restJson1CancelJobCommand: (input: CancelJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1CreateDataSetCommand: (input: CreateDataSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1CreateEventActionCommand: (input: CreateEventActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1CreateJobCommand: (input: CreateJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1CreateRevisionCommand: (input: CreateRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DeleteAssetCommand: (input: DeleteAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1DeleteDataSetCommand: (input: DeleteDataSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1DeleteEventActionCommand: (input: DeleteEventActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1DeleteRevisionCommand: (input: DeleteRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1GetAssetCommand: (input: GetAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1GetDataSetCommand: (input: GetDataSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1GetEventActionCommand: (input: GetEventActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1GetJobCommand: (input: GetJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1GetRevisionCommand: (input: GetRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListDataSetRevisionsCommand: (input: ListDataSetRevisionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListDataSetsCommand: (input: ListDataSetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1ListEventActionsCommand: (input: ListEventActionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1ListRevisionAssetsCommand: (input: ListRevisionAssetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1RevokeRevisionCommand: (input: RevokeRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1SendApiAssetCommand: (input: SendApiAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1StartJobCommand: (input: StartJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_restJson1UpdateAssetCommand: (input: UpdateAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1UpdateDataSetCommand: (input: UpdateDataSetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const serializeAws_restJson1UpdateEventActionCommand: (input: UpdateEventActionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
- export declare const serializeAws_restJson1UpdateRevisionCommand: (input: UpdateRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
- export declare const deserializeAws_restJson1CancelJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobCommandOutput>;
62
- export declare const deserializeAws_restJson1CreateDataSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataSetCommandOutput>;
63
- export declare const deserializeAws_restJson1CreateEventActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEventActionCommandOutput>;
64
- export declare const deserializeAws_restJson1CreateJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateJobCommandOutput>;
65
- export declare const deserializeAws_restJson1CreateRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRevisionCommandOutput>;
66
- export declare const deserializeAws_restJson1DeleteAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssetCommandOutput>;
67
- export declare const deserializeAws_restJson1DeleteDataSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataSetCommandOutput>;
68
- export declare const deserializeAws_restJson1DeleteEventActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEventActionCommandOutput>;
69
- export declare const deserializeAws_restJson1DeleteRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRevisionCommandOutput>;
70
- export declare const deserializeAws_restJson1GetAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssetCommandOutput>;
71
- export declare const deserializeAws_restJson1GetDataSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataSetCommandOutput>;
72
- export declare const deserializeAws_restJson1GetEventActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEventActionCommandOutput>;
73
- export declare const deserializeAws_restJson1GetJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetJobCommandOutput>;
74
- export declare const deserializeAws_restJson1GetRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRevisionCommandOutput>;
75
- export declare const deserializeAws_restJson1ListDataSetRevisionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataSetRevisionsCommandOutput>;
76
- export declare const deserializeAws_restJson1ListDataSetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataSetsCommandOutput>;
77
- export declare const deserializeAws_restJson1ListEventActionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventActionsCommandOutput>;
78
- export declare const deserializeAws_restJson1ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
79
- export declare const deserializeAws_restJson1ListRevisionAssetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRevisionAssetsCommandOutput>;
80
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
81
- export declare const deserializeAws_restJson1RevokeRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RevokeRevisionCommandOutput>;
82
- export declare const deserializeAws_restJson1SendApiAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendApiAssetCommandOutput>;
83
- export declare const deserializeAws_restJson1StartJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartJobCommandOutput>;
84
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
85
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
86
- export declare const deserializeAws_restJson1UpdateAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAssetCommandOutput>;
87
- export declare const deserializeAws_restJson1UpdateDataSetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataSetCommandOutput>;
88
- export declare const deserializeAws_restJson1UpdateEventActionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventActionCommandOutput>;
89
- export declare const deserializeAws_restJson1UpdateRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRevisionCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CancelJobCommandInput,
8
+ CancelJobCommandOutput,
9
+ } from "../commands/CancelJobCommand";
10
+ import {
11
+ CreateDataSetCommandInput,
12
+ CreateDataSetCommandOutput,
13
+ } from "../commands/CreateDataSetCommand";
14
+ import {
15
+ CreateEventActionCommandInput,
16
+ CreateEventActionCommandOutput,
17
+ } from "../commands/CreateEventActionCommand";
18
+ import {
19
+ CreateJobCommandInput,
20
+ CreateJobCommandOutput,
21
+ } from "../commands/CreateJobCommand";
22
+ import {
23
+ CreateRevisionCommandInput,
24
+ CreateRevisionCommandOutput,
25
+ } from "../commands/CreateRevisionCommand";
26
+ import {
27
+ DeleteAssetCommandInput,
28
+ DeleteAssetCommandOutput,
29
+ } from "../commands/DeleteAssetCommand";
30
+ import {
31
+ DeleteDataSetCommandInput,
32
+ DeleteDataSetCommandOutput,
33
+ } from "../commands/DeleteDataSetCommand";
34
+ import {
35
+ DeleteEventActionCommandInput,
36
+ DeleteEventActionCommandOutput,
37
+ } from "../commands/DeleteEventActionCommand";
38
+ import {
39
+ DeleteRevisionCommandInput,
40
+ DeleteRevisionCommandOutput,
41
+ } from "../commands/DeleteRevisionCommand";
42
+ import {
43
+ GetAssetCommandInput,
44
+ GetAssetCommandOutput,
45
+ } from "../commands/GetAssetCommand";
46
+ import {
47
+ GetDataSetCommandInput,
48
+ GetDataSetCommandOutput,
49
+ } from "../commands/GetDataSetCommand";
50
+ import {
51
+ GetEventActionCommandInput,
52
+ GetEventActionCommandOutput,
53
+ } from "../commands/GetEventActionCommand";
54
+ import {
55
+ GetJobCommandInput,
56
+ GetJobCommandOutput,
57
+ } from "../commands/GetJobCommand";
58
+ import {
59
+ GetRevisionCommandInput,
60
+ GetRevisionCommandOutput,
61
+ } from "../commands/GetRevisionCommand";
62
+ import {
63
+ ListDataSetRevisionsCommandInput,
64
+ ListDataSetRevisionsCommandOutput,
65
+ } from "../commands/ListDataSetRevisionsCommand";
66
+ import {
67
+ ListDataSetsCommandInput,
68
+ ListDataSetsCommandOutput,
69
+ } from "../commands/ListDataSetsCommand";
70
+ import {
71
+ ListEventActionsCommandInput,
72
+ ListEventActionsCommandOutput,
73
+ } from "../commands/ListEventActionsCommand";
74
+ import {
75
+ ListJobsCommandInput,
76
+ ListJobsCommandOutput,
77
+ } from "../commands/ListJobsCommand";
78
+ import {
79
+ ListRevisionAssetsCommandInput,
80
+ ListRevisionAssetsCommandOutput,
81
+ } from "../commands/ListRevisionAssetsCommand";
82
+ import {
83
+ ListTagsForResourceCommandInput,
84
+ ListTagsForResourceCommandOutput,
85
+ } from "../commands/ListTagsForResourceCommand";
86
+ import {
87
+ RevokeRevisionCommandInput,
88
+ RevokeRevisionCommandOutput,
89
+ } from "../commands/RevokeRevisionCommand";
90
+ import {
91
+ SendApiAssetCommandInput,
92
+ SendApiAssetCommandOutput,
93
+ } from "../commands/SendApiAssetCommand";
94
+ import {
95
+ StartJobCommandInput,
96
+ StartJobCommandOutput,
97
+ } from "../commands/StartJobCommand";
98
+ import {
99
+ TagResourceCommandInput,
100
+ TagResourceCommandOutput,
101
+ } from "../commands/TagResourceCommand";
102
+ import {
103
+ UntagResourceCommandInput,
104
+ UntagResourceCommandOutput,
105
+ } from "../commands/UntagResourceCommand";
106
+ import {
107
+ UpdateAssetCommandInput,
108
+ UpdateAssetCommandOutput,
109
+ } from "../commands/UpdateAssetCommand";
110
+ import {
111
+ UpdateDataSetCommandInput,
112
+ UpdateDataSetCommandOutput,
113
+ } from "../commands/UpdateDataSetCommand";
114
+ import {
115
+ UpdateEventActionCommandInput,
116
+ UpdateEventActionCommandOutput,
117
+ } from "../commands/UpdateEventActionCommand";
118
+ import {
119
+ UpdateRevisionCommandInput,
120
+ UpdateRevisionCommandOutput,
121
+ } from "../commands/UpdateRevisionCommand";
122
+ export declare const serializeAws_restJson1CancelJobCommand: (
123
+ input: CancelJobCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const serializeAws_restJson1CreateDataSetCommand: (
127
+ input: CreateDataSetCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1CreateEventActionCommand: (
131
+ input: CreateEventActionCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1CreateJobCommand: (
135
+ input: CreateJobCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1CreateRevisionCommand: (
139
+ input: CreateRevisionCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1DeleteAssetCommand: (
143
+ input: DeleteAssetCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1DeleteDataSetCommand: (
147
+ input: DeleteDataSetCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1DeleteEventActionCommand: (
151
+ input: DeleteEventActionCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1DeleteRevisionCommand: (
155
+ input: DeleteRevisionCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1GetAssetCommand: (
159
+ input: GetAssetCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1GetDataSetCommand: (
163
+ input: GetDataSetCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1GetEventActionCommand: (
167
+ input: GetEventActionCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1GetJobCommand: (
171
+ input: GetJobCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1GetRevisionCommand: (
175
+ input: GetRevisionCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ListDataSetRevisionsCommand: (
179
+ input: ListDataSetRevisionsCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListDataSetsCommand: (
183
+ input: ListDataSetsCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1ListEventActionsCommand: (
187
+ input: ListEventActionsCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1ListJobsCommand: (
191
+ input: ListJobsCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1ListRevisionAssetsCommand: (
195
+ input: ListRevisionAssetsCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
199
+ input: ListTagsForResourceCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1RevokeRevisionCommand: (
203
+ input: RevokeRevisionCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1SendApiAssetCommand: (
207
+ input: SendApiAssetCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1StartJobCommand: (
211
+ input: StartJobCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1TagResourceCommand: (
215
+ input: TagResourceCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1UntagResourceCommand: (
219
+ input: UntagResourceCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1UpdateAssetCommand: (
223
+ input: UpdateAssetCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1UpdateDataSetCommand: (
227
+ input: UpdateDataSetCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const serializeAws_restJson1UpdateEventActionCommand: (
231
+ input: UpdateEventActionCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const serializeAws_restJson1UpdateRevisionCommand: (
235
+ input: UpdateRevisionCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const deserializeAws_restJson1CancelJobCommand: (
239
+ output: __HttpResponse,
240
+ context: __SerdeContext
241
+ ) => Promise<CancelJobCommandOutput>;
242
+ export declare const deserializeAws_restJson1CreateDataSetCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<CreateDataSetCommandOutput>;
246
+ export declare const deserializeAws_restJson1CreateEventActionCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<CreateEventActionCommandOutput>;
250
+ export declare const deserializeAws_restJson1CreateJobCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<CreateJobCommandOutput>;
254
+ export declare const deserializeAws_restJson1CreateRevisionCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<CreateRevisionCommandOutput>;
258
+ export declare const deserializeAws_restJson1DeleteAssetCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<DeleteAssetCommandOutput>;
262
+ export declare const deserializeAws_restJson1DeleteDataSetCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<DeleteDataSetCommandOutput>;
266
+ export declare const deserializeAws_restJson1DeleteEventActionCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<DeleteEventActionCommandOutput>;
270
+ export declare const deserializeAws_restJson1DeleteRevisionCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<DeleteRevisionCommandOutput>;
274
+ export declare const deserializeAws_restJson1GetAssetCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<GetAssetCommandOutput>;
278
+ export declare const deserializeAws_restJson1GetDataSetCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<GetDataSetCommandOutput>;
282
+ export declare const deserializeAws_restJson1GetEventActionCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<GetEventActionCommandOutput>;
286
+ export declare const deserializeAws_restJson1GetJobCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<GetJobCommandOutput>;
290
+ export declare const deserializeAws_restJson1GetRevisionCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<GetRevisionCommandOutput>;
294
+ export declare const deserializeAws_restJson1ListDataSetRevisionsCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListDataSetRevisionsCommandOutput>;
298
+ export declare const deserializeAws_restJson1ListDataSetsCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListDataSetsCommandOutput>;
302
+ export declare const deserializeAws_restJson1ListEventActionsCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ListEventActionsCommandOutput>;
306
+ export declare const deserializeAws_restJson1ListJobsCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<ListJobsCommandOutput>;
310
+ export declare const deserializeAws_restJson1ListRevisionAssetsCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<ListRevisionAssetsCommandOutput>;
314
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<ListTagsForResourceCommandOutput>;
318
+ export declare const deserializeAws_restJson1RevokeRevisionCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<RevokeRevisionCommandOutput>;
322
+ export declare const deserializeAws_restJson1SendApiAssetCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<SendApiAssetCommandOutput>;
326
+ export declare const deserializeAws_restJson1StartJobCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<StartJobCommandOutput>;
330
+ export declare const deserializeAws_restJson1TagResourceCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<TagResourceCommandOutput>;
334
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<UntagResourceCommandOutput>;
338
+ export declare const deserializeAws_restJson1UpdateAssetCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<UpdateAssetCommandOutput>;
342
+ export declare const deserializeAws_restJson1UpdateDataSetCommand: (
343
+ output: __HttpResponse,
344
+ context: __SerdeContext
345
+ ) => Promise<UpdateDataSetCommandOutput>;
346
+ export declare const deserializeAws_restJson1UpdateEventActionCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<UpdateEventActionCommandOutput>;
350
+ export declare const deserializeAws_restJson1UpdateRevisionCommand: (
351
+ output: __HttpResponse,
352
+ context: __SerdeContext
353
+ ) => Promise<UpdateRevisionCommandOutput>;