@aws-sdk/client-dataexchange 3.533.0 → 3.535.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/dist-types/DataExchange.d.ts +4 -1
- package/dist-types/DataExchangeClient.d.ts +1 -1
- package/dist-types/commands/CancelJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataSetCommand.d.ts +2 -1
- package/dist-types/commands/CreateEventActionCommand.d.ts +2 -1
- package/dist-types/commands/CreateJobCommand.d.ts +2 -1
- package/dist-types/commands/CreateRevisionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAssetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataSetCommand.d.ts +2 -1
- package/dist-types/commands/DeleteEventActionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRevisionCommand.d.ts +2 -1
- package/dist-types/commands/GetAssetCommand.d.ts +2 -1
- package/dist-types/commands/GetDataSetCommand.d.ts +2 -1
- package/dist-types/commands/GetEventActionCommand.d.ts +2 -1
- package/dist-types/commands/GetJobCommand.d.ts +2 -1
- package/dist-types/commands/GetRevisionCommand.d.ts +2 -1
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +2 -1
- package/dist-types/commands/ListDataSetsCommand.d.ts +2 -1
- package/dist-types/commands/ListEventActionsCommand.d.ts +2 -1
- package/dist-types/commands/ListJobsCommand.d.ts +2 -1
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.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/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDataSetCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEventActionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateRevisionCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +553 -553
- package/dist-types/ts3.4/DataExchange.d.ts +3 -0
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateEventActionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRevisionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDataSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteEventActionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRevisionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDataSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEventActionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/GetRevisionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDataSetRevisionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListDataSetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListEventActionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListRevisionAssetsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RevokeRevisionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SendApiAssetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/SendDataSetNotificationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDataSetCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEventActionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateRevisionCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -124,18 +124,21 @@ export interface DataExchange {
|
|
|
124
124
|
/**
|
|
125
125
|
* @see {@link ListDataSetsCommand}
|
|
126
126
|
*/
|
|
127
|
+
listDataSets(): Promise<ListDataSetsCommandOutput>;
|
|
127
128
|
listDataSets(args: ListDataSetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDataSetsCommandOutput>;
|
|
128
129
|
listDataSets(args: ListDataSetsCommandInput, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
|
|
129
130
|
listDataSets(args: ListDataSetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDataSetsCommandOutput) => void): void;
|
|
130
131
|
/**
|
|
131
132
|
* @see {@link ListEventActionsCommand}
|
|
132
133
|
*/
|
|
134
|
+
listEventActions(): Promise<ListEventActionsCommandOutput>;
|
|
133
135
|
listEventActions(args: ListEventActionsCommandInput, options?: __HttpHandlerOptions): Promise<ListEventActionsCommandOutput>;
|
|
134
136
|
listEventActions(args: ListEventActionsCommandInput, cb: (err: any, data?: ListEventActionsCommandOutput) => void): void;
|
|
135
137
|
listEventActions(args: ListEventActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventActionsCommandOutput) => void): void;
|
|
136
138
|
/**
|
|
137
139
|
* @see {@link ListJobsCommand}
|
|
138
140
|
*/
|
|
141
|
+
listJobs(): Promise<ListJobsCommandOutput>;
|
|
139
142
|
listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
|
|
140
143
|
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
141
144
|
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
@@ -213,7 +216,6 @@ export interface DataExchange {
|
|
|
213
216
|
updateRevision(args: UpdateRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRevisionCommandOutput) => void): void;
|
|
214
217
|
}
|
|
215
218
|
/**
|
|
216
|
-
* @public
|
|
217
219
|
* <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p>
|
|
218
220
|
* <p>As a subscriber, you can view and access the data sets that you have an entitlement to through
|
|
219
221
|
* a subscription. You can use the APIs to download or copy your entitled data sets to Amazon
|
|
@@ -230,6 +232,7 @@ export interface DataExchange {
|
|
|
230
232
|
* Formation data permission, or Amazon S3 data access. The asset can be a structured data
|
|
231
233
|
* file, an image file, or some other data file. Jobs are asynchronous import or export
|
|
232
234
|
* operations used to create or copy assets.</p>
|
|
235
|
+
* @public
|
|
233
236
|
*/
|
|
234
237
|
export declare class DataExchange extends DataExchangeClient implements DataExchange {
|
|
235
238
|
}
|
|
@@ -181,7 +181,6 @@ export type DataExchangeClientResolvedConfigType = __SmithyResolvedConfiguration
|
|
|
181
181
|
export interface DataExchangeClientResolvedConfig extends DataExchangeClientResolvedConfigType {
|
|
182
182
|
}
|
|
183
183
|
/**
|
|
184
|
-
* @public
|
|
185
184
|
* <p>AWS Data Exchange is a service that makes it easy for AWS customers to exchange data in the cloud. You can use the AWS Data Exchange APIs to create, update, manage, and access file-based data set in the AWS Cloud.</p>
|
|
186
185
|
* <p>As a subscriber, you can view and access the data sets that you have an entitlement to through
|
|
187
186
|
* a subscription. You can use the APIs to download or copy your entitled data sets to Amazon
|
|
@@ -198,6 +197,7 @@ export interface DataExchangeClientResolvedConfig extends DataExchangeClientReso
|
|
|
198
197
|
* Formation data permission, or Amazon S3 data access. The asset can be a structured data
|
|
199
198
|
* file, an image file, or some other data file. Jobs are asynchronous import or export
|
|
200
199
|
* operations used to create or copy assets.</p>
|
|
200
|
+
* @public
|
|
201
201
|
*/
|
|
202
202
|
export declare class DataExchangeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DataExchangeClientResolvedConfig> {
|
|
203
203
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CancelJobCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const CancelJobCommand_base: {
|
|
24
24
|
new (input: CancelJobCommandInput): import("@smithy/smithy-client").CommandImpl<CancelJobCommandInput, CancelJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CancelJobCommandInput): import("@smithy/smithy-client").CommandImpl<CancelJobCommandInput, CancelJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation cancels a job. Jobs can be cancelled only when they are in the WAITING state.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -66,6 +66,7 @@ declare const CancelJobCommand_base: {
|
|
|
66
66
|
* @throws {@link DataExchangeServiceException}
|
|
67
67
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
68
68
|
*
|
|
69
|
+
* @public
|
|
69
70
|
*/
|
|
70
71
|
export declare class CancelJobCommand extends CancelJobCommand_base {
|
|
71
72
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateDataSetCommandOutput extends CreateDataSetResponse, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDataSetCommand_base: {
|
|
24
24
|
new (input: CreateDataSetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSetCommandInput, CreateDataSetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateDataSetCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSetCommandInput, CreateDataSetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation creates a data set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -87,6 +87,7 @@ declare const CreateDataSetCommand_base: {
|
|
|
87
87
|
* @throws {@link DataExchangeServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
89
89
|
*
|
|
90
|
+
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class CreateDataSetCommand extends CreateDataSetCommand_base {
|
|
92
93
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateEventActionCommandOutput extends CreateEventActionRespons
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateEventActionCommand_base: {
|
|
24
24
|
new (input: CreateEventActionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEventActionCommandInput, CreateEventActionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateEventActionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEventActionCommandInput, CreateEventActionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation creates an event action.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -104,6 +104,7 @@ declare const CreateEventActionCommand_base: {
|
|
|
104
104
|
* @throws {@link DataExchangeServiceException}
|
|
105
105
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
106
106
|
*
|
|
107
|
+
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class CreateEventActionCommand extends CreateEventActionCommand_base {
|
|
109
110
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateJobCommandOutput extends CreateJobResponse, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateJobCommand_base: {
|
|
24
24
|
new (input: CreateJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateJobCommandInput, CreateJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateJobCommandInput): import("@smithy/smithy-client").CommandImpl<CreateJobCommandInput, CreateJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation creates a job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -348,6 +348,7 @@ declare const CreateJobCommand_base: {
|
|
|
348
348
|
* @throws {@link DataExchangeServiceException}
|
|
349
349
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
350
350
|
*
|
|
351
|
+
* @public
|
|
351
352
|
*/
|
|
352
353
|
export declare class CreateJobCommand extends CreateJobCommand_base {
|
|
353
354
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateRevisionCommandOutput extends CreateRevisionResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateRevisionCommand_base: {
|
|
24
24
|
new (input: CreateRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRevisionCommandInput, CreateRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRevisionCommandInput, CreateRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation creates a revision for a data set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -85,6 +85,7 @@ declare const CreateRevisionCommand_base: {
|
|
|
85
85
|
* @throws {@link DataExchangeServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class CreateRevisionCommand extends CreateRevisionCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteAssetCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteAssetCommand_base: {
|
|
24
24
|
new (input: DeleteAssetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAssetCommandInput, DeleteAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteAssetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteAssetCommandInput, DeleteAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation deletes an asset.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -71,6 +71,7 @@ declare const DeleteAssetCommand_base: {
|
|
|
71
71
|
* @throws {@link DataExchangeServiceException}
|
|
72
72
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
73
73
|
*
|
|
74
|
+
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class DeleteAssetCommand extends DeleteAssetCommand_base {
|
|
76
77
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteDataSetCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteDataSetCommand_base: {
|
|
24
24
|
new (input: DeleteDataSetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataSetCommandInput, DeleteDataSetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteDataSetCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataSetCommandInput, DeleteDataSetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation deletes a data set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const DeleteDataSetCommand_base: {
|
|
|
69
69
|
* @throws {@link DataExchangeServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class DeleteDataSetCommand extends DeleteDataSetCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteEventActionCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteEventActionCommand_base: {
|
|
24
24
|
new (input: DeleteEventActionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEventActionCommandInput, DeleteEventActionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteEventActionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEventActionCommandInput, DeleteEventActionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation deletes the event action.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const DeleteEventActionCommand_base: {
|
|
|
63
63
|
* @throws {@link DataExchangeServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DeleteEventActionCommand extends DeleteEventActionCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteRevisionCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteRevisionCommand_base: {
|
|
24
24
|
new (input: DeleteRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRevisionCommandInput, DeleteRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRevisionCommandInput, DeleteRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation deletes a revision.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const DeleteRevisionCommand_base: {
|
|
|
70
70
|
* @throws {@link DataExchangeServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DeleteRevisionCommand extends DeleteRevisionCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetAssetCommand_base: {
|
|
24
24
|
new (input: GetAssetCommandInput): import("@smithy/smithy-client").CommandImpl<GetAssetCommandInput, GetAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetAssetCommandInput): import("@smithy/smithy-client").CommandImpl<GetAssetCommandInput, GetAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation returns information about an asset.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -145,6 +145,7 @@ declare const GetAssetCommand_base: {
|
|
|
145
145
|
* @throws {@link DataExchangeServiceException}
|
|
146
146
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
147
147
|
*
|
|
148
|
+
* @public
|
|
148
149
|
*/
|
|
149
150
|
export declare class GetAssetCommand extends GetAssetCommand_base {
|
|
150
151
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDataSetCommand_base: {
|
|
24
24
|
new (input: GetDataSetCommandInput): import("@smithy/smithy-client").CommandImpl<GetDataSetCommandInput, GetDataSetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetDataSetCommandInput): import("@smithy/smithy-client").CommandImpl<GetDataSetCommandInput, GetDataSetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation returns information about a data set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const GetDataSetCommand_base: {
|
|
|
79
79
|
* @throws {@link DataExchangeServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class GetDataSetCommand extends GetDataSetCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEventActionCommandOutput extends GetEventActionResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEventActionCommand_base: {
|
|
24
24
|
new (input: GetEventActionCommandInput): import("@smithy/smithy-client").CommandImpl<GetEventActionCommandInput, GetEventActionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetEventActionCommandInput): import("@smithy/smithy-client").CommandImpl<GetEventActionCommandInput, GetEventActionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation retrieves information about an event action.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -85,6 +85,7 @@ declare const GetEventActionCommand_base: {
|
|
|
85
85
|
* @throws {@link DataExchangeServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class GetEventActionCommand extends GetEventActionCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetJobCommand_base: {
|
|
24
24
|
new (input: GetJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetJobCommandInput, GetJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetJobCommandInput, GetJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation returns information about a job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -220,6 +220,7 @@ declare const GetJobCommand_base: {
|
|
|
220
220
|
* @throws {@link DataExchangeServiceException}
|
|
221
221
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
222
222
|
*
|
|
223
|
+
* @public
|
|
223
224
|
*/
|
|
224
225
|
export declare class GetJobCommand extends GetJobCommand_base {
|
|
225
226
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetRevisionCommand_base: {
|
|
24
24
|
new (input: GetRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<GetRevisionCommandInput, GetRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<GetRevisionCommandInput, GetRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation returns information about a revision.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -79,6 +79,7 @@ declare const GetRevisionCommand_base: {
|
|
|
79
79
|
* @throws {@link DataExchangeServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class GetRevisionCommand extends GetRevisionCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsR
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDataSetRevisionsCommand_base: {
|
|
24
24
|
new (input: ListDataSetRevisionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListDataSetRevisionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation lists a data set's revisions sorted by CreatedAt in descending order.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const ListDataSetRevisionsCommand_base: {
|
|
|
82
82
|
* @throws {@link DataExchangeServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class ListDataSetRevisionsCommand extends ListDataSetRevisionsCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListDataSetsCommand_base: {
|
|
24
24
|
new (input: ListDataSetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDataSetsCommandInput, ListDataSetsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListDataSetsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDataSetsCommandInput, ListDataSetsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation lists your data sets. When listing by origin OWNED, results are sorted by CreatedAt in descending order. When listing by origin ENTITLED, there is no order and the maxResults parameter is ignored.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const ListDataSetsCommand_base: {
|
|
|
83
83
|
* @throws {@link DataExchangeServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class ListDataSetsCommand extends ListDataSetsCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListEventActionsCommandOutput extends ListEventActionsResponse,
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListEventActionsCommand_base: {
|
|
24
24
|
new (input: ListEventActionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEventActionsCommandInput, ListEventActionsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListEventActionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListEventActionsCommandInput, ListEventActionsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation lists your event actions.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -92,6 +92,7 @@ declare const ListEventActionsCommand_base: {
|
|
|
92
92
|
* @throws {@link DataExchangeServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class ListEventActionsCommand extends ListEventActionsCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListJobsCommand_base: {
|
|
24
24
|
new (input: ListJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListJobsCommandInput, ListJobsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListJobsCommandInput, ListJobsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation lists your jobs sorted by CreatedAt in descending order.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -228,6 +228,7 @@ declare const ListJobsCommand_base: {
|
|
|
228
228
|
* @throws {@link DataExchangeServiceException}
|
|
229
229
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
230
230
|
*
|
|
231
|
+
* @public
|
|
231
232
|
*/
|
|
232
233
|
export declare class ListJobsCommand extends ListJobsCommand_base {
|
|
233
234
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListRevisionAssetsCommand_base: {
|
|
24
24
|
new (input: ListRevisionAssetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListRevisionAssetsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation lists a revision's assets sorted alphabetically in descending order.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -151,6 +151,7 @@ declare const ListRevisionAssetsCommand_base: {
|
|
|
151
151
|
* @throws {@link DataExchangeServiceException}
|
|
152
152
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
153
153
|
*
|
|
154
|
+
* @public
|
|
154
155
|
*/
|
|
155
156
|
export declare class ListRevisionAssetsCommand extends ListRevisionAssetsCommand_base {
|
|
156
157
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation lists the tags on the resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -55,6 +55,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
55
55
|
* @throws {@link DataExchangeServiceException}
|
|
56
56
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
57
57
|
*
|
|
58
|
+
* @public
|
|
58
59
|
*/
|
|
59
60
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
60
61
|
}
|
|
@@ -22,10 +22,10 @@ export interface RevokeRevisionCommandOutput extends RevokeRevisionResponse, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const RevokeRevisionCommand_base: {
|
|
24
24
|
new (input: RevokeRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeRevisionCommandInput, RevokeRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: RevokeRevisionCommandInput): import("@smithy/smithy-client").CommandImpl<RevokeRevisionCommandInput, RevokeRevisionCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation revokes subscribers' access to a revision.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -83,6 +83,7 @@ declare const RevokeRevisionCommand_base: {
|
|
|
83
83
|
* @throws {@link DataExchangeServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
85
85
|
*
|
|
86
|
+
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class RevokeRevisionCommand extends RevokeRevisionCommand_base {
|
|
88
89
|
}
|
|
@@ -22,10 +22,10 @@ export interface SendApiAssetCommandOutput extends SendApiAssetResponse, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const SendApiAssetCommand_base: {
|
|
24
24
|
new (input: SendApiAssetCommandInput): import("@smithy/smithy-client").CommandImpl<SendApiAssetCommandInput, SendApiAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SendApiAssetCommandInput): import("@smithy/smithy-client").CommandImpl<SendApiAssetCommandInput, SendApiAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation invokes an API Gateway API asset. The request is proxied to the provider’s API Gateway API.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -82,6 +82,7 @@ declare const SendApiAssetCommand_base: {
|
|
|
82
82
|
* @throws {@link DataExchangeServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
84
84
|
*
|
|
85
|
+
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class SendApiAssetCommand extends SendApiAssetCommand_base {
|
|
87
88
|
}
|
|
@@ -22,10 +22,10 @@ export interface SendDataSetNotificationCommandOutput extends SendDataSetNotific
|
|
|
22
22
|
}
|
|
23
23
|
declare const SendDataSetNotificationCommand_base: {
|
|
24
24
|
new (input: SendDataSetNotificationCommandInput): import("@smithy/smithy-client").CommandImpl<SendDataSetNotificationCommandInput, SendDataSetNotificationCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: SendDataSetNotificationCommandInput): import("@smithy/smithy-client").CommandImpl<SendDataSetNotificationCommandInput, SendDataSetNotificationCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>The type of event associated with the data set.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -118,6 +118,7 @@ declare const SendDataSetNotificationCommand_base: {
|
|
|
118
118
|
* @throws {@link DataExchangeServiceException}
|
|
119
119
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
120
120
|
*
|
|
121
|
+
* @public
|
|
121
122
|
*/
|
|
122
123
|
export declare class SendDataSetNotificationCommand extends SendDataSetNotificationCommand_base {
|
|
123
124
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartJobCommandOutput extends StartJobResponse, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartJobCommand_base: {
|
|
24
24
|
new (input: StartJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartJobCommandInput, StartJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartJobCommandInput, StartJobCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation starts a job.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const StartJobCommand_base: {
|
|
|
69
69
|
* @throws {@link DataExchangeServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class StartJobCommand extends StartJobCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation tags a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -54,6 +54,7 @@ declare const TagResourceCommand_base: {
|
|
|
54
54
|
* @throws {@link DataExchangeServiceException}
|
|
55
55
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
56
56
|
*
|
|
57
|
+
* @public
|
|
57
58
|
*/
|
|
58
59
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
59
60
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation removes one or more tags from a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -54,6 +54,7 @@ declare const UntagResourceCommand_base: {
|
|
|
54
54
|
* @throws {@link DataExchangeServiceException}
|
|
55
55
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
56
56
|
*
|
|
57
|
+
* @public
|
|
57
58
|
*/
|
|
58
59
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
59
60
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateAssetCommandOutput extends UpdateAssetResponse, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateAssetCommand_base: {
|
|
24
24
|
new (input: UpdateAssetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAssetCommandInput, UpdateAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateAssetCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAssetCommandInput, UpdateAssetCommandOutput, DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>This operation updates an asset.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -152,6 +152,7 @@ declare const UpdateAssetCommand_base: {
|
|
|
152
152
|
* @throws {@link DataExchangeServiceException}
|
|
153
153
|
* <p>Base exception class for all service exceptions from DataExchange service.</p>
|
|
154
154
|
*
|
|
155
|
+
* @public
|
|
155
156
|
*/
|
|
156
157
|
export declare class UpdateAssetCommand extends UpdateAssetCommand_base {
|
|
157
158
|
}
|