@aws-sdk/client-amplify 3.948.0 → 3.953.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/index.js +480 -313
- package/dist-cjs/runtimeConfig.shared.js +7 -1
- package/dist-es/commands/CreateAppCommand.js +2 -2
- package/dist-es/commands/CreateBackendEnvironmentCommand.js +2 -2
- package/dist-es/commands/CreateBranchCommand.js +2 -2
- package/dist-es/commands/CreateDeploymentCommand.js +2 -2
- package/dist-es/commands/CreateDomainAssociationCommand.js +2 -2
- package/dist-es/commands/CreateWebhookCommand.js +2 -2
- package/dist-es/commands/DeleteAppCommand.js +2 -2
- package/dist-es/commands/DeleteBackendEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteBranchCommand.js +2 -2
- package/dist-es/commands/DeleteDomainAssociationCommand.js +2 -2
- package/dist-es/commands/DeleteJobCommand.js +2 -2
- package/dist-es/commands/DeleteWebhookCommand.js +2 -2
- package/dist-es/commands/GenerateAccessLogsCommand.js +2 -2
- package/dist-es/commands/GetAppCommand.js +2 -2
- package/dist-es/commands/GetArtifactUrlCommand.js +2 -2
- package/dist-es/commands/GetBackendEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetBranchCommand.js +2 -2
- package/dist-es/commands/GetDomainAssociationCommand.js +2 -2
- package/dist-es/commands/GetJobCommand.js +2 -2
- package/dist-es/commands/GetWebhookCommand.js +2 -2
- package/dist-es/commands/ListAppsCommand.js +2 -2
- package/dist-es/commands/ListArtifactsCommand.js +2 -2
- package/dist-es/commands/ListBackendEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListBranchesCommand.js +2 -2
- package/dist-es/commands/ListDomainAssociationsCommand.js +2 -2
- package/dist-es/commands/ListJobsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListWebhooksCommand.js +2 -2
- package/dist-es/commands/StartDeploymentCommand.js +2 -2
- package/dist-es/commands/StartJobCommand.js +2 -2
- package/dist-es/commands/StopJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAppCommand.js +2 -2
- package/dist-es/commands/UpdateBranchCommand.js +2 -2
- package/dist-es/commands/UpdateDomainAssociationCommand.js +2 -2
- package/dist-es/commands/UpdateWebhookCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -1
- package/dist-es/schemas/schemas_0.js +296 -268
- package/dist-types/AmplifyClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +140 -165
- package/dist-types/ts3.4/AmplifyClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +139 -166
- package/package.json +34 -34
|
@@ -26,7 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.amplify",
|
|
32
|
+
xmlNamespace: "http://amplify.amazonaws.com",
|
|
33
|
+
version: "2017-07-25",
|
|
34
|
+
serviceTarget: "Amplify",
|
|
35
|
+
},
|
|
30
36
|
serviceId: config?.serviceId ?? "Amplify",
|
|
31
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateApp } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateApp$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateAppCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateAppCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "CreateApp", {})
|
|
13
13
|
.n("AmplifyClient", "CreateAppCommand")
|
|
14
|
-
.sc(CreateApp)
|
|
14
|
+
.sc(CreateApp$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateBackendEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateBackendEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateBackendEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateBackendEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "CreateBackendEnvironment", {})
|
|
13
13
|
.n("AmplifyClient", "CreateBackendEnvironmentCommand")
|
|
14
|
-
.sc(CreateBackendEnvironment)
|
|
14
|
+
.sc(CreateBackendEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateBranch } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateBranch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateBranchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateBranchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "CreateBranch", {})
|
|
13
13
|
.n("AmplifyClient", "CreateBranchCommand")
|
|
14
|
-
.sc(CreateBranch)
|
|
14
|
+
.sc(CreateBranch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "CreateDeployment", {})
|
|
13
13
|
.n("AmplifyClient", "CreateDeploymentCommand")
|
|
14
|
-
.sc(CreateDeployment)
|
|
14
|
+
.sc(CreateDeployment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDomainAssociation } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDomainAssociation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDomainAssociationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDomainAssociationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "CreateDomainAssociation", {})
|
|
13
13
|
.n("AmplifyClient", "CreateDomainAssociationCommand")
|
|
14
|
-
.sc(CreateDomainAssociation)
|
|
14
|
+
.sc(CreateDomainAssociation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateWebhook } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateWebhook$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateWebhookCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateWebhookCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "CreateWebhook", {})
|
|
13
13
|
.n("AmplifyClient", "CreateWebhookCommand")
|
|
14
|
-
.sc(CreateWebhook)
|
|
14
|
+
.sc(CreateWebhook$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteApp } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteApp$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAppCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAppCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "DeleteApp", {})
|
|
13
13
|
.n("AmplifyClient", "DeleteAppCommand")
|
|
14
|
-
.sc(DeleteApp)
|
|
14
|
+
.sc(DeleteApp$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteBackendEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteBackendEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteBackendEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteBackendEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "DeleteBackendEnvironment", {})
|
|
13
13
|
.n("AmplifyClient", "DeleteBackendEnvironmentCommand")
|
|
14
|
-
.sc(DeleteBackendEnvironment)
|
|
14
|
+
.sc(DeleteBackendEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteBranch } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteBranch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteBranchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteBranchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "DeleteBranch", {})
|
|
13
13
|
.n("AmplifyClient", "DeleteBranchCommand")
|
|
14
|
-
.sc(DeleteBranch)
|
|
14
|
+
.sc(DeleteBranch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDomainAssociation } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDomainAssociation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDomainAssociationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDomainAssociationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "DeleteDomainAssociation", {})
|
|
13
13
|
.n("AmplifyClient", "DeleteDomainAssociationCommand")
|
|
14
|
-
.sc(DeleteDomainAssociation)
|
|
14
|
+
.sc(DeleteDomainAssociation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "DeleteJob", {})
|
|
13
13
|
.n("AmplifyClient", "DeleteJobCommand")
|
|
14
|
-
.sc(DeleteJob)
|
|
14
|
+
.sc(DeleteJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteWebhook } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteWebhook$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteWebhookCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteWebhookCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "DeleteWebhook", {})
|
|
13
13
|
.n("AmplifyClient", "DeleteWebhookCommand")
|
|
14
|
-
.sc(DeleteWebhook)
|
|
14
|
+
.sc(DeleteWebhook$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GenerateAccessLogs } from "../schemas/schemas_0";
|
|
4
|
+
import { GenerateAccessLogs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GenerateAccessLogsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GenerateAccessLogsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GenerateAccessLogs", {})
|
|
13
13
|
.n("AmplifyClient", "GenerateAccessLogsCommand")
|
|
14
|
-
.sc(GenerateAccessLogs)
|
|
14
|
+
.sc(GenerateAccessLogs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetApp } from "../schemas/schemas_0";
|
|
4
|
+
import { GetApp$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetAppCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetAppCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GetApp", {})
|
|
13
13
|
.n("AmplifyClient", "GetAppCommand")
|
|
14
|
-
.sc(GetApp)
|
|
14
|
+
.sc(GetApp$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetArtifactUrl } from "../schemas/schemas_0";
|
|
4
|
+
import { GetArtifactUrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetArtifactUrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetArtifactUrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GetArtifactUrl", {})
|
|
13
13
|
.n("AmplifyClient", "GetArtifactUrlCommand")
|
|
14
|
-
.sc(GetArtifactUrl)
|
|
14
|
+
.sc(GetArtifactUrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetBackendEnvironment } from "../schemas/schemas_0";
|
|
4
|
+
import { GetBackendEnvironment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetBackendEnvironmentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetBackendEnvironmentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GetBackendEnvironment", {})
|
|
13
13
|
.n("AmplifyClient", "GetBackendEnvironmentCommand")
|
|
14
|
-
.sc(GetBackendEnvironment)
|
|
14
|
+
.sc(GetBackendEnvironment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetBranch } from "../schemas/schemas_0";
|
|
4
|
+
import { GetBranch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetBranchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetBranchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GetBranch", {})
|
|
13
13
|
.n("AmplifyClient", "GetBranchCommand")
|
|
14
|
-
.sc(GetBranch)
|
|
14
|
+
.sc(GetBranch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDomainAssociation } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDomainAssociation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDomainAssociationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDomainAssociationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GetDomainAssociation", {})
|
|
13
13
|
.n("AmplifyClient", "GetDomainAssociationCommand")
|
|
14
|
-
.sc(GetDomainAssociation)
|
|
14
|
+
.sc(GetDomainAssociation$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GetJob", {})
|
|
13
13
|
.n("AmplifyClient", "GetJobCommand")
|
|
14
|
-
.sc(GetJob)
|
|
14
|
+
.sc(GetJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetWebhook } from "../schemas/schemas_0";
|
|
4
|
+
import { GetWebhook$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetWebhookCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetWebhookCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "GetWebhook", {})
|
|
13
13
|
.n("AmplifyClient", "GetWebhookCommand")
|
|
14
|
-
.sc(GetWebhook)
|
|
14
|
+
.sc(GetWebhook$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListApps } from "../schemas/schemas_0";
|
|
4
|
+
import { ListApps$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAppsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAppsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListApps", {})
|
|
13
13
|
.n("AmplifyClient", "ListAppsCommand")
|
|
14
|
-
.sc(ListApps)
|
|
14
|
+
.sc(ListApps$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListArtifacts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListArtifacts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListArtifactsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListArtifactsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListArtifacts", {})
|
|
13
13
|
.n("AmplifyClient", "ListArtifactsCommand")
|
|
14
|
-
.sc(ListArtifacts)
|
|
14
|
+
.sc(ListArtifacts$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBackendEnvironments } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBackendEnvironments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBackendEnvironmentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBackendEnvironmentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListBackendEnvironments", {})
|
|
13
13
|
.n("AmplifyClient", "ListBackendEnvironmentsCommand")
|
|
14
|
-
.sc(ListBackendEnvironments)
|
|
14
|
+
.sc(ListBackendEnvironments$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListBranches } from "../schemas/schemas_0";
|
|
4
|
+
import { ListBranches$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListBranchesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListBranchesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListBranches", {})
|
|
13
13
|
.n("AmplifyClient", "ListBranchesCommand")
|
|
14
|
-
.sc(ListBranches)
|
|
14
|
+
.sc(ListBranches$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDomainAssociations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDomainAssociations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDomainAssociationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDomainAssociationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListDomainAssociations", {})
|
|
13
13
|
.n("AmplifyClient", "ListDomainAssociationsCommand")
|
|
14
|
-
.sc(ListDomainAssociations)
|
|
14
|
+
.sc(ListDomainAssociations$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListJobs", {})
|
|
13
13
|
.n("AmplifyClient", "ListJobsCommand")
|
|
14
|
-
.sc(ListJobs)
|
|
14
|
+
.sc(ListJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListTagsForResource", {})
|
|
13
13
|
.n("AmplifyClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListWebhooks } from "../schemas/schemas_0";
|
|
4
|
+
import { ListWebhooks$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListWebhooksCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListWebhooksCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "ListWebhooks", {})
|
|
13
13
|
.n("AmplifyClient", "ListWebhooksCommand")
|
|
14
|
-
.sc(ListWebhooks)
|
|
14
|
+
.sc(ListWebhooks$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartDeployment } from "../schemas/schemas_0";
|
|
4
|
+
import { StartDeployment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartDeploymentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartDeploymentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "StartDeployment", {})
|
|
13
13
|
.n("AmplifyClient", "StartDeploymentCommand")
|
|
14
|
-
.sc(StartDeployment)
|
|
14
|
+
.sc(StartDeployment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "StartJob", {})
|
|
13
13
|
.n("AmplifyClient", "StartJobCommand")
|
|
14
|
-
.sc(StartJob)
|
|
14
|
+
.sc(StartJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StopJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "StopJob", {})
|
|
13
13
|
.n("AmplifyClient", "StopJobCommand")
|
|
14
|
-
.sc(StopJob)
|
|
14
|
+
.sc(StopJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "TagResource", {})
|
|
13
13
|
.n("AmplifyClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "UntagResource", {})
|
|
13
13
|
.n("AmplifyClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateApp } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateApp$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateAppCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateAppCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "UpdateApp", {})
|
|
13
13
|
.n("AmplifyClient", "UpdateAppCommand")
|
|
14
|
-
.sc(UpdateApp)
|
|
14
|
+
.sc(UpdateApp$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateBranch } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateBranch$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateBranchCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateBranchCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Amplify", "UpdateBranch", {})
|
|
13
13
|
.n("AmplifyClient", "UpdateBranchCommand")
|
|
14
|
-
.sc(UpdateBranch)
|
|
14
|
+
.sc(UpdateBranch$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|