@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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/DataExchange.d.ts +526 -150
- package/dist-types/ts3.4/DataExchangeClient.d.ts +304 -102
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +29 -29
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/DataExchangeServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1423 -1337
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListDataSetRevisionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListDataSetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEventActionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListRevisionAssetsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +6 -6
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +353 -89
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- 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
|
|
5
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
3
|
-
|
|
4
|
-
|
|
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 {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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>;
|