@aws-sdk/client-amplify 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Amplify.d.ts +670 -190
- package/dist-types/ts3.4/AmplifyClient.d.ts +351 -110
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +37 -37
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1277 -1196
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
GetArtifactUrlRequest,
|
|
15
|
+
GetArtifactUrlResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetArtifactUrlCommandInput extends GetArtifactUrlRequest {}
|
|
18
|
+
export interface GetArtifactUrlCommandOutput
|
|
19
|
+
extends GetArtifactUrlResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetArtifactUrlCommand extends $Command<
|
|
23
|
+
GetArtifactUrlCommandInput,
|
|
24
|
+
GetArtifactUrlCommandOutput,
|
|
25
|
+
AmplifyClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetArtifactUrlCommandInput;
|
|
28
|
+
constructor(input: GetArtifactUrlCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmplifyClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetArtifactUrlCommandInput, GetArtifactUrlCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
GetBackendEnvironmentRequest,
|
|
15
|
+
GetBackendEnvironmentResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetBackendEnvironmentCommandInput
|
|
18
|
+
extends GetBackendEnvironmentRequest {}
|
|
19
|
+
export interface GetBackendEnvironmentCommandOutput
|
|
20
|
+
extends GetBackendEnvironmentResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetBackendEnvironmentCommand extends $Command<
|
|
24
|
+
GetBackendEnvironmentCommandInput,
|
|
25
|
+
GetBackendEnvironmentCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetBackendEnvironmentCommandInput;
|
|
29
|
+
constructor(input: GetBackendEnvironmentCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetBackendEnvironmentCommandInput,
|
|
37
|
+
GetBackendEnvironmentCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { GetBranchRequest, GetBranchResult } from "../models/models_0";
|
|
14
|
+
export interface GetBranchCommandInput extends GetBranchRequest {}
|
|
15
|
+
export interface GetBranchCommandOutput
|
|
16
|
+
extends GetBranchResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetBranchCommand extends $Command<
|
|
20
|
+
GetBranchCommandInput,
|
|
21
|
+
GetBranchCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetBranchCommandInput;
|
|
25
|
+
constructor(input: GetBranchCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetBranchCommandInput, GetBranchCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
GetDomainAssociationRequest,
|
|
15
|
+
GetDomainAssociationResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDomainAssociationCommandInput
|
|
18
|
+
extends GetDomainAssociationRequest {}
|
|
19
|
+
export interface GetDomainAssociationCommandOutput
|
|
20
|
+
extends GetDomainAssociationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetDomainAssociationCommand extends $Command<
|
|
24
|
+
GetDomainAssociationCommandInput,
|
|
25
|
+
GetDomainAssociationCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetDomainAssociationCommandInput;
|
|
29
|
+
constructor(input: GetDomainAssociationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GetDomainAssociationCommandInput,
|
|
37
|
+
GetDomainAssociationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { GetJobRequest, GetJobResult } from "../models/models_0";
|
|
14
|
+
export interface GetJobCommandInput extends GetJobRequest {}
|
|
15
|
+
export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class GetJobCommand extends $Command<
|
|
18
|
+
GetJobCommandInput,
|
|
19
|
+
GetJobCommandOutput,
|
|
20
|
+
AmplifyClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: GetJobCommandInput;
|
|
23
|
+
constructor(input: GetJobCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetJobCommandInput, GetJobCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { GetWebhookRequest, GetWebhookResult } from "../models/models_0";
|
|
14
|
+
export interface GetWebhookCommandInput extends GetWebhookRequest {}
|
|
15
|
+
export interface GetWebhookCommandOutput
|
|
16
|
+
extends GetWebhookResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetWebhookCommand extends $Command<
|
|
20
|
+
GetWebhookCommandInput,
|
|
21
|
+
GetWebhookCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetWebhookCommandInput;
|
|
25
|
+
constructor(input: GetWebhookCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetWebhookCommandInput, GetWebhookCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListAppsRequest, ListAppsResult } from "../models/models_0";
|
|
14
|
+
export interface ListAppsCommandInput extends ListAppsRequest {}
|
|
15
|
+
export interface ListAppsCommandOutput
|
|
16
|
+
extends ListAppsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListAppsCommand extends $Command<
|
|
20
|
+
ListAppsCommandInput,
|
|
21
|
+
ListAppsCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListAppsCommandInput;
|
|
25
|
+
constructor(input: ListAppsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListAppsCommandInput, ListAppsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListArtifactsRequest, ListArtifactsResult } from "../models/models_0";
|
|
14
|
+
export interface ListArtifactsCommandInput extends ListArtifactsRequest {}
|
|
15
|
+
export interface ListArtifactsCommandOutput
|
|
16
|
+
extends ListArtifactsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListArtifactsCommand extends $Command<
|
|
20
|
+
ListArtifactsCommandInput,
|
|
21
|
+
ListArtifactsCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListArtifactsCommandInput;
|
|
25
|
+
constructor(input: ListArtifactsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListArtifactsCommandInput, ListArtifactsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
ListBackendEnvironmentsRequest,
|
|
15
|
+
ListBackendEnvironmentsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListBackendEnvironmentsCommandInput
|
|
18
|
+
extends ListBackendEnvironmentsRequest {}
|
|
19
|
+
export interface ListBackendEnvironmentsCommandOutput
|
|
20
|
+
extends ListBackendEnvironmentsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListBackendEnvironmentsCommand extends $Command<
|
|
24
|
+
ListBackendEnvironmentsCommandInput,
|
|
25
|
+
ListBackendEnvironmentsCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListBackendEnvironmentsCommandInput;
|
|
29
|
+
constructor(input: ListBackendEnvironmentsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListBackendEnvironmentsCommandInput,
|
|
37
|
+
ListBackendEnvironmentsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListBranchesRequest, ListBranchesResult } from "../models/models_0";
|
|
14
|
+
export interface ListBranchesCommandInput extends ListBranchesRequest {}
|
|
15
|
+
export interface ListBranchesCommandOutput
|
|
16
|
+
extends ListBranchesResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListBranchesCommand extends $Command<
|
|
20
|
+
ListBranchesCommandInput,
|
|
21
|
+
ListBranchesCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListBranchesCommandInput;
|
|
25
|
+
constructor(input: ListBranchesCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListBranchesCommandInput, ListBranchesCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
ListDomainAssociationsRequest,
|
|
15
|
+
ListDomainAssociationsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListDomainAssociationsCommandInput
|
|
18
|
+
extends ListDomainAssociationsRequest {}
|
|
19
|
+
export interface ListDomainAssociationsCommandOutput
|
|
20
|
+
extends ListDomainAssociationsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListDomainAssociationsCommand extends $Command<
|
|
24
|
+
ListDomainAssociationsCommandInput,
|
|
25
|
+
ListDomainAssociationsCommandOutput,
|
|
26
|
+
AmplifyClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListDomainAssociationsCommandInput;
|
|
29
|
+
constructor(input: ListDomainAssociationsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListDomainAssociationsCommandInput,
|
|
37
|
+
ListDomainAssociationsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|