@aws-sdk/client-amplifybackend 3.306.0 → 3.309.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-cjs/commands/CloneBackendCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendAPICommand.js +2 -2
- package/dist-cjs/commands/CreateBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/CreateBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/CreateTokenCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendAPICommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendCommand.js +2 -2
- package/dist-cjs/commands/DeleteBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/DeleteTokenCommand.js +2 -2
- package/dist-cjs/commands/GenerateBackendAPIModelsCommand.js +2 -2
- package/dist-cjs/commands/GetBackendAPICommand.js +2 -2
- package/dist-cjs/commands/GetBackendAPIModelsCommand.js +2 -2
- package/dist-cjs/commands/GetBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/GetBackendCommand.js +2 -2
- package/dist-cjs/commands/GetBackendJobCommand.js +2 -2
- package/dist-cjs/commands/GetBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/GetTokenCommand.js +2 -2
- package/dist-cjs/commands/ImportBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/ImportBackendStorageCommand.js +2 -2
- package/dist-cjs/commands/ListBackendJobsCommand.js +2 -2
- package/dist-cjs/commands/ListS3BucketsCommand.js +2 -2
- package/dist-cjs/commands/RemoveAllBackendsCommand.js +2 -2
- package/dist-cjs/commands/RemoveBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendAPICommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendAuthCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendJobCommand.js +2 -2
- package/dist-cjs/commands/UpdateBackendStorageCommand.js +2 -2
- package/dist-cjs/protocols/Aws_restJson1.js +487 -553
- package/dist-es/commands/CloneBackendCommand.js +3 -3
- package/dist-es/commands/CreateBackendAPICommand.js +3 -3
- package/dist-es/commands/CreateBackendAuthCommand.js +3 -3
- package/dist-es/commands/CreateBackendCommand.js +3 -3
- package/dist-es/commands/CreateBackendConfigCommand.js +3 -3
- package/dist-es/commands/CreateBackendStorageCommand.js +3 -3
- package/dist-es/commands/CreateTokenCommand.js +3 -3
- package/dist-es/commands/DeleteBackendAPICommand.js +3 -3
- package/dist-es/commands/DeleteBackendAuthCommand.js +3 -3
- package/dist-es/commands/DeleteBackendCommand.js +3 -3
- package/dist-es/commands/DeleteBackendStorageCommand.js +3 -3
- package/dist-es/commands/DeleteTokenCommand.js +3 -3
- package/dist-es/commands/GenerateBackendAPIModelsCommand.js +3 -3
- package/dist-es/commands/GetBackendAPICommand.js +3 -3
- package/dist-es/commands/GetBackendAPIModelsCommand.js +3 -3
- package/dist-es/commands/GetBackendAuthCommand.js +3 -3
- package/dist-es/commands/GetBackendCommand.js +3 -3
- package/dist-es/commands/GetBackendJobCommand.js +3 -3
- package/dist-es/commands/GetBackendStorageCommand.js +3 -3
- package/dist-es/commands/GetTokenCommand.js +3 -3
- package/dist-es/commands/ImportBackendAuthCommand.js +3 -3
- package/dist-es/commands/ImportBackendStorageCommand.js +3 -3
- package/dist-es/commands/ListBackendJobsCommand.js +3 -3
- package/dist-es/commands/ListS3BucketsCommand.js +3 -3
- package/dist-es/commands/RemoveAllBackendsCommand.js +3 -3
- package/dist-es/commands/RemoveBackendConfigCommand.js +3 -3
- package/dist-es/commands/UpdateBackendAPICommand.js +3 -3
- package/dist-es/commands/UpdateBackendAuthCommand.js +3 -3
- package/dist-es/commands/UpdateBackendConfigCommand.js +3 -3
- package/dist-es/commands/UpdateBackendJobCommand.js +3 -3
- package/dist-es/commands/UpdateBackendStorageCommand.js +3 -3
- package/dist-es/protocols/Aws_restJson1.js +423 -489
- package/dist-types/protocols/Aws_restJson1.d.ts +248 -62
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +62 -62
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateBackendJobCommand, se_UpdateBackendJobCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class UpdateBackendJobCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateBackendJobCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateBackendJobCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateBackendJobCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateBackendStorageCommand, se_UpdateBackendStorageCommand } from "../protocols/Aws_restJson1";
|
|
5
5
|
export class UpdateBackendStorageCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateBackendStorageCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateBackendStorageCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateBackendStorageCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|