@aws-sdk/client-dataexchange 3.1020.0 → 3.1022.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 +1 -18
- package/dist-cjs/schemas/schemas_0.js +31 -14
- package/dist-es/schemas/schemas_0.js +27 -10
- package/dist-types/DataExchange.d.ts +1 -18
- package/dist-types/DataExchangeClient.d.ts +1 -18
- package/dist-types/commands/AcceptDataGrantCommand.d.ts +1 -2
- package/dist-types/commands/CancelJobCommand.d.ts +2 -4
- package/dist-types/commands/CreateJobCommand.d.ts +17 -2
- package/dist-types/commands/DeleteAssetCommand.d.ts +1 -2
- package/dist-types/commands/DeleteDataSetCommand.d.ts +1 -2
- package/dist-types/commands/DeleteRevisionCommand.d.ts +1 -2
- package/dist-types/commands/GetAssetCommand.d.ts +3 -0
- package/dist-types/commands/GetJobCommand.d.ts +8 -0
- package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +1 -2
- package/dist-types/commands/ListDataSetsCommand.d.ts +1 -2
- package/dist-types/commands/ListJobsCommand.d.ts +8 -0
- package/dist-types/commands/ListRevisionAssetsCommand.d.ts +1 -2
- package/dist-types/commands/RevokeRevisionCommand.d.ts +1 -2
- package/dist-types/commands/SendApiAssetCommand.d.ts +1 -2
- package/dist-types/commands/SendDataSetNotificationCommand.d.ts +1 -2
- package/dist-types/commands/StartJobCommand.d.ts +1 -2
- package/dist-types/commands/UpdateAssetCommand.d.ts +1 -2
- package/dist-types/commands/UpdateRevisionCommand.d.ts +1 -2
- package/dist-types/index.d.ts +1 -18
- package/dist-types/models/errors.d.ts +2 -4
- package/dist-types/models/models_0.d.ts +169 -320
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +6 -6
|
@@ -19,16 +19,14 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
19
19
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
23
|
-
* resource.</p>
|
|
22
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
24
23
|
* @public
|
|
25
24
|
*/
|
|
26
25
|
export declare class ConflictException extends __BaseException {
|
|
27
26
|
readonly name: "ConflictException";
|
|
28
27
|
readonly $fault: "client";
|
|
29
28
|
/**
|
|
30
|
-
* <p>The request couldn't be completed because it conflicted with the current state of the
|
|
31
|
-
* resource.</p>
|
|
29
|
+
* <p>The request couldn't be completed because it conflicted with the current state of the resource.</p>
|
|
32
30
|
* @public
|
|
33
31
|
*/
|
|
34
32
|
Message: string | undefined;
|