@aws-sdk/client-dataexchange 3.670.0 → 3.674.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/README.md +71 -13
- package/dist-cjs/index.js +467 -40
- package/dist-es/DataExchange.js +14 -0
- package/dist-es/commands/AcceptDataGrantCommand.js +22 -0
- package/dist-es/commands/CreateDataGrantCommand.js +22 -0
- package/dist-es/commands/DeleteDataGrantCommand.js +22 -0
- package/dist-es/commands/GetDataGrantCommand.js +22 -0
- package/dist-es/commands/GetReceivedDataGrantCommand.js +22 -0
- package/dist-es/commands/ListDataGrantsCommand.js +22 -0
- package/dist-es/commands/ListReceivedDataGrantsCommand.js +22 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +44 -29
- package/dist-es/pagination/ListDataGrantsPaginator.js +4 -0
- package/dist-es/pagination/ListReceivedDataGrantsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +280 -3
- package/dist-types/DataExchange.d.ts +66 -13
- package/dist-types/DataExchangeClient.d.ts +24 -15
- package/dist-types/commands/AcceptDataGrantCommand.d.ts +102 -0
- package/dist-types/commands/CancelJobCommand.d.ts +4 -2
- package/dist-types/commands/CreateDataGrantCommand.d.ts +113 -0
- package/dist-types/commands/CreateDataSetCommand.d.ts +1 -0
- package/dist-types/commands/CreateJobCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAssetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataGrantCommand.d.ts +84 -0
- package/dist-types/commands/DeleteDataSetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRevisionCommand.d.ts +2 -1
- package/dist-types/commands/GetDataGrantCommand.d.ts +102 -0
- package/dist-types/commands/GetDataSetCommand.d.ts +1 -0
- package/dist-types/commands/GetReceivedDataGrantCommand.d.ts +98 -0
- package/dist-types/commands/ListDataGrantsCommand.d.ts +103 -0
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +2 -1
- package/dist-types/commands/ListDataSetsCommand.d.ts +3 -1
- package/dist-types/commands/ListReceivedDataGrantsCommand.d.ts +105 -0
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +2 -1
- package/dist-types/commands/RevokeRevisionCommand.d.ts +2 -1
- package/dist-types/commands/SendApiAssetCommand.d.ts +2 -1
- package/dist-types/commands/SendDataSetNotificationCommand.d.ts +2 -1
- package/dist-types/commands/StartJobCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDataSetCommand.d.ts +1 -0
- package/dist-types/commands/UpdateRevisionCommand.d.ts +2 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/index.d.ts +15 -13
- package/dist-types/models/models_0.d.ts +1016 -282
- package/dist-types/pagination/ListDataGrantsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListReceivedDataGrantsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/DataExchange.d.ts +121 -0
- package/dist-types/ts3.4/DataExchangeClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AcceptDataGrantCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateDataGrantCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteDataGrantCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetDataGrantCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetReceivedDataGrantCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDataGrantsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListReceivedDataGrantsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +229 -78
- package/dist-types/ts3.4/pagination/ListDataGrantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListReceivedDataGrantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +2 -2
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDataGrantsCommandInput, ListDataGrantsCommandOutput } from "../commands/ListDataGrantsCommand";
|
|
3
|
+
import { DataExchangePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDataGrants: (config: DataExchangePaginationConfiguration, input: ListDataGrantsCommandInput, ...rest: any[]) => Paginator<ListDataGrantsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListReceivedDataGrantsCommandInput, ListReceivedDataGrantsCommandOutput } from "../commands/ListReceivedDataGrantsCommand";
|
|
3
|
+
import { DataExchangePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListReceivedDataGrants: (config: DataExchangePaginationConfiguration, input: ListReceivedDataGrantsCommandInput, ...rest: any[]) => Paginator<ListReceivedDataGrantsCommandOutput>;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListDataGrantsPaginator";
|
|
2
3
|
export * from "./ListDataSetRevisionsPaginator";
|
|
3
4
|
export * from "./ListDataSetsPaginator";
|
|
4
5
|
export * from "./ListEventActionsPaginator";
|
|
5
6
|
export * from "./ListJobsPaginator";
|
|
7
|
+
export * from "./ListReceivedDataGrantsPaginator";
|
|
6
8
|
export * from "./ListRevisionAssetsPaginator";
|
|
@@ -1,23 +1,30 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { AcceptDataGrantCommandInput, AcceptDataGrantCommandOutput } from "../commands/AcceptDataGrantCommand";
|
|
3
4
|
import { CancelJobCommandInput, CancelJobCommandOutput } from "../commands/CancelJobCommand";
|
|
5
|
+
import { CreateDataGrantCommandInput, CreateDataGrantCommandOutput } from "../commands/CreateDataGrantCommand";
|
|
4
6
|
import { CreateDataSetCommandInput, CreateDataSetCommandOutput } from "../commands/CreateDataSetCommand";
|
|
5
7
|
import { CreateEventActionCommandInput, CreateEventActionCommandOutput } from "../commands/CreateEventActionCommand";
|
|
6
8
|
import { CreateJobCommandInput, CreateJobCommandOutput } from "../commands/CreateJobCommand";
|
|
7
9
|
import { CreateRevisionCommandInput, CreateRevisionCommandOutput } from "../commands/CreateRevisionCommand";
|
|
8
10
|
import { DeleteAssetCommandInput, DeleteAssetCommandOutput } from "../commands/DeleteAssetCommand";
|
|
11
|
+
import { DeleteDataGrantCommandInput, DeleteDataGrantCommandOutput } from "../commands/DeleteDataGrantCommand";
|
|
9
12
|
import { DeleteDataSetCommandInput, DeleteDataSetCommandOutput } from "../commands/DeleteDataSetCommand";
|
|
10
13
|
import { DeleteEventActionCommandInput, DeleteEventActionCommandOutput } from "../commands/DeleteEventActionCommand";
|
|
11
14
|
import { DeleteRevisionCommandInput, DeleteRevisionCommandOutput } from "../commands/DeleteRevisionCommand";
|
|
12
15
|
import { GetAssetCommandInput, GetAssetCommandOutput } from "../commands/GetAssetCommand";
|
|
16
|
+
import { GetDataGrantCommandInput, GetDataGrantCommandOutput } from "../commands/GetDataGrantCommand";
|
|
13
17
|
import { GetDataSetCommandInput, GetDataSetCommandOutput } from "../commands/GetDataSetCommand";
|
|
14
18
|
import { GetEventActionCommandInput, GetEventActionCommandOutput } from "../commands/GetEventActionCommand";
|
|
15
19
|
import { GetJobCommandInput, GetJobCommandOutput } from "../commands/GetJobCommand";
|
|
20
|
+
import { GetReceivedDataGrantCommandInput, GetReceivedDataGrantCommandOutput } from "../commands/GetReceivedDataGrantCommand";
|
|
16
21
|
import { GetRevisionCommandInput, GetRevisionCommandOutput } from "../commands/GetRevisionCommand";
|
|
22
|
+
import { ListDataGrantsCommandInput, ListDataGrantsCommandOutput } from "../commands/ListDataGrantsCommand";
|
|
17
23
|
import { ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput } from "../commands/ListDataSetRevisionsCommand";
|
|
18
24
|
import { ListDataSetsCommandInput, ListDataSetsCommandOutput } from "../commands/ListDataSetsCommand";
|
|
19
25
|
import { ListEventActionsCommandInput, ListEventActionsCommandOutput } from "../commands/ListEventActionsCommand";
|
|
20
26
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
27
|
+
import { ListReceivedDataGrantsCommandInput, ListReceivedDataGrantsCommandOutput } from "../commands/ListReceivedDataGrantsCommand";
|
|
21
28
|
import { ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput } from "../commands/ListRevisionAssetsCommand";
|
|
22
29
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
23
30
|
import { RevokeRevisionCommandInput, RevokeRevisionCommandOutput } from "../commands/RevokeRevisionCommand";
|
|
@@ -30,10 +37,18 @@ import { UpdateAssetCommandInput, UpdateAssetCommandOutput } from "../commands/U
|
|
|
30
37
|
import { UpdateDataSetCommandInput, UpdateDataSetCommandOutput } from "../commands/UpdateDataSetCommand";
|
|
31
38
|
import { UpdateEventActionCommandInput, UpdateEventActionCommandOutput } from "../commands/UpdateEventActionCommand";
|
|
32
39
|
import { UpdateRevisionCommandInput, UpdateRevisionCommandOutput } from "../commands/UpdateRevisionCommand";
|
|
40
|
+
/**
|
|
41
|
+
* serializeAws_restJson1AcceptDataGrantCommand
|
|
42
|
+
*/
|
|
43
|
+
export declare const se_AcceptDataGrantCommand: (input: AcceptDataGrantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
44
|
/**
|
|
34
45
|
* serializeAws_restJson1CancelJobCommand
|
|
35
46
|
*/
|
|
36
47
|
export declare const se_CancelJobCommand: (input: CancelJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
/**
|
|
49
|
+
* serializeAws_restJson1CreateDataGrantCommand
|
|
50
|
+
*/
|
|
51
|
+
export declare const se_CreateDataGrantCommand: (input: CreateDataGrantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
52
|
/**
|
|
38
53
|
* serializeAws_restJson1CreateDataSetCommand
|
|
39
54
|
*/
|
|
@@ -54,6 +69,10 @@ export declare const se_CreateRevisionCommand: (input: CreateRevisionCommandInpu
|
|
|
54
69
|
* serializeAws_restJson1DeleteAssetCommand
|
|
55
70
|
*/
|
|
56
71
|
export declare const se_DeleteAssetCommand: (input: DeleteAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
/**
|
|
73
|
+
* serializeAws_restJson1DeleteDataGrantCommand
|
|
74
|
+
*/
|
|
75
|
+
export declare const se_DeleteDataGrantCommand: (input: DeleteDataGrantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
76
|
/**
|
|
58
77
|
* serializeAws_restJson1DeleteDataSetCommand
|
|
59
78
|
*/
|
|
@@ -70,6 +89,10 @@ export declare const se_DeleteRevisionCommand: (input: DeleteRevisionCommandInpu
|
|
|
70
89
|
* serializeAws_restJson1GetAssetCommand
|
|
71
90
|
*/
|
|
72
91
|
export declare const se_GetAssetCommand: (input: GetAssetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
+
/**
|
|
93
|
+
* serializeAws_restJson1GetDataGrantCommand
|
|
94
|
+
*/
|
|
95
|
+
export declare const se_GetDataGrantCommand: (input: GetDataGrantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
96
|
/**
|
|
74
97
|
* serializeAws_restJson1GetDataSetCommand
|
|
75
98
|
*/
|
|
@@ -82,10 +105,18 @@ export declare const se_GetEventActionCommand: (input: GetEventActionCommandInpu
|
|
|
82
105
|
* serializeAws_restJson1GetJobCommand
|
|
83
106
|
*/
|
|
84
107
|
export declare const se_GetJobCommand: (input: GetJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
+
/**
|
|
109
|
+
* serializeAws_restJson1GetReceivedDataGrantCommand
|
|
110
|
+
*/
|
|
111
|
+
export declare const se_GetReceivedDataGrantCommand: (input: GetReceivedDataGrantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
85
112
|
/**
|
|
86
113
|
* serializeAws_restJson1GetRevisionCommand
|
|
87
114
|
*/
|
|
88
115
|
export declare const se_GetRevisionCommand: (input: GetRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_restJson1ListDataGrantsCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_ListDataGrantsCommand: (input: ListDataGrantsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
89
120
|
/**
|
|
90
121
|
* serializeAws_restJson1ListDataSetRevisionsCommand
|
|
91
122
|
*/
|
|
@@ -102,6 +133,10 @@ export declare const se_ListEventActionsCommand: (input: ListEventActionsCommand
|
|
|
102
133
|
* serializeAws_restJson1ListJobsCommand
|
|
103
134
|
*/
|
|
104
135
|
export declare const se_ListJobsCommand: (input: ListJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
136
|
+
/**
|
|
137
|
+
* serializeAws_restJson1ListReceivedDataGrantsCommand
|
|
138
|
+
*/
|
|
139
|
+
export declare const se_ListReceivedDataGrantsCommand: (input: ListReceivedDataGrantsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
105
140
|
/**
|
|
106
141
|
* serializeAws_restJson1ListRevisionAssetsCommand
|
|
107
142
|
*/
|
|
@@ -150,10 +185,18 @@ export declare const se_UpdateEventActionCommand: (input: UpdateEventActionComma
|
|
|
150
185
|
* serializeAws_restJson1UpdateRevisionCommand
|
|
151
186
|
*/
|
|
152
187
|
export declare const se_UpdateRevisionCommand: (input: UpdateRevisionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
188
|
+
/**
|
|
189
|
+
* deserializeAws_restJson1AcceptDataGrantCommand
|
|
190
|
+
*/
|
|
191
|
+
export declare const de_AcceptDataGrantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptDataGrantCommandOutput>;
|
|
153
192
|
/**
|
|
154
193
|
* deserializeAws_restJson1CancelJobCommand
|
|
155
194
|
*/
|
|
156
195
|
export declare const de_CancelJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelJobCommandOutput>;
|
|
196
|
+
/**
|
|
197
|
+
* deserializeAws_restJson1CreateDataGrantCommand
|
|
198
|
+
*/
|
|
199
|
+
export declare const de_CreateDataGrantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataGrantCommandOutput>;
|
|
157
200
|
/**
|
|
158
201
|
* deserializeAws_restJson1CreateDataSetCommand
|
|
159
202
|
*/
|
|
@@ -174,6 +217,10 @@ export declare const de_CreateRevisionCommand: (output: __HttpResponse, context:
|
|
|
174
217
|
* deserializeAws_restJson1DeleteAssetCommand
|
|
175
218
|
*/
|
|
176
219
|
export declare const de_DeleteAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAssetCommandOutput>;
|
|
220
|
+
/**
|
|
221
|
+
* deserializeAws_restJson1DeleteDataGrantCommand
|
|
222
|
+
*/
|
|
223
|
+
export declare const de_DeleteDataGrantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataGrantCommandOutput>;
|
|
177
224
|
/**
|
|
178
225
|
* deserializeAws_restJson1DeleteDataSetCommand
|
|
179
226
|
*/
|
|
@@ -190,6 +237,10 @@ export declare const de_DeleteRevisionCommand: (output: __HttpResponse, context:
|
|
|
190
237
|
* deserializeAws_restJson1GetAssetCommand
|
|
191
238
|
*/
|
|
192
239
|
export declare const de_GetAssetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAssetCommandOutput>;
|
|
240
|
+
/**
|
|
241
|
+
* deserializeAws_restJson1GetDataGrantCommand
|
|
242
|
+
*/
|
|
243
|
+
export declare const de_GetDataGrantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDataGrantCommandOutput>;
|
|
193
244
|
/**
|
|
194
245
|
* deserializeAws_restJson1GetDataSetCommand
|
|
195
246
|
*/
|
|
@@ -202,10 +253,18 @@ export declare const de_GetEventActionCommand: (output: __HttpResponse, context:
|
|
|
202
253
|
* deserializeAws_restJson1GetJobCommand
|
|
203
254
|
*/
|
|
204
255
|
export declare const de_GetJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetJobCommandOutput>;
|
|
256
|
+
/**
|
|
257
|
+
* deserializeAws_restJson1GetReceivedDataGrantCommand
|
|
258
|
+
*/
|
|
259
|
+
export declare const de_GetReceivedDataGrantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetReceivedDataGrantCommandOutput>;
|
|
205
260
|
/**
|
|
206
261
|
* deserializeAws_restJson1GetRevisionCommand
|
|
207
262
|
*/
|
|
208
263
|
export declare const de_GetRevisionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRevisionCommandOutput>;
|
|
264
|
+
/**
|
|
265
|
+
* deserializeAws_restJson1ListDataGrantsCommand
|
|
266
|
+
*/
|
|
267
|
+
export declare const de_ListDataGrantsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDataGrantsCommandOutput>;
|
|
209
268
|
/**
|
|
210
269
|
* deserializeAws_restJson1ListDataSetRevisionsCommand
|
|
211
270
|
*/
|
|
@@ -222,6 +281,10 @@ export declare const de_ListEventActionsCommand: (output: __HttpResponse, contex
|
|
|
222
281
|
* deserializeAws_restJson1ListJobsCommand
|
|
223
282
|
*/
|
|
224
283
|
export declare const de_ListJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobsCommandOutput>;
|
|
284
|
+
/**
|
|
285
|
+
* deserializeAws_restJson1ListReceivedDataGrantsCommand
|
|
286
|
+
*/
|
|
287
|
+
export declare const de_ListReceivedDataGrantsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReceivedDataGrantsCommandOutput>;
|
|
225
288
|
/**
|
|
226
289
|
* deserializeAws_restJson1ListRevisionAssetsCommand
|
|
227
290
|
*/
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AcceptDataGrantCommandInput,
|
|
4
|
+
AcceptDataGrantCommandOutput,
|
|
5
|
+
} from "./commands/AcceptDataGrantCommand";
|
|
2
6
|
import {
|
|
3
7
|
CancelJobCommandInput,
|
|
4
8
|
CancelJobCommandOutput,
|
|
5
9
|
} from "./commands/CancelJobCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateDataGrantCommandInput,
|
|
12
|
+
CreateDataGrantCommandOutput,
|
|
13
|
+
} from "./commands/CreateDataGrantCommand";
|
|
6
14
|
import {
|
|
7
15
|
CreateDataSetCommandInput,
|
|
8
16
|
CreateDataSetCommandOutput,
|
|
@@ -23,6 +31,10 @@ import {
|
|
|
23
31
|
DeleteAssetCommandInput,
|
|
24
32
|
DeleteAssetCommandOutput,
|
|
25
33
|
} from "./commands/DeleteAssetCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteDataGrantCommandInput,
|
|
36
|
+
DeleteDataGrantCommandOutput,
|
|
37
|
+
} from "./commands/DeleteDataGrantCommand";
|
|
26
38
|
import {
|
|
27
39
|
DeleteDataSetCommandInput,
|
|
28
40
|
DeleteDataSetCommandOutput,
|
|
@@ -39,6 +51,10 @@ import {
|
|
|
39
51
|
GetAssetCommandInput,
|
|
40
52
|
GetAssetCommandOutput,
|
|
41
53
|
} from "./commands/GetAssetCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetDataGrantCommandInput,
|
|
56
|
+
GetDataGrantCommandOutput,
|
|
57
|
+
} from "./commands/GetDataGrantCommand";
|
|
42
58
|
import {
|
|
43
59
|
GetDataSetCommandInput,
|
|
44
60
|
GetDataSetCommandOutput,
|
|
@@ -51,10 +67,18 @@ import {
|
|
|
51
67
|
GetJobCommandInput,
|
|
52
68
|
GetJobCommandOutput,
|
|
53
69
|
} from "./commands/GetJobCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetReceivedDataGrantCommandInput,
|
|
72
|
+
GetReceivedDataGrantCommandOutput,
|
|
73
|
+
} from "./commands/GetReceivedDataGrantCommand";
|
|
54
74
|
import {
|
|
55
75
|
GetRevisionCommandInput,
|
|
56
76
|
GetRevisionCommandOutput,
|
|
57
77
|
} from "./commands/GetRevisionCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListDataGrantsCommandInput,
|
|
80
|
+
ListDataGrantsCommandOutput,
|
|
81
|
+
} from "./commands/ListDataGrantsCommand";
|
|
58
82
|
import {
|
|
59
83
|
ListDataSetRevisionsCommandInput,
|
|
60
84
|
ListDataSetRevisionsCommandOutput,
|
|
@@ -71,6 +95,10 @@ import {
|
|
|
71
95
|
ListJobsCommandInput,
|
|
72
96
|
ListJobsCommandOutput,
|
|
73
97
|
} from "./commands/ListJobsCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListReceivedDataGrantsCommandInput,
|
|
100
|
+
ListReceivedDataGrantsCommandOutput,
|
|
101
|
+
} from "./commands/ListReceivedDataGrantsCommand";
|
|
74
102
|
import {
|
|
75
103
|
ListRevisionAssetsCommandInput,
|
|
76
104
|
ListRevisionAssetsCommandOutput,
|
|
@@ -121,6 +149,19 @@ import {
|
|
|
121
149
|
} from "./commands/UpdateRevisionCommand";
|
|
122
150
|
import { DataExchangeClient } from "./DataExchangeClient";
|
|
123
151
|
export interface DataExchange {
|
|
152
|
+
acceptDataGrant(
|
|
153
|
+
args: AcceptDataGrantCommandInput,
|
|
154
|
+
options?: __HttpHandlerOptions
|
|
155
|
+
): Promise<AcceptDataGrantCommandOutput>;
|
|
156
|
+
acceptDataGrant(
|
|
157
|
+
args: AcceptDataGrantCommandInput,
|
|
158
|
+
cb: (err: any, data?: AcceptDataGrantCommandOutput) => void
|
|
159
|
+
): void;
|
|
160
|
+
acceptDataGrant(
|
|
161
|
+
args: AcceptDataGrantCommandInput,
|
|
162
|
+
options: __HttpHandlerOptions,
|
|
163
|
+
cb: (err: any, data?: AcceptDataGrantCommandOutput) => void
|
|
164
|
+
): void;
|
|
124
165
|
cancelJob(
|
|
125
166
|
args: CancelJobCommandInput,
|
|
126
167
|
options?: __HttpHandlerOptions
|
|
@@ -134,6 +175,19 @@ export interface DataExchange {
|
|
|
134
175
|
options: __HttpHandlerOptions,
|
|
135
176
|
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
136
177
|
): void;
|
|
178
|
+
createDataGrant(
|
|
179
|
+
args: CreateDataGrantCommandInput,
|
|
180
|
+
options?: __HttpHandlerOptions
|
|
181
|
+
): Promise<CreateDataGrantCommandOutput>;
|
|
182
|
+
createDataGrant(
|
|
183
|
+
args: CreateDataGrantCommandInput,
|
|
184
|
+
cb: (err: any, data?: CreateDataGrantCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
createDataGrant(
|
|
187
|
+
args: CreateDataGrantCommandInput,
|
|
188
|
+
options: __HttpHandlerOptions,
|
|
189
|
+
cb: (err: any, data?: CreateDataGrantCommandOutput) => void
|
|
190
|
+
): void;
|
|
137
191
|
createDataSet(
|
|
138
192
|
args: CreateDataSetCommandInput,
|
|
139
193
|
options?: __HttpHandlerOptions
|
|
@@ -199,6 +253,19 @@ export interface DataExchange {
|
|
|
199
253
|
options: __HttpHandlerOptions,
|
|
200
254
|
cb: (err: any, data?: DeleteAssetCommandOutput) => void
|
|
201
255
|
): void;
|
|
256
|
+
deleteDataGrant(
|
|
257
|
+
args: DeleteDataGrantCommandInput,
|
|
258
|
+
options?: __HttpHandlerOptions
|
|
259
|
+
): Promise<DeleteDataGrantCommandOutput>;
|
|
260
|
+
deleteDataGrant(
|
|
261
|
+
args: DeleteDataGrantCommandInput,
|
|
262
|
+
cb: (err: any, data?: DeleteDataGrantCommandOutput) => void
|
|
263
|
+
): void;
|
|
264
|
+
deleteDataGrant(
|
|
265
|
+
args: DeleteDataGrantCommandInput,
|
|
266
|
+
options: __HttpHandlerOptions,
|
|
267
|
+
cb: (err: any, data?: DeleteDataGrantCommandOutput) => void
|
|
268
|
+
): void;
|
|
202
269
|
deleteDataSet(
|
|
203
270
|
args: DeleteDataSetCommandInput,
|
|
204
271
|
options?: __HttpHandlerOptions
|
|
@@ -251,6 +318,19 @@ export interface DataExchange {
|
|
|
251
318
|
options: __HttpHandlerOptions,
|
|
252
319
|
cb: (err: any, data?: GetAssetCommandOutput) => void
|
|
253
320
|
): void;
|
|
321
|
+
getDataGrant(
|
|
322
|
+
args: GetDataGrantCommandInput,
|
|
323
|
+
options?: __HttpHandlerOptions
|
|
324
|
+
): Promise<GetDataGrantCommandOutput>;
|
|
325
|
+
getDataGrant(
|
|
326
|
+
args: GetDataGrantCommandInput,
|
|
327
|
+
cb: (err: any, data?: GetDataGrantCommandOutput) => void
|
|
328
|
+
): void;
|
|
329
|
+
getDataGrant(
|
|
330
|
+
args: GetDataGrantCommandInput,
|
|
331
|
+
options: __HttpHandlerOptions,
|
|
332
|
+
cb: (err: any, data?: GetDataGrantCommandOutput) => void
|
|
333
|
+
): void;
|
|
254
334
|
getDataSet(
|
|
255
335
|
args: GetDataSetCommandInput,
|
|
256
336
|
options?: __HttpHandlerOptions
|
|
@@ -290,6 +370,19 @@ export interface DataExchange {
|
|
|
290
370
|
options: __HttpHandlerOptions,
|
|
291
371
|
cb: (err: any, data?: GetJobCommandOutput) => void
|
|
292
372
|
): void;
|
|
373
|
+
getReceivedDataGrant(
|
|
374
|
+
args: GetReceivedDataGrantCommandInput,
|
|
375
|
+
options?: __HttpHandlerOptions
|
|
376
|
+
): Promise<GetReceivedDataGrantCommandOutput>;
|
|
377
|
+
getReceivedDataGrant(
|
|
378
|
+
args: GetReceivedDataGrantCommandInput,
|
|
379
|
+
cb: (err: any, data?: GetReceivedDataGrantCommandOutput) => void
|
|
380
|
+
): void;
|
|
381
|
+
getReceivedDataGrant(
|
|
382
|
+
args: GetReceivedDataGrantCommandInput,
|
|
383
|
+
options: __HttpHandlerOptions,
|
|
384
|
+
cb: (err: any, data?: GetReceivedDataGrantCommandOutput) => void
|
|
385
|
+
): void;
|
|
293
386
|
getRevision(
|
|
294
387
|
args: GetRevisionCommandInput,
|
|
295
388
|
options?: __HttpHandlerOptions
|
|
@@ -303,6 +396,20 @@ export interface DataExchange {
|
|
|
303
396
|
options: __HttpHandlerOptions,
|
|
304
397
|
cb: (err: any, data?: GetRevisionCommandOutput) => void
|
|
305
398
|
): void;
|
|
399
|
+
listDataGrants(): Promise<ListDataGrantsCommandOutput>;
|
|
400
|
+
listDataGrants(
|
|
401
|
+
args: ListDataGrantsCommandInput,
|
|
402
|
+
options?: __HttpHandlerOptions
|
|
403
|
+
): Promise<ListDataGrantsCommandOutput>;
|
|
404
|
+
listDataGrants(
|
|
405
|
+
args: ListDataGrantsCommandInput,
|
|
406
|
+
cb: (err: any, data?: ListDataGrantsCommandOutput) => void
|
|
407
|
+
): void;
|
|
408
|
+
listDataGrants(
|
|
409
|
+
args: ListDataGrantsCommandInput,
|
|
410
|
+
options: __HttpHandlerOptions,
|
|
411
|
+
cb: (err: any, data?: ListDataGrantsCommandOutput) => void
|
|
412
|
+
): void;
|
|
306
413
|
listDataSetRevisions(
|
|
307
414
|
args: ListDataSetRevisionsCommandInput,
|
|
308
415
|
options?: __HttpHandlerOptions
|
|
@@ -358,6 +465,20 @@ export interface DataExchange {
|
|
|
358
465
|
options: __HttpHandlerOptions,
|
|
359
466
|
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
360
467
|
): void;
|
|
468
|
+
listReceivedDataGrants(): Promise<ListReceivedDataGrantsCommandOutput>;
|
|
469
|
+
listReceivedDataGrants(
|
|
470
|
+
args: ListReceivedDataGrantsCommandInput,
|
|
471
|
+
options?: __HttpHandlerOptions
|
|
472
|
+
): Promise<ListReceivedDataGrantsCommandOutput>;
|
|
473
|
+
listReceivedDataGrants(
|
|
474
|
+
args: ListReceivedDataGrantsCommandInput,
|
|
475
|
+
cb: (err: any, data?: ListReceivedDataGrantsCommandOutput) => void
|
|
476
|
+
): void;
|
|
477
|
+
listReceivedDataGrants(
|
|
478
|
+
args: ListReceivedDataGrantsCommandInput,
|
|
479
|
+
options: __HttpHandlerOptions,
|
|
480
|
+
cb: (err: any, data?: ListReceivedDataGrantsCommandOutput) => void
|
|
481
|
+
): void;
|
|
361
482
|
listRevisionAssets(
|
|
362
483
|
args: ListRevisionAssetsCommandInput,
|
|
363
484
|
options?: __HttpHandlerOptions
|
|
@@ -45,10 +45,18 @@ import {
|
|
|
45
45
|
HttpAuthSchemeInputConfig,
|
|
46
46
|
HttpAuthSchemeResolvedConfig,
|
|
47
47
|
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
AcceptDataGrantCommandInput,
|
|
50
|
+
AcceptDataGrantCommandOutput,
|
|
51
|
+
} from "./commands/AcceptDataGrantCommand";
|
|
48
52
|
import {
|
|
49
53
|
CancelJobCommandInput,
|
|
50
54
|
CancelJobCommandOutput,
|
|
51
55
|
} from "./commands/CancelJobCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateDataGrantCommandInput,
|
|
58
|
+
CreateDataGrantCommandOutput,
|
|
59
|
+
} from "./commands/CreateDataGrantCommand";
|
|
52
60
|
import {
|
|
53
61
|
CreateDataSetCommandInput,
|
|
54
62
|
CreateDataSetCommandOutput,
|
|
@@ -69,6 +77,10 @@ import {
|
|
|
69
77
|
DeleteAssetCommandInput,
|
|
70
78
|
DeleteAssetCommandOutput,
|
|
71
79
|
} from "./commands/DeleteAssetCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeleteDataGrantCommandInput,
|
|
82
|
+
DeleteDataGrantCommandOutput,
|
|
83
|
+
} from "./commands/DeleteDataGrantCommand";
|
|
72
84
|
import {
|
|
73
85
|
DeleteDataSetCommandInput,
|
|
74
86
|
DeleteDataSetCommandOutput,
|
|
@@ -85,6 +97,10 @@ import {
|
|
|
85
97
|
GetAssetCommandInput,
|
|
86
98
|
GetAssetCommandOutput,
|
|
87
99
|
} from "./commands/GetAssetCommand";
|
|
100
|
+
import {
|
|
101
|
+
GetDataGrantCommandInput,
|
|
102
|
+
GetDataGrantCommandOutput,
|
|
103
|
+
} from "./commands/GetDataGrantCommand";
|
|
88
104
|
import {
|
|
89
105
|
GetDataSetCommandInput,
|
|
90
106
|
GetDataSetCommandOutput,
|
|
@@ -97,10 +113,18 @@ import {
|
|
|
97
113
|
GetJobCommandInput,
|
|
98
114
|
GetJobCommandOutput,
|
|
99
115
|
} from "./commands/GetJobCommand";
|
|
116
|
+
import {
|
|
117
|
+
GetReceivedDataGrantCommandInput,
|
|
118
|
+
GetReceivedDataGrantCommandOutput,
|
|
119
|
+
} from "./commands/GetReceivedDataGrantCommand";
|
|
100
120
|
import {
|
|
101
121
|
GetRevisionCommandInput,
|
|
102
122
|
GetRevisionCommandOutput,
|
|
103
123
|
} from "./commands/GetRevisionCommand";
|
|
124
|
+
import {
|
|
125
|
+
ListDataGrantsCommandInput,
|
|
126
|
+
ListDataGrantsCommandOutput,
|
|
127
|
+
} from "./commands/ListDataGrantsCommand";
|
|
104
128
|
import {
|
|
105
129
|
ListDataSetRevisionsCommandInput,
|
|
106
130
|
ListDataSetRevisionsCommandOutput,
|
|
@@ -117,6 +141,10 @@ import {
|
|
|
117
141
|
ListJobsCommandInput,
|
|
118
142
|
ListJobsCommandOutput,
|
|
119
143
|
} from "./commands/ListJobsCommand";
|
|
144
|
+
import {
|
|
145
|
+
ListReceivedDataGrantsCommandInput,
|
|
146
|
+
ListReceivedDataGrantsCommandOutput,
|
|
147
|
+
} from "./commands/ListReceivedDataGrantsCommand";
|
|
120
148
|
import {
|
|
121
149
|
ListRevisionAssetsCommandInput,
|
|
122
150
|
ListRevisionAssetsCommandOutput,
|
|
@@ -173,24 +201,31 @@ import {
|
|
|
173
201
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
174
202
|
export { __Client };
|
|
175
203
|
export type ServiceInputTypes =
|
|
204
|
+
| AcceptDataGrantCommandInput
|
|
176
205
|
| CancelJobCommandInput
|
|
206
|
+
| CreateDataGrantCommandInput
|
|
177
207
|
| CreateDataSetCommandInput
|
|
178
208
|
| CreateEventActionCommandInput
|
|
179
209
|
| CreateJobCommandInput
|
|
180
210
|
| CreateRevisionCommandInput
|
|
181
211
|
| DeleteAssetCommandInput
|
|
212
|
+
| DeleteDataGrantCommandInput
|
|
182
213
|
| DeleteDataSetCommandInput
|
|
183
214
|
| DeleteEventActionCommandInput
|
|
184
215
|
| DeleteRevisionCommandInput
|
|
185
216
|
| GetAssetCommandInput
|
|
217
|
+
| GetDataGrantCommandInput
|
|
186
218
|
| GetDataSetCommandInput
|
|
187
219
|
| GetEventActionCommandInput
|
|
188
220
|
| GetJobCommandInput
|
|
221
|
+
| GetReceivedDataGrantCommandInput
|
|
189
222
|
| GetRevisionCommandInput
|
|
223
|
+
| ListDataGrantsCommandInput
|
|
190
224
|
| ListDataSetRevisionsCommandInput
|
|
191
225
|
| ListDataSetsCommandInput
|
|
192
226
|
| ListEventActionsCommandInput
|
|
193
227
|
| ListJobsCommandInput
|
|
228
|
+
| ListReceivedDataGrantsCommandInput
|
|
194
229
|
| ListRevisionAssetsCommandInput
|
|
195
230
|
| ListTagsForResourceCommandInput
|
|
196
231
|
| RevokeRevisionCommandInput
|
|
@@ -204,24 +239,31 @@ export type ServiceInputTypes =
|
|
|
204
239
|
| UpdateEventActionCommandInput
|
|
205
240
|
| UpdateRevisionCommandInput;
|
|
206
241
|
export type ServiceOutputTypes =
|
|
242
|
+
| AcceptDataGrantCommandOutput
|
|
207
243
|
| CancelJobCommandOutput
|
|
244
|
+
| CreateDataGrantCommandOutput
|
|
208
245
|
| CreateDataSetCommandOutput
|
|
209
246
|
| CreateEventActionCommandOutput
|
|
210
247
|
| CreateJobCommandOutput
|
|
211
248
|
| CreateRevisionCommandOutput
|
|
212
249
|
| DeleteAssetCommandOutput
|
|
250
|
+
| DeleteDataGrantCommandOutput
|
|
213
251
|
| DeleteDataSetCommandOutput
|
|
214
252
|
| DeleteEventActionCommandOutput
|
|
215
253
|
| DeleteRevisionCommandOutput
|
|
216
254
|
| GetAssetCommandOutput
|
|
255
|
+
| GetDataGrantCommandOutput
|
|
217
256
|
| GetDataSetCommandOutput
|
|
218
257
|
| GetEventActionCommandOutput
|
|
219
258
|
| GetJobCommandOutput
|
|
259
|
+
| GetReceivedDataGrantCommandOutput
|
|
220
260
|
| GetRevisionCommandOutput
|
|
261
|
+
| ListDataGrantsCommandOutput
|
|
221
262
|
| ListDataSetRevisionsCommandOutput
|
|
222
263
|
| ListDataSetsCommandOutput
|
|
223
264
|
| ListEventActionsCommandOutput
|
|
224
265
|
| ListJobsCommandOutput
|
|
266
|
+
| ListReceivedDataGrantsCommandOutput
|
|
225
267
|
| ListRevisionAssetsCommandOutput
|
|
226
268
|
| ListTagsForResourceCommandOutput
|
|
227
269
|
| RevokeRevisionCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataExchangeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataExchangeClient";
|
|
8
|
+
import {
|
|
9
|
+
AcceptDataGrantRequest,
|
|
10
|
+
AcceptDataGrantResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AcceptDataGrantCommandInput extends AcceptDataGrantRequest {}
|
|
15
|
+
export interface AcceptDataGrantCommandOutput
|
|
16
|
+
extends AcceptDataGrantResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const AcceptDataGrantCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: AcceptDataGrantCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
AcceptDataGrantCommandInput,
|
|
23
|
+
AcceptDataGrantCommandOutput,
|
|
24
|
+
DataExchangeClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: AcceptDataGrantCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
AcceptDataGrantCommandInput,
|
|
32
|
+
AcceptDataGrantCommandOutput,
|
|
33
|
+
DataExchangeClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class AcceptDataGrantCommand extends AcceptDataGrantCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: AcceptDataGrantRequest;
|
|
43
|
+
output: AcceptDataGrantResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: AcceptDataGrantCommandInput;
|
|
47
|
+
output: AcceptDataGrantCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataExchangeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataExchangeClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateDataGrantRequest,
|
|
10
|
+
CreateDataGrantResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateDataGrantCommandInput extends CreateDataGrantRequest {}
|
|
15
|
+
export interface CreateDataGrantCommandOutput
|
|
16
|
+
extends CreateDataGrantResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateDataGrantCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateDataGrantCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateDataGrantCommandInput,
|
|
23
|
+
CreateDataGrantCommandOutput,
|
|
24
|
+
DataExchangeClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateDataGrantCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateDataGrantCommandInput,
|
|
32
|
+
CreateDataGrantCommandOutput,
|
|
33
|
+
DataExchangeClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateDataGrantCommand extends CreateDataGrantCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateDataGrantRequest;
|
|
43
|
+
output: CreateDataGrantResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateDataGrantCommandInput;
|
|
47
|
+
output: CreateDataGrantCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataExchangeClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataExchangeClient";
|
|
8
|
+
import { DeleteDataGrantRequest } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteDataGrantCommandInput extends DeleteDataGrantRequest {}
|
|
12
|
+
export interface DeleteDataGrantCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const DeleteDataGrantCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: DeleteDataGrantCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
DeleteDataGrantCommandInput,
|
|
18
|
+
DeleteDataGrantCommandOutput,
|
|
19
|
+
DataExchangeClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: DeleteDataGrantCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
DeleteDataGrantCommandInput,
|
|
27
|
+
DeleteDataGrantCommandOutput,
|
|
28
|
+
DataExchangeClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class DeleteDataGrantCommand extends DeleteDataGrantCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: DeleteDataGrantRequest;
|
|
38
|
+
output: {};
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: DeleteDataGrantCommandInput;
|
|
42
|
+
output: DeleteDataGrantCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|