@aws-sdk/client-amplify 3.50.0 → 3.53.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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AmplifyServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +95 -2
- package/dist-cjs/protocols/Aws_restJson1.js +384 -1418
- package/dist-es/index.js +1 -0
- package/dist-es/models/AmplifyServiceException.js +12 -0
- package/dist-es/models/models_0.js +87 -1
- package/dist-es/protocols/Aws_restJson1.js +831 -1574
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AmplifyServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -29
- package/dist-types/ts3.4/Amplify.d.ts +190 -0
- package/dist-types/ts3.4/AmplifyClient.d.ts +110 -0
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +37 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1396 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +113 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from Amplify service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AmplifyServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AmplifyServiceException as __BaseException } from "./AmplifyServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p> A request contains unexpected data. </p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "BadRequestException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class BadRequestException extends __BaseException {
|
|
7
|
+
readonly name: "BadRequestException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
export declare enum Stage {
|
|
11
15
|
BETA = "BETA",
|
|
@@ -372,34 +376,46 @@ export declare namespace CreateAppResult {
|
|
|
372
376
|
/**
|
|
373
377
|
* <p> An operation failed because a dependent service threw an exception. </p>
|
|
374
378
|
*/
|
|
375
|
-
export
|
|
376
|
-
name: "DependentServiceFailureException";
|
|
377
|
-
$fault: "server";
|
|
378
|
-
|
|
379
|
+
export declare class DependentServiceFailureException extends __BaseException {
|
|
380
|
+
readonly name: "DependentServiceFailureException";
|
|
381
|
+
readonly $fault: "server";
|
|
382
|
+
/**
|
|
383
|
+
* @internal
|
|
384
|
+
*/
|
|
385
|
+
constructor(opts: __ExceptionOptionType<DependentServiceFailureException, __BaseException>);
|
|
379
386
|
}
|
|
380
387
|
/**
|
|
381
388
|
* <p> The service failed to perform an operation due to an internal issue. </p>
|
|
382
389
|
*/
|
|
383
|
-
export
|
|
384
|
-
name: "InternalFailureException";
|
|
385
|
-
$fault: "server";
|
|
386
|
-
|
|
390
|
+
export declare class InternalFailureException extends __BaseException {
|
|
391
|
+
readonly name: "InternalFailureException";
|
|
392
|
+
readonly $fault: "server";
|
|
393
|
+
/**
|
|
394
|
+
* @internal
|
|
395
|
+
*/
|
|
396
|
+
constructor(opts: __ExceptionOptionType<InternalFailureException, __BaseException>);
|
|
387
397
|
}
|
|
388
398
|
/**
|
|
389
399
|
* <p> A resource could not be created because service quotas were exceeded. </p>
|
|
390
400
|
*/
|
|
391
|
-
export
|
|
392
|
-
name: "LimitExceededException";
|
|
393
|
-
$fault: "client";
|
|
394
|
-
|
|
401
|
+
export declare class LimitExceededException extends __BaseException {
|
|
402
|
+
readonly name: "LimitExceededException";
|
|
403
|
+
readonly $fault: "client";
|
|
404
|
+
/**
|
|
405
|
+
* @internal
|
|
406
|
+
*/
|
|
407
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
395
408
|
}
|
|
396
409
|
/**
|
|
397
410
|
* <p> An operation failed due to a lack of access. </p>
|
|
398
411
|
*/
|
|
399
|
-
export
|
|
400
|
-
name: "UnauthorizedException";
|
|
401
|
-
$fault: "client";
|
|
402
|
-
|
|
412
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
413
|
+
readonly name: "UnauthorizedException";
|
|
414
|
+
readonly $fault: "client";
|
|
415
|
+
/**
|
|
416
|
+
* @internal
|
|
417
|
+
*/
|
|
418
|
+
constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
|
|
403
419
|
}
|
|
404
420
|
/**
|
|
405
421
|
* <p> The request structure for the backend environment create request. </p>
|
|
@@ -484,10 +500,13 @@ export declare namespace CreateBackendEnvironmentResult {
|
|
|
484
500
|
/**
|
|
485
501
|
* <p> An entity was not found during an operation. </p>
|
|
486
502
|
*/
|
|
487
|
-
export
|
|
488
|
-
name: "NotFoundException";
|
|
489
|
-
$fault: "client";
|
|
490
|
-
|
|
503
|
+
export declare class NotFoundException extends __BaseException {
|
|
504
|
+
readonly name: "NotFoundException";
|
|
505
|
+
readonly $fault: "client";
|
|
506
|
+
/**
|
|
507
|
+
* @internal
|
|
508
|
+
*/
|
|
509
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
491
510
|
}
|
|
492
511
|
/**
|
|
493
512
|
* <p> The request structure for the create branch request. </p>
|
|
@@ -1954,11 +1973,14 @@ export declare namespace ListTagsForResourceResponse {
|
|
|
1954
1973
|
/**
|
|
1955
1974
|
* <p> An operation failed due to a non-existent resource. </p>
|
|
1956
1975
|
*/
|
|
1957
|
-
export
|
|
1958
|
-
name: "ResourceNotFoundException";
|
|
1959
|
-
$fault: "client";
|
|
1976
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
1977
|
+
readonly name: "ResourceNotFoundException";
|
|
1978
|
+
readonly $fault: "client";
|
|
1960
1979
|
code: string | undefined;
|
|
1961
|
-
|
|
1980
|
+
/**
|
|
1981
|
+
* @internal
|
|
1982
|
+
*/
|
|
1983
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
1962
1984
|
}
|
|
1963
1985
|
/**
|
|
1964
1986
|
* <p> The request structure for the list webhooks request. </p>
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { AmplifyClient } from "./AmplifyClient";
|
|
3
|
+
import { CreateAppCommandInput, CreateAppCommandOutput } from "./commands/CreateAppCommand";
|
|
4
|
+
import { CreateBackendEnvironmentCommandInput, CreateBackendEnvironmentCommandOutput } from "./commands/CreateBackendEnvironmentCommand";
|
|
5
|
+
import { CreateBranchCommandInput, CreateBranchCommandOutput } from "./commands/CreateBranchCommand";
|
|
6
|
+
import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./commands/CreateDeploymentCommand";
|
|
7
|
+
import { CreateDomainAssociationCommandInput, CreateDomainAssociationCommandOutput } from "./commands/CreateDomainAssociationCommand";
|
|
8
|
+
import { CreateWebhookCommandInput, CreateWebhookCommandOutput } from "./commands/CreateWebhookCommand";
|
|
9
|
+
import { DeleteAppCommandInput, DeleteAppCommandOutput } from "./commands/DeleteAppCommand";
|
|
10
|
+
import { DeleteBackendEnvironmentCommandInput, DeleteBackendEnvironmentCommandOutput } from "./commands/DeleteBackendEnvironmentCommand";
|
|
11
|
+
import { DeleteBranchCommandInput, DeleteBranchCommandOutput } from "./commands/DeleteBranchCommand";
|
|
12
|
+
import { DeleteDomainAssociationCommandInput, DeleteDomainAssociationCommandOutput } from "./commands/DeleteDomainAssociationCommand";
|
|
13
|
+
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
14
|
+
import { DeleteWebhookCommandInput, DeleteWebhookCommandOutput } from "./commands/DeleteWebhookCommand";
|
|
15
|
+
import { GenerateAccessLogsCommandInput, GenerateAccessLogsCommandOutput } from "./commands/GenerateAccessLogsCommand";
|
|
16
|
+
import { GetAppCommandInput, GetAppCommandOutput } from "./commands/GetAppCommand";
|
|
17
|
+
import { GetArtifactUrlCommandInput, GetArtifactUrlCommandOutput } from "./commands/GetArtifactUrlCommand";
|
|
18
|
+
import { GetBackendEnvironmentCommandInput, GetBackendEnvironmentCommandOutput } from "./commands/GetBackendEnvironmentCommand";
|
|
19
|
+
import { GetBranchCommandInput, GetBranchCommandOutput } from "./commands/GetBranchCommand";
|
|
20
|
+
import { GetDomainAssociationCommandInput, GetDomainAssociationCommandOutput } from "./commands/GetDomainAssociationCommand";
|
|
21
|
+
import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
|
|
22
|
+
import { GetWebhookCommandInput, GetWebhookCommandOutput } from "./commands/GetWebhookCommand";
|
|
23
|
+
import { ListAppsCommandInput, ListAppsCommandOutput } from "./commands/ListAppsCommand";
|
|
24
|
+
import { ListArtifactsCommandInput, ListArtifactsCommandOutput } from "./commands/ListArtifactsCommand";
|
|
25
|
+
import { ListBackendEnvironmentsCommandInput, ListBackendEnvironmentsCommandOutput } from "./commands/ListBackendEnvironmentsCommand";
|
|
26
|
+
import { ListBranchesCommandInput, ListBranchesCommandOutput } from "./commands/ListBranchesCommand";
|
|
27
|
+
import { ListDomainAssociationsCommandInput, ListDomainAssociationsCommandOutput } from "./commands/ListDomainAssociationsCommand";
|
|
28
|
+
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
29
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
30
|
+
import { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
|
|
31
|
+
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
|
|
32
|
+
import { StartJobCommandInput, StartJobCommandOutput } from "./commands/StartJobCommand";
|
|
33
|
+
import { StopJobCommandInput, StopJobCommandOutput } from "./commands/StopJobCommand";
|
|
34
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
35
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
36
|
+
import { UpdateAppCommandInput, UpdateAppCommandOutput } from "./commands/UpdateAppCommand";
|
|
37
|
+
import { UpdateBranchCommandInput, UpdateBranchCommandOutput } from "./commands/UpdateBranchCommand";
|
|
38
|
+
import { UpdateDomainAssociationCommandInput, UpdateDomainAssociationCommandOutput } from "./commands/UpdateDomainAssociationCommand";
|
|
39
|
+
import { UpdateWebhookCommandInput, UpdateWebhookCommandOutput } from "./commands/UpdateWebhookCommand";
|
|
40
|
+
|
|
41
|
+
export declare class Amplify extends AmplifyClient {
|
|
42
|
+
|
|
43
|
+
createApp(args: CreateAppCommandInput, options?: __HttpHandlerOptions): Promise<CreateAppCommandOutput>;
|
|
44
|
+
createApp(args: CreateAppCommandInput, cb: (err: any, data?: CreateAppCommandOutput) => void): void;
|
|
45
|
+
createApp(args: CreateAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAppCommandOutput) => void): void;
|
|
46
|
+
|
|
47
|
+
createBackendEnvironment(args: CreateBackendEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateBackendEnvironmentCommandOutput>;
|
|
48
|
+
createBackendEnvironment(args: CreateBackendEnvironmentCommandInput, cb: (err: any, data?: CreateBackendEnvironmentCommandOutput) => void): void;
|
|
49
|
+
createBackendEnvironment(args: CreateBackendEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackendEnvironmentCommandOutput) => void): void;
|
|
50
|
+
|
|
51
|
+
createBranch(args: CreateBranchCommandInput, options?: __HttpHandlerOptions): Promise<CreateBranchCommandOutput>;
|
|
52
|
+
createBranch(args: CreateBranchCommandInput, cb: (err: any, data?: CreateBranchCommandOutput) => void): void;
|
|
53
|
+
createBranch(args: CreateBranchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBranchCommandOutput) => void): void;
|
|
54
|
+
|
|
55
|
+
createDeployment(args: CreateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeploymentCommandOutput>;
|
|
56
|
+
createDeployment(args: CreateDeploymentCommandInput, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
57
|
+
createDeployment(args: CreateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
58
|
+
|
|
59
|
+
createDomainAssociation(args: CreateDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDomainAssociationCommandOutput>;
|
|
60
|
+
createDomainAssociation(args: CreateDomainAssociationCommandInput, cb: (err: any, data?: CreateDomainAssociationCommandOutput) => void): void;
|
|
61
|
+
createDomainAssociation(args: CreateDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDomainAssociationCommandOutput) => void): void;
|
|
62
|
+
|
|
63
|
+
createWebhook(args: CreateWebhookCommandInput, options?: __HttpHandlerOptions): Promise<CreateWebhookCommandOutput>;
|
|
64
|
+
createWebhook(args: CreateWebhookCommandInput, cb: (err: any, data?: CreateWebhookCommandOutput) => void): void;
|
|
65
|
+
createWebhook(args: CreateWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWebhookCommandOutput) => void): void;
|
|
66
|
+
|
|
67
|
+
deleteApp(args: DeleteAppCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAppCommandOutput>;
|
|
68
|
+
deleteApp(args: DeleteAppCommandInput, cb: (err: any, data?: DeleteAppCommandOutput) => void): void;
|
|
69
|
+
deleteApp(args: DeleteAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAppCommandOutput) => void): void;
|
|
70
|
+
|
|
71
|
+
deleteBackendEnvironment(args: DeleteBackendEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBackendEnvironmentCommandOutput>;
|
|
72
|
+
deleteBackendEnvironment(args: DeleteBackendEnvironmentCommandInput, cb: (err: any, data?: DeleteBackendEnvironmentCommandOutput) => void): void;
|
|
73
|
+
deleteBackendEnvironment(args: DeleteBackendEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackendEnvironmentCommandOutput) => void): void;
|
|
74
|
+
|
|
75
|
+
deleteBranch(args: DeleteBranchCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBranchCommandOutput>;
|
|
76
|
+
deleteBranch(args: DeleteBranchCommandInput, cb: (err: any, data?: DeleteBranchCommandOutput) => void): void;
|
|
77
|
+
deleteBranch(args: DeleteBranchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBranchCommandOutput) => void): void;
|
|
78
|
+
|
|
79
|
+
deleteDomainAssociation(args: DeleteDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainAssociationCommandOutput>;
|
|
80
|
+
deleteDomainAssociation(args: DeleteDomainAssociationCommandInput, cb: (err: any, data?: DeleteDomainAssociationCommandOutput) => void): void;
|
|
81
|
+
deleteDomainAssociation(args: DeleteDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainAssociationCommandOutput) => void): void;
|
|
82
|
+
|
|
83
|
+
deleteJob(args: DeleteJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteJobCommandOutput>;
|
|
84
|
+
deleteJob(args: DeleteJobCommandInput, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
|
|
85
|
+
deleteJob(args: DeleteJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteJobCommandOutput) => void): void;
|
|
86
|
+
|
|
87
|
+
deleteWebhook(args: DeleteWebhookCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWebhookCommandOutput>;
|
|
88
|
+
deleteWebhook(args: DeleteWebhookCommandInput, cb: (err: any, data?: DeleteWebhookCommandOutput) => void): void;
|
|
89
|
+
deleteWebhook(args: DeleteWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWebhookCommandOutput) => void): void;
|
|
90
|
+
|
|
91
|
+
generateAccessLogs(args: GenerateAccessLogsCommandInput, options?: __HttpHandlerOptions): Promise<GenerateAccessLogsCommandOutput>;
|
|
92
|
+
generateAccessLogs(args: GenerateAccessLogsCommandInput, cb: (err: any, data?: GenerateAccessLogsCommandOutput) => void): void;
|
|
93
|
+
generateAccessLogs(args: GenerateAccessLogsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GenerateAccessLogsCommandOutput) => void): void;
|
|
94
|
+
|
|
95
|
+
getApp(args: GetAppCommandInput, options?: __HttpHandlerOptions): Promise<GetAppCommandOutput>;
|
|
96
|
+
getApp(args: GetAppCommandInput, cb: (err: any, data?: GetAppCommandOutput) => void): void;
|
|
97
|
+
getApp(args: GetAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAppCommandOutput) => void): void;
|
|
98
|
+
|
|
99
|
+
getArtifactUrl(args: GetArtifactUrlCommandInput, options?: __HttpHandlerOptions): Promise<GetArtifactUrlCommandOutput>;
|
|
100
|
+
getArtifactUrl(args: GetArtifactUrlCommandInput, cb: (err: any, data?: GetArtifactUrlCommandOutput) => void): void;
|
|
101
|
+
getArtifactUrl(args: GetArtifactUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetArtifactUrlCommandOutput) => void): void;
|
|
102
|
+
|
|
103
|
+
getBackendEnvironment(args: GetBackendEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetBackendEnvironmentCommandOutput>;
|
|
104
|
+
getBackendEnvironment(args: GetBackendEnvironmentCommandInput, cb: (err: any, data?: GetBackendEnvironmentCommandOutput) => void): void;
|
|
105
|
+
getBackendEnvironment(args: GetBackendEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBackendEnvironmentCommandOutput) => void): void;
|
|
106
|
+
|
|
107
|
+
getBranch(args: GetBranchCommandInput, options?: __HttpHandlerOptions): Promise<GetBranchCommandOutput>;
|
|
108
|
+
getBranch(args: GetBranchCommandInput, cb: (err: any, data?: GetBranchCommandOutput) => void): void;
|
|
109
|
+
getBranch(args: GetBranchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBranchCommandOutput) => void): void;
|
|
110
|
+
|
|
111
|
+
getDomainAssociation(args: GetDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainAssociationCommandOutput>;
|
|
112
|
+
getDomainAssociation(args: GetDomainAssociationCommandInput, cb: (err: any, data?: GetDomainAssociationCommandOutput) => void): void;
|
|
113
|
+
getDomainAssociation(args: GetDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainAssociationCommandOutput) => void): void;
|
|
114
|
+
|
|
115
|
+
getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
|
|
116
|
+
getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
117
|
+
getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
118
|
+
|
|
119
|
+
getWebhook(args: GetWebhookCommandInput, options?: __HttpHandlerOptions): Promise<GetWebhookCommandOutput>;
|
|
120
|
+
getWebhook(args: GetWebhookCommandInput, cb: (err: any, data?: GetWebhookCommandOutput) => void): void;
|
|
121
|
+
getWebhook(args: GetWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWebhookCommandOutput) => void): void;
|
|
122
|
+
|
|
123
|
+
listApps(args: ListAppsCommandInput, options?: __HttpHandlerOptions): Promise<ListAppsCommandOutput>;
|
|
124
|
+
listApps(args: ListAppsCommandInput, cb: (err: any, data?: ListAppsCommandOutput) => void): void;
|
|
125
|
+
listApps(args: ListAppsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAppsCommandOutput) => void): void;
|
|
126
|
+
|
|
127
|
+
listArtifacts(args: ListArtifactsCommandInput, options?: __HttpHandlerOptions): Promise<ListArtifactsCommandOutput>;
|
|
128
|
+
listArtifacts(args: ListArtifactsCommandInput, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
|
|
129
|
+
listArtifacts(args: ListArtifactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
|
|
130
|
+
|
|
131
|
+
listBackendEnvironments(args: ListBackendEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListBackendEnvironmentsCommandOutput>;
|
|
132
|
+
listBackendEnvironments(args: ListBackendEnvironmentsCommandInput, cb: (err: any, data?: ListBackendEnvironmentsCommandOutput) => void): void;
|
|
133
|
+
listBackendEnvironments(args: ListBackendEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBackendEnvironmentsCommandOutput) => void): void;
|
|
134
|
+
|
|
135
|
+
listBranches(args: ListBranchesCommandInput, options?: __HttpHandlerOptions): Promise<ListBranchesCommandOutput>;
|
|
136
|
+
listBranches(args: ListBranchesCommandInput, cb: (err: any, data?: ListBranchesCommandOutput) => void): void;
|
|
137
|
+
listBranches(args: ListBranchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBranchesCommandOutput) => void): void;
|
|
138
|
+
|
|
139
|
+
listDomainAssociations(args: ListDomainAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainAssociationsCommandOutput>;
|
|
140
|
+
listDomainAssociations(args: ListDomainAssociationsCommandInput, cb: (err: any, data?: ListDomainAssociationsCommandOutput) => void): void;
|
|
141
|
+
listDomainAssociations(args: ListDomainAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainAssociationsCommandOutput) => void): void;
|
|
142
|
+
|
|
143
|
+
listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
|
|
144
|
+
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
145
|
+
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
146
|
+
|
|
147
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
148
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
149
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
150
|
+
|
|
151
|
+
listWebhooks(args: ListWebhooksCommandInput, options?: __HttpHandlerOptions): Promise<ListWebhooksCommandOutput>;
|
|
152
|
+
listWebhooks(args: ListWebhooksCommandInput, cb: (err: any, data?: ListWebhooksCommandOutput) => void): void;
|
|
153
|
+
listWebhooks(args: ListWebhooksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWebhooksCommandOutput) => void): void;
|
|
154
|
+
|
|
155
|
+
startDeployment(args: StartDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<StartDeploymentCommandOutput>;
|
|
156
|
+
startDeployment(args: StartDeploymentCommandInput, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
|
|
157
|
+
startDeployment(args: StartDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
|
|
158
|
+
|
|
159
|
+
startJob(args: StartJobCommandInput, options?: __HttpHandlerOptions): Promise<StartJobCommandOutput>;
|
|
160
|
+
startJob(args: StartJobCommandInput, cb: (err: any, data?: StartJobCommandOutput) => void): void;
|
|
161
|
+
startJob(args: StartJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartJobCommandOutput) => void): void;
|
|
162
|
+
|
|
163
|
+
stopJob(args: StopJobCommandInput, options?: __HttpHandlerOptions): Promise<StopJobCommandOutput>;
|
|
164
|
+
stopJob(args: StopJobCommandInput, cb: (err: any, data?: StopJobCommandOutput) => void): void;
|
|
165
|
+
stopJob(args: StopJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopJobCommandOutput) => void): void;
|
|
166
|
+
|
|
167
|
+
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
168
|
+
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
169
|
+
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
170
|
+
|
|
171
|
+
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
172
|
+
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
173
|
+
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
174
|
+
|
|
175
|
+
updateApp(args: UpdateAppCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAppCommandOutput>;
|
|
176
|
+
updateApp(args: UpdateAppCommandInput, cb: (err: any, data?: UpdateAppCommandOutput) => void): void;
|
|
177
|
+
updateApp(args: UpdateAppCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAppCommandOutput) => void): void;
|
|
178
|
+
|
|
179
|
+
updateBranch(args: UpdateBranchCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBranchCommandOutput>;
|
|
180
|
+
updateBranch(args: UpdateBranchCommandInput, cb: (err: any, data?: UpdateBranchCommandOutput) => void): void;
|
|
181
|
+
updateBranch(args: UpdateBranchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBranchCommandOutput) => void): void;
|
|
182
|
+
|
|
183
|
+
updateDomainAssociation(args: UpdateDomainAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDomainAssociationCommandOutput>;
|
|
184
|
+
updateDomainAssociation(args: UpdateDomainAssociationCommandInput, cb: (err: any, data?: UpdateDomainAssociationCommandOutput) => void): void;
|
|
185
|
+
updateDomainAssociation(args: UpdateDomainAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDomainAssociationCommandOutput) => void): void;
|
|
186
|
+
|
|
187
|
+
updateWebhook(args: UpdateWebhookCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWebhookCommandOutput>;
|
|
188
|
+
updateWebhook(args: UpdateWebhookCommandInput, cb: (err: any, data?: UpdateWebhookCommandOutput) => void): void;
|
|
189
|
+
updateWebhook(args: UpdateWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWebhookCommandOutput) => void): void;
|
|
190
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
|
|
2
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
3
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
|
|
4
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
+
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
|
+
import { CreateAppCommandInput, CreateAppCommandOutput } from "./commands/CreateAppCommand";
|
|
10
|
+
import { CreateBackendEnvironmentCommandInput, CreateBackendEnvironmentCommandOutput } from "./commands/CreateBackendEnvironmentCommand";
|
|
11
|
+
import { CreateBranchCommandInput, CreateBranchCommandOutput } from "./commands/CreateBranchCommand";
|
|
12
|
+
import { CreateDeploymentCommandInput, CreateDeploymentCommandOutput } from "./commands/CreateDeploymentCommand";
|
|
13
|
+
import { CreateDomainAssociationCommandInput, CreateDomainAssociationCommandOutput } from "./commands/CreateDomainAssociationCommand";
|
|
14
|
+
import { CreateWebhookCommandInput, CreateWebhookCommandOutput } from "./commands/CreateWebhookCommand";
|
|
15
|
+
import { DeleteAppCommandInput, DeleteAppCommandOutput } from "./commands/DeleteAppCommand";
|
|
16
|
+
import { DeleteBackendEnvironmentCommandInput, DeleteBackendEnvironmentCommandOutput } from "./commands/DeleteBackendEnvironmentCommand";
|
|
17
|
+
import { DeleteBranchCommandInput, DeleteBranchCommandOutput } from "./commands/DeleteBranchCommand";
|
|
18
|
+
import { DeleteDomainAssociationCommandInput, DeleteDomainAssociationCommandOutput } from "./commands/DeleteDomainAssociationCommand";
|
|
19
|
+
import { DeleteJobCommandInput, DeleteJobCommandOutput } from "./commands/DeleteJobCommand";
|
|
20
|
+
import { DeleteWebhookCommandInput, DeleteWebhookCommandOutput } from "./commands/DeleteWebhookCommand";
|
|
21
|
+
import { GenerateAccessLogsCommandInput, GenerateAccessLogsCommandOutput } from "./commands/GenerateAccessLogsCommand";
|
|
22
|
+
import { GetAppCommandInput, GetAppCommandOutput } from "./commands/GetAppCommand";
|
|
23
|
+
import { GetArtifactUrlCommandInput, GetArtifactUrlCommandOutput } from "./commands/GetArtifactUrlCommand";
|
|
24
|
+
import { GetBackendEnvironmentCommandInput, GetBackendEnvironmentCommandOutput } from "./commands/GetBackendEnvironmentCommand";
|
|
25
|
+
import { GetBranchCommandInput, GetBranchCommandOutput } from "./commands/GetBranchCommand";
|
|
26
|
+
import { GetDomainAssociationCommandInput, GetDomainAssociationCommandOutput } from "./commands/GetDomainAssociationCommand";
|
|
27
|
+
import { GetJobCommandInput, GetJobCommandOutput } from "./commands/GetJobCommand";
|
|
28
|
+
import { GetWebhookCommandInput, GetWebhookCommandOutput } from "./commands/GetWebhookCommand";
|
|
29
|
+
import { ListAppsCommandInput, ListAppsCommandOutput } from "./commands/ListAppsCommand";
|
|
30
|
+
import { ListArtifactsCommandInput, ListArtifactsCommandOutput } from "./commands/ListArtifactsCommand";
|
|
31
|
+
import { ListBackendEnvironmentsCommandInput, ListBackendEnvironmentsCommandOutput } from "./commands/ListBackendEnvironmentsCommand";
|
|
32
|
+
import { ListBranchesCommandInput, ListBranchesCommandOutput } from "./commands/ListBranchesCommand";
|
|
33
|
+
import { ListDomainAssociationsCommandInput, ListDomainAssociationsCommandOutput } from "./commands/ListDomainAssociationsCommand";
|
|
34
|
+
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
35
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
36
|
+
import { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
|
|
37
|
+
import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
|
|
38
|
+
import { StartJobCommandInput, StartJobCommandOutput } from "./commands/StartJobCommand";
|
|
39
|
+
import { StopJobCommandInput, StopJobCommandOutput } from "./commands/StopJobCommand";
|
|
40
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
41
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
42
|
+
import { UpdateAppCommandInput, UpdateAppCommandOutput } from "./commands/UpdateAppCommand";
|
|
43
|
+
import { UpdateBranchCommandInput, UpdateBranchCommandOutput } from "./commands/UpdateBranchCommand";
|
|
44
|
+
import { UpdateDomainAssociationCommandInput, UpdateDomainAssociationCommandOutput } from "./commands/UpdateDomainAssociationCommand";
|
|
45
|
+
import { UpdateWebhookCommandInput, UpdateWebhookCommandOutput } from "./commands/UpdateWebhookCommand";
|
|
46
|
+
export declare type ServiceInputTypes = CreateAppCommandInput | CreateBackendEnvironmentCommandInput | CreateBranchCommandInput | CreateDeploymentCommandInput | CreateDomainAssociationCommandInput | CreateWebhookCommandInput | DeleteAppCommandInput | DeleteBackendEnvironmentCommandInput | DeleteBranchCommandInput | DeleteDomainAssociationCommandInput | DeleteJobCommandInput | DeleteWebhookCommandInput | GenerateAccessLogsCommandInput | GetAppCommandInput | GetArtifactUrlCommandInput | GetBackendEnvironmentCommandInput | GetBranchCommandInput | GetDomainAssociationCommandInput | GetJobCommandInput | GetWebhookCommandInput | ListAppsCommandInput | ListArtifactsCommandInput | ListBackendEnvironmentsCommandInput | ListBranchesCommandInput | ListDomainAssociationsCommandInput | ListJobsCommandInput | ListTagsForResourceCommandInput | ListWebhooksCommandInput | StartDeploymentCommandInput | StartJobCommandInput | StopJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAppCommandInput | UpdateBranchCommandInput | UpdateDomainAssociationCommandInput | UpdateWebhookCommandInput;
|
|
47
|
+
export declare type ServiceOutputTypes = CreateAppCommandOutput | CreateBackendEnvironmentCommandOutput | CreateBranchCommandOutput | CreateDeploymentCommandOutput | CreateDomainAssociationCommandOutput | CreateWebhookCommandOutput | DeleteAppCommandOutput | DeleteBackendEnvironmentCommandOutput | DeleteBranchCommandOutput | DeleteDomainAssociationCommandOutput | DeleteJobCommandOutput | DeleteWebhookCommandOutput | GenerateAccessLogsCommandOutput | GetAppCommandOutput | GetArtifactUrlCommandOutput | GetBackendEnvironmentCommandOutput | GetBranchCommandOutput | GetDomainAssociationCommandOutput | GetJobCommandOutput | GetWebhookCommandOutput | ListAppsCommandOutput | ListArtifactsCommandOutput | ListBackendEnvironmentsCommandOutput | ListBranchesCommandOutput | ListDomainAssociationsCommandOutput | ListJobsCommandOutput | ListTagsForResourceCommandOutput | ListWebhooksCommandOutput | StartDeploymentCommandOutput | StartJobCommandOutput | StopJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAppCommandOutput | UpdateBranchCommandOutput | UpdateDomainAssociationCommandOutput | UpdateWebhookCommandOutput;
|
|
48
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
49
|
+
|
|
50
|
+
requestHandler?: __HttpHandler;
|
|
51
|
+
|
|
52
|
+
sha256?: __HashConstructor;
|
|
53
|
+
|
|
54
|
+
urlParser?: __UrlParser;
|
|
55
|
+
|
|
56
|
+
bodyLengthChecker?: (body: any) => number | undefined;
|
|
57
|
+
|
|
58
|
+
streamCollector?: __StreamCollector;
|
|
59
|
+
|
|
60
|
+
base64Decoder?: __Decoder;
|
|
61
|
+
|
|
62
|
+
base64Encoder?: __Encoder;
|
|
63
|
+
|
|
64
|
+
utf8Decoder?: __Decoder;
|
|
65
|
+
|
|
66
|
+
utf8Encoder?: __Encoder;
|
|
67
|
+
|
|
68
|
+
runtime?: string;
|
|
69
|
+
|
|
70
|
+
disableHostPrefix?: boolean;
|
|
71
|
+
|
|
72
|
+
maxAttempts?: number | __Provider<number>;
|
|
73
|
+
|
|
74
|
+
retryMode?: string | __Provider<string>;
|
|
75
|
+
|
|
76
|
+
logger?: __Logger;
|
|
77
|
+
|
|
78
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
79
|
+
|
|
80
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
81
|
+
|
|
82
|
+
serviceId?: string;
|
|
83
|
+
|
|
84
|
+
region?: string | __Provider<string>;
|
|
85
|
+
|
|
86
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
87
|
+
|
|
88
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
89
|
+
|
|
90
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
91
|
+
|
|
92
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
93
|
+
}
|
|
94
|
+
declare type AmplifyClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
95
|
+
|
|
96
|
+
export interface AmplifyClientConfig extends AmplifyClientConfigType {
|
|
97
|
+
}
|
|
98
|
+
declare type AmplifyClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
|
|
99
|
+
|
|
100
|
+
export interface AmplifyClientResolvedConfig extends AmplifyClientResolvedConfigType {
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
export declare class AmplifyClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AmplifyClientResolvedConfig> {
|
|
104
|
+
|
|
105
|
+
readonly config: AmplifyClientResolvedConfig;
|
|
106
|
+
constructor(configuration: AmplifyClientConfig);
|
|
107
|
+
|
|
108
|
+
destroy(): void;
|
|
109
|
+
}
|
|
110
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { CreateAppRequest, CreateAppResult } from "../models/models_0";
|
|
5
|
+
export interface CreateAppCommandInput extends CreateAppRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateAppCommandOutput extends CreateAppResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateAppCommand extends $Command<CreateAppCommandInput, CreateAppCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateAppCommandInput;
|
|
12
|
+
constructor(input: CreateAppCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAppCommandInput, CreateAppCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { CreateBackendEnvironmentRequest, CreateBackendEnvironmentResult } from "../models/models_0";
|
|
5
|
+
export interface CreateBackendEnvironmentCommandInput extends CreateBackendEnvironmentRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateBackendEnvironmentCommandOutput extends CreateBackendEnvironmentResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateBackendEnvironmentCommand extends $Command<CreateBackendEnvironmentCommandInput, CreateBackendEnvironmentCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateBackendEnvironmentCommandInput;
|
|
12
|
+
constructor(input: CreateBackendEnvironmentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBackendEnvironmentCommandInput, CreateBackendEnvironmentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { CreateBranchRequest, CreateBranchResult } from "../models/models_0";
|
|
5
|
+
export interface CreateBranchCommandInput extends CreateBranchRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateBranchCommandOutput extends CreateBranchResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateBranchCommand extends $Command<CreateBranchCommandInput, CreateBranchCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateBranchCommandInput;
|
|
12
|
+
constructor(input: CreateBranchCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBranchCommandInput, CreateBranchCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { CreateDeploymentRequest, CreateDeploymentResult } from "../models/models_0";
|
|
5
|
+
export interface CreateDeploymentCommandInput extends CreateDeploymentRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDeploymentCommandOutput extends CreateDeploymentResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDeploymentCommand extends $Command<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDeploymentCommandInput;
|
|
12
|
+
constructor(input: CreateDeploymentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDeploymentCommandInput, CreateDeploymentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { CreateDomainAssociationRequest, CreateDomainAssociationResult } from "../models/models_0";
|
|
5
|
+
export interface CreateDomainAssociationCommandInput extends CreateDomainAssociationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateDomainAssociationCommandOutput extends CreateDomainAssociationResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateDomainAssociationCommand extends $Command<CreateDomainAssociationCommandInput, CreateDomainAssociationCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateDomainAssociationCommandInput;
|
|
12
|
+
constructor(input: CreateDomainAssociationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDomainAssociationCommandInput, CreateDomainAssociationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { CreateWebhookRequest, CreateWebhookResult } from "../models/models_0";
|
|
5
|
+
export interface CreateWebhookCommandInput extends CreateWebhookRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateWebhookCommandOutput extends CreateWebhookResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateWebhookCommand extends $Command<CreateWebhookCommandInput, CreateWebhookCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateWebhookCommandInput;
|
|
12
|
+
constructor(input: CreateWebhookCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWebhookCommandInput, CreateWebhookCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { DeleteAppRequest, DeleteAppResult } from "../models/models_0";
|
|
5
|
+
export interface DeleteAppCommandInput extends DeleteAppRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteAppCommandOutput extends DeleteAppResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteAppCommand extends $Command<DeleteAppCommandInput, DeleteAppCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteAppCommandInput;
|
|
12
|
+
constructor(input: DeleteAppCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAppCommandInput, DeleteAppCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { DeleteBackendEnvironmentRequest, DeleteBackendEnvironmentResult } from "../models/models_0";
|
|
5
|
+
export interface DeleteBackendEnvironmentCommandInput extends DeleteBackendEnvironmentRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteBackendEnvironmentCommandOutput extends DeleteBackendEnvironmentResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteBackendEnvironmentCommand extends $Command<DeleteBackendEnvironmentCommandInput, DeleteBackendEnvironmentCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteBackendEnvironmentCommandInput;
|
|
12
|
+
constructor(input: DeleteBackendEnvironmentCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackendEnvironmentCommandInput, DeleteBackendEnvironmentCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AmplifyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyClient";
|
|
4
|
+
import { DeleteBranchRequest, DeleteBranchResult } from "../models/models_0";
|
|
5
|
+
export interface DeleteBranchCommandInput extends DeleteBranchRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteBranchCommandOutput extends DeleteBranchResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteBranchCommand extends $Command<DeleteBranchCommandInput, DeleteBranchCommandOutput, AmplifyClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteBranchCommandInput;
|
|
12
|
+
constructor(input: DeleteBranchCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBranchCommandInput, DeleteBranchCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|