@aws-sdk/client-amplify 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/Amplify.d.ts +128 -194
- package/dist-types/ts3.4/AmplifyClient.d.ts +28 -77
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +6 -21
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListAppsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GenerateAccessLogsRequest,
|
|
4
|
-
GenerateAccessLogsResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GenerateAccessLogsRequest, GenerateAccessLogsResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GenerateAccessLogsCommandInput
|
|
8
|
-
extends GenerateAccessLogsRequest {}
|
|
4
|
+
export interface GenerateAccessLogsCommandInput extends GenerateAccessLogsRequest {}
|
|
9
5
|
export interface GenerateAccessLogsCommandOutput
|
|
10
|
-
extends GenerateAccessLogsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GenerateAccessLogsResult, __MetadataBearer {}
|
|
12
7
|
declare const GenerateAccessLogsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GenerateAccessLogsCommandInput
|
|
9
|
+
input: GenerateAccessLogsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GenerateAccessLogsCommandInput,
|
|
17
12
|
GenerateAccessLogsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GenerateAccessLogsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GenerateAccessLogsCommandInput
|
|
18
|
+
input: GenerateAccessLogsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GenerateAccessLogsCommandInput,
|
|
26
21
|
GenerateAccessLogsCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface GetAppCommandInput extends GetAppRequest {}
|
|
5
5
|
export interface GetAppCommandOutput extends GetAppResult, __MetadataBearer {}
|
|
6
6
|
declare const GetAppCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetAppCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
GetAppCommandInput,
|
|
9
11
|
GetAppCommandOutput,
|
|
10
12
|
import("..").AmplifyClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetAppCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
GetAppCommandInput,
|
|
16
20
|
GetAppCommandOutput,
|
|
17
21
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetArtifactUrlRequest,
|
|
4
|
-
GetArtifactUrlResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetArtifactUrlRequest, GetArtifactUrlResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface GetArtifactUrlCommandInput extends GetArtifactUrlRequest {}
|
|
8
|
-
export interface GetArtifactUrlCommandOutput
|
|
9
|
-
extends GetArtifactUrlResult,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetArtifactUrlCommandOutput extends GetArtifactUrlResult, __MetadataBearer {}
|
|
11
6
|
declare const GetArtifactUrlCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: GetArtifactUrlCommandInput
|
|
8
|
+
input: GetArtifactUrlCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
GetArtifactUrlCommandInput,
|
|
16
11
|
GetArtifactUrlCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const GetArtifactUrlCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: GetArtifactUrlCommandInput
|
|
17
|
+
input: GetArtifactUrlCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
GetArtifactUrlCommandInput,
|
|
25
20
|
GetArtifactUrlCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetBackendEnvironmentRequest,
|
|
4
|
-
GetBackendEnvironmentResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetBackendEnvironmentRequest, GetBackendEnvironmentResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetBackendEnvironmentCommandInput
|
|
8
|
-
extends GetBackendEnvironmentRequest {}
|
|
4
|
+
export interface GetBackendEnvironmentCommandInput extends GetBackendEnvironmentRequest {}
|
|
9
5
|
export interface GetBackendEnvironmentCommandOutput
|
|
10
|
-
extends GetBackendEnvironmentResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetBackendEnvironmentResult, __MetadataBearer {}
|
|
12
7
|
declare const GetBackendEnvironmentCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetBackendEnvironmentCommandInput
|
|
9
|
+
input: GetBackendEnvironmentCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetBackendEnvironmentCommandInput,
|
|
17
12
|
GetBackendEnvironmentCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetBackendEnvironmentCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetBackendEnvironmentCommandInput
|
|
18
|
+
input: GetBackendEnvironmentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetBackendEnvironmentCommandInput,
|
|
26
21
|
GetBackendEnvironmentCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetBranchRequest, GetBranchResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetBranchCommandInput extends GetBranchRequest {}
|
|
5
|
-
export interface GetBranchCommandOutput
|
|
6
|
-
extends GetBranchResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetBranchCommandOutput extends GetBranchResult, __MetadataBearer {}
|
|
8
6
|
declare const GetBranchCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetBranchCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetBranchCommandInput,
|
|
11
11
|
GetBranchCommandOutput,
|
|
12
12
|
import("..").AmplifyClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetBranchCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetBranchCommandInput,
|
|
18
20
|
GetBranchCommandOutput,
|
|
19
21
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDomainAssociationRequest,
|
|
4
|
-
GetDomainAssociationResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDomainAssociationRequest, GetDomainAssociationResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDomainAssociationCommandInput
|
|
8
|
-
extends GetDomainAssociationRequest {}
|
|
4
|
+
export interface GetDomainAssociationCommandInput extends GetDomainAssociationRequest {}
|
|
9
5
|
export interface GetDomainAssociationCommandOutput
|
|
10
|
-
extends GetDomainAssociationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDomainAssociationResult, __MetadataBearer {}
|
|
12
7
|
declare const GetDomainAssociationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDomainAssociationCommandInput
|
|
9
|
+
input: GetDomainAssociationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDomainAssociationCommandInput,
|
|
17
12
|
GetDomainAssociationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetDomainAssociationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetDomainAssociationCommandInput
|
|
18
|
+
input: GetDomainAssociationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetDomainAssociationCommandInput,
|
|
26
21
|
GetDomainAssociationCommandOutput,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface GetJobCommandInput extends GetJobRequest {}
|
|
5
5
|
export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {}
|
|
6
6
|
declare const GetJobCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetJobCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
GetJobCommandInput,
|
|
9
11
|
GetJobCommandOutput,
|
|
10
12
|
import("..").AmplifyClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetJobCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
GetJobCommandInput,
|
|
16
20
|
GetJobCommandOutput,
|
|
17
21
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetWebhookRequest, GetWebhookResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetWebhookCommandInput extends GetWebhookRequest {}
|
|
5
|
-
export interface GetWebhookCommandOutput
|
|
6
|
-
extends GetWebhookResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetWebhookCommandOutput extends GetWebhookResult, __MetadataBearer {}
|
|
8
6
|
declare const GetWebhookCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetWebhookCommandInput
|
|
8
|
+
input: GetWebhookCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetWebhookCommandInput,
|
|
13
11
|
GetWebhookCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetWebhookCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetWebhookCommandInput
|
|
17
|
+
input: GetWebhookCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetWebhookCommandInput,
|
|
22
20
|
GetWebhookCommandOutput,
|
|
@@ -2,11 +2,11 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListAppsRequest, ListAppsResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListAppsCommandInput extends ListAppsRequest {}
|
|
5
|
-
export interface ListAppsCommandOutput
|
|
6
|
-
extends ListAppsResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAppsCommandOutput extends ListAppsResult, __MetadataBearer {}
|
|
8
6
|
declare const ListAppsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListAppsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListAppsCommandInput,
|
|
11
11
|
ListAppsCommandOutput,
|
|
12
12
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListArtifactsRequest, ListArtifactsResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListArtifactsCommandInput extends ListArtifactsRequest {}
|
|
5
|
-
export interface ListArtifactsCommandOutput
|
|
6
|
-
extends ListArtifactsResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListArtifactsCommandOutput extends ListArtifactsResult, __MetadataBearer {}
|
|
8
6
|
declare const ListArtifactsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListArtifactsCommandInput
|
|
8
|
+
input: ListArtifactsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListArtifactsCommandInput,
|
|
13
11
|
ListArtifactsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListArtifactsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListArtifactsCommandInput
|
|
17
|
+
input: ListArtifactsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListArtifactsCommandInput,
|
|
22
20
|
ListArtifactsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListBackendEnvironmentsRequest,
|
|
4
|
-
ListBackendEnvironmentsResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListBackendEnvironmentsRequest, ListBackendEnvironmentsResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListBackendEnvironmentsCommandInput
|
|
8
|
-
extends ListBackendEnvironmentsRequest {}
|
|
4
|
+
export interface ListBackendEnvironmentsCommandInput extends ListBackendEnvironmentsRequest {}
|
|
9
5
|
export interface ListBackendEnvironmentsCommandOutput
|
|
10
|
-
extends ListBackendEnvironmentsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListBackendEnvironmentsResult, __MetadataBearer {}
|
|
12
7
|
declare const ListBackendEnvironmentsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListBackendEnvironmentsCommandInput
|
|
9
|
+
input: ListBackendEnvironmentsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListBackendEnvironmentsCommandInput,
|
|
17
12
|
ListBackendEnvironmentsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListBackendEnvironmentsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListBackendEnvironmentsCommandInput
|
|
18
|
+
input: ListBackendEnvironmentsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListBackendEnvironmentsCommandInput,
|
|
26
21
|
ListBackendEnvironmentsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListBranchesRequest, ListBranchesResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListBranchesCommandInput extends ListBranchesRequest {}
|
|
5
|
-
export interface ListBranchesCommandOutput
|
|
6
|
-
extends ListBranchesResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListBranchesCommandOutput extends ListBranchesResult, __MetadataBearer {}
|
|
8
6
|
declare const ListBranchesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListBranchesCommandInput
|
|
8
|
+
input: ListBranchesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListBranchesCommandInput,
|
|
13
11
|
ListBranchesCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListBranchesCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListBranchesCommandInput
|
|
17
|
+
input: ListBranchesCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListBranchesCommandInput,
|
|
22
20
|
ListBranchesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDomainAssociationsRequest,
|
|
4
|
-
ListDomainAssociationsResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDomainAssociationsRequest, ListDomainAssociationsResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDomainAssociationsCommandInput
|
|
8
|
-
extends ListDomainAssociationsRequest {}
|
|
4
|
+
export interface ListDomainAssociationsCommandInput extends ListDomainAssociationsRequest {}
|
|
9
5
|
export interface ListDomainAssociationsCommandOutput
|
|
10
|
-
extends ListDomainAssociationsResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListDomainAssociationsResult, __MetadataBearer {}
|
|
12
7
|
declare const ListDomainAssociationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListDomainAssociationsCommandInput
|
|
9
|
+
input: ListDomainAssociationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListDomainAssociationsCommandInput,
|
|
17
12
|
ListDomainAssociationsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListDomainAssociationsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListDomainAssociationsCommandInput
|
|
18
|
+
input: ListDomainAssociationsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListDomainAssociationsCommandInput,
|
|
26
21
|
ListDomainAssociationsCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListJobsRequest, ListJobsResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListJobsCommandInput extends ListJobsRequest {}
|
|
5
|
-
export interface ListJobsCommandOutput
|
|
6
|
-
extends ListJobsResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListJobsCommandOutput extends ListJobsResult, __MetadataBearer {}
|
|
8
6
|
declare const ListJobsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListJobsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListJobsCommandInput,
|
|
11
11
|
ListJobsCommandOutput,
|
|
12
12
|
import("..").AmplifyClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ListJobsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ListJobsCommandInput,
|
|
18
20
|
ListJobsCommandOutput,
|
|
19
21
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListWebhooksRequest, ListWebhooksResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListWebhooksCommandInput extends ListWebhooksRequest {}
|
|
5
|
-
export interface ListWebhooksCommandOutput
|
|
6
|
-
extends ListWebhooksResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListWebhooksCommandOutput extends ListWebhooksResult, __MetadataBearer {}
|
|
8
6
|
declare const ListWebhooksCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListWebhooksCommandInput
|
|
8
|
+
input: ListWebhooksCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListWebhooksCommandInput,
|
|
13
11
|
ListWebhooksCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const ListWebhooksCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: ListWebhooksCommandInput
|
|
17
|
+
input: ListWebhooksCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
ListWebhooksCommandInput,
|
|
22
20
|
ListWebhooksCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartDeploymentRequest,
|
|
4
|
-
StartDeploymentResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartDeploymentRequest, StartDeploymentResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartDeploymentCommandInput extends StartDeploymentRequest {}
|
|
8
|
-
export interface StartDeploymentCommandOutput
|
|
9
|
-
extends StartDeploymentResult,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartDeploymentCommandOutput extends StartDeploymentResult, __MetadataBearer {}
|
|
11
6
|
declare const StartDeploymentCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartDeploymentCommandInput
|
|
8
|
+
input: StartDeploymentCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartDeploymentCommandInput,
|
|
16
11
|
StartDeploymentCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartDeploymentCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartDeploymentCommandInput
|
|
17
|
+
input: StartDeploymentCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartDeploymentCommandInput,
|
|
25
20
|
StartDeploymentCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartJobRequest, StartJobResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartJobCommandInput extends StartJobRequest {}
|
|
5
|
-
export interface StartJobCommandOutput
|
|
6
|
-
extends StartJobResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartJobCommandOutput extends StartJobResult, __MetadataBearer {}
|
|
8
6
|
declare const StartJobCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: StartJobCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
StartJobCommandInput,
|
|
11
11
|
StartJobCommandOutput,
|
|
12
12
|
import("..").AmplifyClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: StartJobCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
StartJobCommandInput,
|
|
18
20
|
StartJobCommandOutput,
|
|
19
21
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -4,14 +4,18 @@ export { __MetadataBearer };
|
|
|
4
4
|
export interface StopJobCommandInput extends StopJobRequest {}
|
|
5
5
|
export interface StopJobCommandOutput extends StopJobResult, __MetadataBearer {}
|
|
6
6
|
declare const StopJobCommand_base: {
|
|
7
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: StopJobCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
8
10
|
StopJobCommandInput,
|
|
9
11
|
StopJobCommandOutput,
|
|
10
12
|
import("..").AmplifyClientResolvedConfig,
|
|
11
13
|
import("..").ServiceInputTypes,
|
|
12
14
|
import("..").ServiceOutputTypes
|
|
13
15
|
>;
|
|
14
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: StopJobCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
15
19
|
StopJobCommandInput,
|
|
16
20
|
StopJobCommandOutput,
|
|
17
21
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateAppRequest, UpdateAppResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateAppCommandInput extends UpdateAppRequest {}
|
|
5
|
-
export interface UpdateAppCommandOutput
|
|
6
|
-
extends UpdateAppResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateAppCommandOutput extends UpdateAppResult, __MetadataBearer {}
|
|
8
6
|
declare const UpdateAppCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: UpdateAppCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UpdateAppCommandInput,
|
|
11
11
|
UpdateAppCommandOutput,
|
|
12
12
|
import("..").AmplifyClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateAppCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
UpdateAppCommandInput,
|
|
18
20
|
UpdateAppCommandOutput,
|
|
19
21
|
import("..").AmplifyClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateBranchRequest, UpdateBranchResult } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateBranchCommandInput extends UpdateBranchRequest {}
|
|
5
|
-
export interface UpdateBranchCommandOutput
|
|
6
|
-
extends UpdateBranchResult,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateBranchCommandOutput extends UpdateBranchResult, __MetadataBearer {}
|
|
8
6
|
declare const UpdateBranchCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateBranchCommandInput
|
|
8
|
+
input: UpdateBranchCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateBranchCommandInput,
|
|
13
11
|
UpdateBranchCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateBranchCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateBranchCommandInput
|
|
17
|
+
input: UpdateBranchCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateBranchCommandInput,
|
|
22
20
|
UpdateBranchCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDomainAssociationRequest,
|
|
4
|
-
UpdateDomainAssociationResult,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDomainAssociationRequest, UpdateDomainAssociationResult } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateDomainAssociationCommandInput
|
|
8
|
-
extends UpdateDomainAssociationRequest {}
|
|
4
|
+
export interface UpdateDomainAssociationCommandInput extends UpdateDomainAssociationRequest {}
|
|
9
5
|
export interface UpdateDomainAssociationCommandOutput
|
|
10
|
-
extends UpdateDomainAssociationResult,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateDomainAssociationResult, __MetadataBearer {}
|
|
12
7
|
declare const UpdateDomainAssociationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateDomainAssociationCommandInput
|
|
9
|
+
input: UpdateDomainAssociationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateDomainAssociationCommandInput,
|
|
17
12
|
UpdateDomainAssociationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateDomainAssociationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateDomainAssociationCommandInput
|
|
18
|
+
input: UpdateDomainAssociationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateDomainAssociationCommandInput,
|
|
26
21
|
UpdateDomainAssociationCommandOutput,
|