@aws-sdk/client-amplify 3.169.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Amplify.d.ts +670 -190
  3. package/dist-types/ts3.4/AmplifyClient.d.ts +351 -110
  4. package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +41 -17
  9. package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +41 -17
  12. package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/GetAppCommand.d.ts +32 -17
  18. package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +41 -17
  27. package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  31. package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
  34. package/dist-types/ts3.4/commands/StopJobCommand.d.ts +32 -17
  35. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  36. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  37. package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +34 -17
  38. package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +34 -17
  39. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +41 -17
  40. package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +34 -17
  41. package/dist-types/ts3.4/commands/index.d.ts +37 -37
  42. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  43. package/dist-types/ts3.4/index.d.ts +5 -5
  44. package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +8 -6
  45. package/dist-types/ts3.4/models/index.d.ts +1 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +1277 -1196
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
  48. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  51. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  52. package/package.json +34 -34
@@ -1,190 +1,670 @@
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
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AmplifyClient } from "./AmplifyClient";
3
+ import {
4
+ CreateAppCommandInput,
5
+ CreateAppCommandOutput,
6
+ } from "./commands/CreateAppCommand";
7
+ import {
8
+ CreateBackendEnvironmentCommandInput,
9
+ CreateBackendEnvironmentCommandOutput,
10
+ } from "./commands/CreateBackendEnvironmentCommand";
11
+ import {
12
+ CreateBranchCommandInput,
13
+ CreateBranchCommandOutput,
14
+ } from "./commands/CreateBranchCommand";
15
+ import {
16
+ CreateDeploymentCommandInput,
17
+ CreateDeploymentCommandOutput,
18
+ } from "./commands/CreateDeploymentCommand";
19
+ import {
20
+ CreateDomainAssociationCommandInput,
21
+ CreateDomainAssociationCommandOutput,
22
+ } from "./commands/CreateDomainAssociationCommand";
23
+ import {
24
+ CreateWebhookCommandInput,
25
+ CreateWebhookCommandOutput,
26
+ } from "./commands/CreateWebhookCommand";
27
+ import {
28
+ DeleteAppCommandInput,
29
+ DeleteAppCommandOutput,
30
+ } from "./commands/DeleteAppCommand";
31
+ import {
32
+ DeleteBackendEnvironmentCommandInput,
33
+ DeleteBackendEnvironmentCommandOutput,
34
+ } from "./commands/DeleteBackendEnvironmentCommand";
35
+ import {
36
+ DeleteBranchCommandInput,
37
+ DeleteBranchCommandOutput,
38
+ } from "./commands/DeleteBranchCommand";
39
+ import {
40
+ DeleteDomainAssociationCommandInput,
41
+ DeleteDomainAssociationCommandOutput,
42
+ } from "./commands/DeleteDomainAssociationCommand";
43
+ import {
44
+ DeleteJobCommandInput,
45
+ DeleteJobCommandOutput,
46
+ } from "./commands/DeleteJobCommand";
47
+ import {
48
+ DeleteWebhookCommandInput,
49
+ DeleteWebhookCommandOutput,
50
+ } from "./commands/DeleteWebhookCommand";
51
+ import {
52
+ GenerateAccessLogsCommandInput,
53
+ GenerateAccessLogsCommandOutput,
54
+ } from "./commands/GenerateAccessLogsCommand";
55
+ import {
56
+ GetAppCommandInput,
57
+ GetAppCommandOutput,
58
+ } from "./commands/GetAppCommand";
59
+ import {
60
+ GetArtifactUrlCommandInput,
61
+ GetArtifactUrlCommandOutput,
62
+ } from "./commands/GetArtifactUrlCommand";
63
+ import {
64
+ GetBackendEnvironmentCommandInput,
65
+ GetBackendEnvironmentCommandOutput,
66
+ } from "./commands/GetBackendEnvironmentCommand";
67
+ import {
68
+ GetBranchCommandInput,
69
+ GetBranchCommandOutput,
70
+ } from "./commands/GetBranchCommand";
71
+ import {
72
+ GetDomainAssociationCommandInput,
73
+ GetDomainAssociationCommandOutput,
74
+ } from "./commands/GetDomainAssociationCommand";
75
+ import {
76
+ GetJobCommandInput,
77
+ GetJobCommandOutput,
78
+ } from "./commands/GetJobCommand";
79
+ import {
80
+ GetWebhookCommandInput,
81
+ GetWebhookCommandOutput,
82
+ } from "./commands/GetWebhookCommand";
83
+ import {
84
+ ListAppsCommandInput,
85
+ ListAppsCommandOutput,
86
+ } from "./commands/ListAppsCommand";
87
+ import {
88
+ ListArtifactsCommandInput,
89
+ ListArtifactsCommandOutput,
90
+ } from "./commands/ListArtifactsCommand";
91
+ import {
92
+ ListBackendEnvironmentsCommandInput,
93
+ ListBackendEnvironmentsCommandOutput,
94
+ } from "./commands/ListBackendEnvironmentsCommand";
95
+ import {
96
+ ListBranchesCommandInput,
97
+ ListBranchesCommandOutput,
98
+ } from "./commands/ListBranchesCommand";
99
+ import {
100
+ ListDomainAssociationsCommandInput,
101
+ ListDomainAssociationsCommandOutput,
102
+ } from "./commands/ListDomainAssociationsCommand";
103
+ import {
104
+ ListJobsCommandInput,
105
+ ListJobsCommandOutput,
106
+ } from "./commands/ListJobsCommand";
107
+ import {
108
+ ListTagsForResourceCommandInput,
109
+ ListTagsForResourceCommandOutput,
110
+ } from "./commands/ListTagsForResourceCommand";
111
+ import {
112
+ ListWebhooksCommandInput,
113
+ ListWebhooksCommandOutput,
114
+ } from "./commands/ListWebhooksCommand";
115
+ import {
116
+ StartDeploymentCommandInput,
117
+ StartDeploymentCommandOutput,
118
+ } from "./commands/StartDeploymentCommand";
119
+ import {
120
+ StartJobCommandInput,
121
+ StartJobCommandOutput,
122
+ } from "./commands/StartJobCommand";
123
+ import {
124
+ StopJobCommandInput,
125
+ StopJobCommandOutput,
126
+ } from "./commands/StopJobCommand";
127
+ import {
128
+ TagResourceCommandInput,
129
+ TagResourceCommandOutput,
130
+ } from "./commands/TagResourceCommand";
131
+ import {
132
+ UntagResourceCommandInput,
133
+ UntagResourceCommandOutput,
134
+ } from "./commands/UntagResourceCommand";
135
+ import {
136
+ UpdateAppCommandInput,
137
+ UpdateAppCommandOutput,
138
+ } from "./commands/UpdateAppCommand";
139
+ import {
140
+ UpdateBranchCommandInput,
141
+ UpdateBranchCommandOutput,
142
+ } from "./commands/UpdateBranchCommand";
143
+ import {
144
+ UpdateDomainAssociationCommandInput,
145
+ UpdateDomainAssociationCommandOutput,
146
+ } from "./commands/UpdateDomainAssociationCommand";
147
+ import {
148
+ UpdateWebhookCommandInput,
149
+ UpdateWebhookCommandOutput,
150
+ } from "./commands/UpdateWebhookCommand";
151
+
152
+ export declare class Amplify extends AmplifyClient {
153
+ createApp(
154
+ args: CreateAppCommandInput,
155
+ options?: __HttpHandlerOptions
156
+ ): Promise<CreateAppCommandOutput>;
157
+ createApp(
158
+ args: CreateAppCommandInput,
159
+ cb: (err: any, data?: CreateAppCommandOutput) => void
160
+ ): void;
161
+ createApp(
162
+ args: CreateAppCommandInput,
163
+ options: __HttpHandlerOptions,
164
+ cb: (err: any, data?: CreateAppCommandOutput) => void
165
+ ): void;
166
+
167
+ createBackendEnvironment(
168
+ args: CreateBackendEnvironmentCommandInput,
169
+ options?: __HttpHandlerOptions
170
+ ): Promise<CreateBackendEnvironmentCommandOutput>;
171
+ createBackendEnvironment(
172
+ args: CreateBackendEnvironmentCommandInput,
173
+ cb: (err: any, data?: CreateBackendEnvironmentCommandOutput) => void
174
+ ): void;
175
+ createBackendEnvironment(
176
+ args: CreateBackendEnvironmentCommandInput,
177
+ options: __HttpHandlerOptions,
178
+ cb: (err: any, data?: CreateBackendEnvironmentCommandOutput) => void
179
+ ): void;
180
+
181
+ createBranch(
182
+ args: CreateBranchCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<CreateBranchCommandOutput>;
185
+ createBranch(
186
+ args: CreateBranchCommandInput,
187
+ cb: (err: any, data?: CreateBranchCommandOutput) => void
188
+ ): void;
189
+ createBranch(
190
+ args: CreateBranchCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: CreateBranchCommandOutput) => void
193
+ ): void;
194
+
195
+ createDeployment(
196
+ args: CreateDeploymentCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<CreateDeploymentCommandOutput>;
199
+ createDeployment(
200
+ args: CreateDeploymentCommandInput,
201
+ cb: (err: any, data?: CreateDeploymentCommandOutput) => void
202
+ ): void;
203
+ createDeployment(
204
+ args: CreateDeploymentCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: CreateDeploymentCommandOutput) => void
207
+ ): void;
208
+
209
+ createDomainAssociation(
210
+ args: CreateDomainAssociationCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<CreateDomainAssociationCommandOutput>;
213
+ createDomainAssociation(
214
+ args: CreateDomainAssociationCommandInput,
215
+ cb: (err: any, data?: CreateDomainAssociationCommandOutput) => void
216
+ ): void;
217
+ createDomainAssociation(
218
+ args: CreateDomainAssociationCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: CreateDomainAssociationCommandOutput) => void
221
+ ): void;
222
+
223
+ createWebhook(
224
+ args: CreateWebhookCommandInput,
225
+ options?: __HttpHandlerOptions
226
+ ): Promise<CreateWebhookCommandOutput>;
227
+ createWebhook(
228
+ args: CreateWebhookCommandInput,
229
+ cb: (err: any, data?: CreateWebhookCommandOutput) => void
230
+ ): void;
231
+ createWebhook(
232
+ args: CreateWebhookCommandInput,
233
+ options: __HttpHandlerOptions,
234
+ cb: (err: any, data?: CreateWebhookCommandOutput) => void
235
+ ): void;
236
+
237
+ deleteApp(
238
+ args: DeleteAppCommandInput,
239
+ options?: __HttpHandlerOptions
240
+ ): Promise<DeleteAppCommandOutput>;
241
+ deleteApp(
242
+ args: DeleteAppCommandInput,
243
+ cb: (err: any, data?: DeleteAppCommandOutput) => void
244
+ ): void;
245
+ deleteApp(
246
+ args: DeleteAppCommandInput,
247
+ options: __HttpHandlerOptions,
248
+ cb: (err: any, data?: DeleteAppCommandOutput) => void
249
+ ): void;
250
+
251
+ deleteBackendEnvironment(
252
+ args: DeleteBackendEnvironmentCommandInput,
253
+ options?: __HttpHandlerOptions
254
+ ): Promise<DeleteBackendEnvironmentCommandOutput>;
255
+ deleteBackendEnvironment(
256
+ args: DeleteBackendEnvironmentCommandInput,
257
+ cb: (err: any, data?: DeleteBackendEnvironmentCommandOutput) => void
258
+ ): void;
259
+ deleteBackendEnvironment(
260
+ args: DeleteBackendEnvironmentCommandInput,
261
+ options: __HttpHandlerOptions,
262
+ cb: (err: any, data?: DeleteBackendEnvironmentCommandOutput) => void
263
+ ): void;
264
+
265
+ deleteBranch(
266
+ args: DeleteBranchCommandInput,
267
+ options?: __HttpHandlerOptions
268
+ ): Promise<DeleteBranchCommandOutput>;
269
+ deleteBranch(
270
+ args: DeleteBranchCommandInput,
271
+ cb: (err: any, data?: DeleteBranchCommandOutput) => void
272
+ ): void;
273
+ deleteBranch(
274
+ args: DeleteBranchCommandInput,
275
+ options: __HttpHandlerOptions,
276
+ cb: (err: any, data?: DeleteBranchCommandOutput) => void
277
+ ): void;
278
+
279
+ deleteDomainAssociation(
280
+ args: DeleteDomainAssociationCommandInput,
281
+ options?: __HttpHandlerOptions
282
+ ): Promise<DeleteDomainAssociationCommandOutput>;
283
+ deleteDomainAssociation(
284
+ args: DeleteDomainAssociationCommandInput,
285
+ cb: (err: any, data?: DeleteDomainAssociationCommandOutput) => void
286
+ ): void;
287
+ deleteDomainAssociation(
288
+ args: DeleteDomainAssociationCommandInput,
289
+ options: __HttpHandlerOptions,
290
+ cb: (err: any, data?: DeleteDomainAssociationCommandOutput) => void
291
+ ): void;
292
+
293
+ deleteJob(
294
+ args: DeleteJobCommandInput,
295
+ options?: __HttpHandlerOptions
296
+ ): Promise<DeleteJobCommandOutput>;
297
+ deleteJob(
298
+ args: DeleteJobCommandInput,
299
+ cb: (err: any, data?: DeleteJobCommandOutput) => void
300
+ ): void;
301
+ deleteJob(
302
+ args: DeleteJobCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (err: any, data?: DeleteJobCommandOutput) => void
305
+ ): void;
306
+
307
+ deleteWebhook(
308
+ args: DeleteWebhookCommandInput,
309
+ options?: __HttpHandlerOptions
310
+ ): Promise<DeleteWebhookCommandOutput>;
311
+ deleteWebhook(
312
+ args: DeleteWebhookCommandInput,
313
+ cb: (err: any, data?: DeleteWebhookCommandOutput) => void
314
+ ): void;
315
+ deleteWebhook(
316
+ args: DeleteWebhookCommandInput,
317
+ options: __HttpHandlerOptions,
318
+ cb: (err: any, data?: DeleteWebhookCommandOutput) => void
319
+ ): void;
320
+
321
+ generateAccessLogs(
322
+ args: GenerateAccessLogsCommandInput,
323
+ options?: __HttpHandlerOptions
324
+ ): Promise<GenerateAccessLogsCommandOutput>;
325
+ generateAccessLogs(
326
+ args: GenerateAccessLogsCommandInput,
327
+ cb: (err: any, data?: GenerateAccessLogsCommandOutput) => void
328
+ ): void;
329
+ generateAccessLogs(
330
+ args: GenerateAccessLogsCommandInput,
331
+ options: __HttpHandlerOptions,
332
+ cb: (err: any, data?: GenerateAccessLogsCommandOutput) => void
333
+ ): void;
334
+
335
+ getApp(
336
+ args: GetAppCommandInput,
337
+ options?: __HttpHandlerOptions
338
+ ): Promise<GetAppCommandOutput>;
339
+ getApp(
340
+ args: GetAppCommandInput,
341
+ cb: (err: any, data?: GetAppCommandOutput) => void
342
+ ): void;
343
+ getApp(
344
+ args: GetAppCommandInput,
345
+ options: __HttpHandlerOptions,
346
+ cb: (err: any, data?: GetAppCommandOutput) => void
347
+ ): void;
348
+
349
+ getArtifactUrl(
350
+ args: GetArtifactUrlCommandInput,
351
+ options?: __HttpHandlerOptions
352
+ ): Promise<GetArtifactUrlCommandOutput>;
353
+ getArtifactUrl(
354
+ args: GetArtifactUrlCommandInput,
355
+ cb: (err: any, data?: GetArtifactUrlCommandOutput) => void
356
+ ): void;
357
+ getArtifactUrl(
358
+ args: GetArtifactUrlCommandInput,
359
+ options: __HttpHandlerOptions,
360
+ cb: (err: any, data?: GetArtifactUrlCommandOutput) => void
361
+ ): void;
362
+
363
+ getBackendEnvironment(
364
+ args: GetBackendEnvironmentCommandInput,
365
+ options?: __HttpHandlerOptions
366
+ ): Promise<GetBackendEnvironmentCommandOutput>;
367
+ getBackendEnvironment(
368
+ args: GetBackendEnvironmentCommandInput,
369
+ cb: (err: any, data?: GetBackendEnvironmentCommandOutput) => void
370
+ ): void;
371
+ getBackendEnvironment(
372
+ args: GetBackendEnvironmentCommandInput,
373
+ options: __HttpHandlerOptions,
374
+ cb: (err: any, data?: GetBackendEnvironmentCommandOutput) => void
375
+ ): void;
376
+
377
+ getBranch(
378
+ args: GetBranchCommandInput,
379
+ options?: __HttpHandlerOptions
380
+ ): Promise<GetBranchCommandOutput>;
381
+ getBranch(
382
+ args: GetBranchCommandInput,
383
+ cb: (err: any, data?: GetBranchCommandOutput) => void
384
+ ): void;
385
+ getBranch(
386
+ args: GetBranchCommandInput,
387
+ options: __HttpHandlerOptions,
388
+ cb: (err: any, data?: GetBranchCommandOutput) => void
389
+ ): void;
390
+
391
+ getDomainAssociation(
392
+ args: GetDomainAssociationCommandInput,
393
+ options?: __HttpHandlerOptions
394
+ ): Promise<GetDomainAssociationCommandOutput>;
395
+ getDomainAssociation(
396
+ args: GetDomainAssociationCommandInput,
397
+ cb: (err: any, data?: GetDomainAssociationCommandOutput) => void
398
+ ): void;
399
+ getDomainAssociation(
400
+ args: GetDomainAssociationCommandInput,
401
+ options: __HttpHandlerOptions,
402
+ cb: (err: any, data?: GetDomainAssociationCommandOutput) => void
403
+ ): void;
404
+
405
+ getJob(
406
+ args: GetJobCommandInput,
407
+ options?: __HttpHandlerOptions
408
+ ): Promise<GetJobCommandOutput>;
409
+ getJob(
410
+ args: GetJobCommandInput,
411
+ cb: (err: any, data?: GetJobCommandOutput) => void
412
+ ): void;
413
+ getJob(
414
+ args: GetJobCommandInput,
415
+ options: __HttpHandlerOptions,
416
+ cb: (err: any, data?: GetJobCommandOutput) => void
417
+ ): void;
418
+
419
+ getWebhook(
420
+ args: GetWebhookCommandInput,
421
+ options?: __HttpHandlerOptions
422
+ ): Promise<GetWebhookCommandOutput>;
423
+ getWebhook(
424
+ args: GetWebhookCommandInput,
425
+ cb: (err: any, data?: GetWebhookCommandOutput) => void
426
+ ): void;
427
+ getWebhook(
428
+ args: GetWebhookCommandInput,
429
+ options: __HttpHandlerOptions,
430
+ cb: (err: any, data?: GetWebhookCommandOutput) => void
431
+ ): void;
432
+
433
+ listApps(
434
+ args: ListAppsCommandInput,
435
+ options?: __HttpHandlerOptions
436
+ ): Promise<ListAppsCommandOutput>;
437
+ listApps(
438
+ args: ListAppsCommandInput,
439
+ cb: (err: any, data?: ListAppsCommandOutput) => void
440
+ ): void;
441
+ listApps(
442
+ args: ListAppsCommandInput,
443
+ options: __HttpHandlerOptions,
444
+ cb: (err: any, data?: ListAppsCommandOutput) => void
445
+ ): void;
446
+
447
+ listArtifacts(
448
+ args: ListArtifactsCommandInput,
449
+ options?: __HttpHandlerOptions
450
+ ): Promise<ListArtifactsCommandOutput>;
451
+ listArtifacts(
452
+ args: ListArtifactsCommandInput,
453
+ cb: (err: any, data?: ListArtifactsCommandOutput) => void
454
+ ): void;
455
+ listArtifacts(
456
+ args: ListArtifactsCommandInput,
457
+ options: __HttpHandlerOptions,
458
+ cb: (err: any, data?: ListArtifactsCommandOutput) => void
459
+ ): void;
460
+
461
+ listBackendEnvironments(
462
+ args: ListBackendEnvironmentsCommandInput,
463
+ options?: __HttpHandlerOptions
464
+ ): Promise<ListBackendEnvironmentsCommandOutput>;
465
+ listBackendEnvironments(
466
+ args: ListBackendEnvironmentsCommandInput,
467
+ cb: (err: any, data?: ListBackendEnvironmentsCommandOutput) => void
468
+ ): void;
469
+ listBackendEnvironments(
470
+ args: ListBackendEnvironmentsCommandInput,
471
+ options: __HttpHandlerOptions,
472
+ cb: (err: any, data?: ListBackendEnvironmentsCommandOutput) => void
473
+ ): void;
474
+
475
+ listBranches(
476
+ args: ListBranchesCommandInput,
477
+ options?: __HttpHandlerOptions
478
+ ): Promise<ListBranchesCommandOutput>;
479
+ listBranches(
480
+ args: ListBranchesCommandInput,
481
+ cb: (err: any, data?: ListBranchesCommandOutput) => void
482
+ ): void;
483
+ listBranches(
484
+ args: ListBranchesCommandInput,
485
+ options: __HttpHandlerOptions,
486
+ cb: (err: any, data?: ListBranchesCommandOutput) => void
487
+ ): void;
488
+
489
+ listDomainAssociations(
490
+ args: ListDomainAssociationsCommandInput,
491
+ options?: __HttpHandlerOptions
492
+ ): Promise<ListDomainAssociationsCommandOutput>;
493
+ listDomainAssociations(
494
+ args: ListDomainAssociationsCommandInput,
495
+ cb: (err: any, data?: ListDomainAssociationsCommandOutput) => void
496
+ ): void;
497
+ listDomainAssociations(
498
+ args: ListDomainAssociationsCommandInput,
499
+ options: __HttpHandlerOptions,
500
+ cb: (err: any, data?: ListDomainAssociationsCommandOutput) => void
501
+ ): void;
502
+
503
+ listJobs(
504
+ args: ListJobsCommandInput,
505
+ options?: __HttpHandlerOptions
506
+ ): Promise<ListJobsCommandOutput>;
507
+ listJobs(
508
+ args: ListJobsCommandInput,
509
+ cb: (err: any, data?: ListJobsCommandOutput) => void
510
+ ): void;
511
+ listJobs(
512
+ args: ListJobsCommandInput,
513
+ options: __HttpHandlerOptions,
514
+ cb: (err: any, data?: ListJobsCommandOutput) => void
515
+ ): void;
516
+
517
+ listTagsForResource(
518
+ args: ListTagsForResourceCommandInput,
519
+ options?: __HttpHandlerOptions
520
+ ): Promise<ListTagsForResourceCommandOutput>;
521
+ listTagsForResource(
522
+ args: ListTagsForResourceCommandInput,
523
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
524
+ ): void;
525
+ listTagsForResource(
526
+ args: ListTagsForResourceCommandInput,
527
+ options: __HttpHandlerOptions,
528
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
529
+ ): void;
530
+
531
+ listWebhooks(
532
+ args: ListWebhooksCommandInput,
533
+ options?: __HttpHandlerOptions
534
+ ): Promise<ListWebhooksCommandOutput>;
535
+ listWebhooks(
536
+ args: ListWebhooksCommandInput,
537
+ cb: (err: any, data?: ListWebhooksCommandOutput) => void
538
+ ): void;
539
+ listWebhooks(
540
+ args: ListWebhooksCommandInput,
541
+ options: __HttpHandlerOptions,
542
+ cb: (err: any, data?: ListWebhooksCommandOutput) => void
543
+ ): void;
544
+
545
+ startDeployment(
546
+ args: StartDeploymentCommandInput,
547
+ options?: __HttpHandlerOptions
548
+ ): Promise<StartDeploymentCommandOutput>;
549
+ startDeployment(
550
+ args: StartDeploymentCommandInput,
551
+ cb: (err: any, data?: StartDeploymentCommandOutput) => void
552
+ ): void;
553
+ startDeployment(
554
+ args: StartDeploymentCommandInput,
555
+ options: __HttpHandlerOptions,
556
+ cb: (err: any, data?: StartDeploymentCommandOutput) => void
557
+ ): void;
558
+
559
+ startJob(
560
+ args: StartJobCommandInput,
561
+ options?: __HttpHandlerOptions
562
+ ): Promise<StartJobCommandOutput>;
563
+ startJob(
564
+ args: StartJobCommandInput,
565
+ cb: (err: any, data?: StartJobCommandOutput) => void
566
+ ): void;
567
+ startJob(
568
+ args: StartJobCommandInput,
569
+ options: __HttpHandlerOptions,
570
+ cb: (err: any, data?: StartJobCommandOutput) => void
571
+ ): void;
572
+
573
+ stopJob(
574
+ args: StopJobCommandInput,
575
+ options?: __HttpHandlerOptions
576
+ ): Promise<StopJobCommandOutput>;
577
+ stopJob(
578
+ args: StopJobCommandInput,
579
+ cb: (err: any, data?: StopJobCommandOutput) => void
580
+ ): void;
581
+ stopJob(
582
+ args: StopJobCommandInput,
583
+ options: __HttpHandlerOptions,
584
+ cb: (err: any, data?: StopJobCommandOutput) => void
585
+ ): void;
586
+
587
+ tagResource(
588
+ args: TagResourceCommandInput,
589
+ options?: __HttpHandlerOptions
590
+ ): Promise<TagResourceCommandOutput>;
591
+ tagResource(
592
+ args: TagResourceCommandInput,
593
+ cb: (err: any, data?: TagResourceCommandOutput) => void
594
+ ): void;
595
+ tagResource(
596
+ args: TagResourceCommandInput,
597
+ options: __HttpHandlerOptions,
598
+ cb: (err: any, data?: TagResourceCommandOutput) => void
599
+ ): void;
600
+
601
+ untagResource(
602
+ args: UntagResourceCommandInput,
603
+ options?: __HttpHandlerOptions
604
+ ): Promise<UntagResourceCommandOutput>;
605
+ untagResource(
606
+ args: UntagResourceCommandInput,
607
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
608
+ ): void;
609
+ untagResource(
610
+ args: UntagResourceCommandInput,
611
+ options: __HttpHandlerOptions,
612
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
613
+ ): void;
614
+
615
+ updateApp(
616
+ args: UpdateAppCommandInput,
617
+ options?: __HttpHandlerOptions
618
+ ): Promise<UpdateAppCommandOutput>;
619
+ updateApp(
620
+ args: UpdateAppCommandInput,
621
+ cb: (err: any, data?: UpdateAppCommandOutput) => void
622
+ ): void;
623
+ updateApp(
624
+ args: UpdateAppCommandInput,
625
+ options: __HttpHandlerOptions,
626
+ cb: (err: any, data?: UpdateAppCommandOutput) => void
627
+ ): void;
628
+
629
+ updateBranch(
630
+ args: UpdateBranchCommandInput,
631
+ options?: __HttpHandlerOptions
632
+ ): Promise<UpdateBranchCommandOutput>;
633
+ updateBranch(
634
+ args: UpdateBranchCommandInput,
635
+ cb: (err: any, data?: UpdateBranchCommandOutput) => void
636
+ ): void;
637
+ updateBranch(
638
+ args: UpdateBranchCommandInput,
639
+ options: __HttpHandlerOptions,
640
+ cb: (err: any, data?: UpdateBranchCommandOutput) => void
641
+ ): void;
642
+
643
+ updateDomainAssociation(
644
+ args: UpdateDomainAssociationCommandInput,
645
+ options?: __HttpHandlerOptions
646
+ ): Promise<UpdateDomainAssociationCommandOutput>;
647
+ updateDomainAssociation(
648
+ args: UpdateDomainAssociationCommandInput,
649
+ cb: (err: any, data?: UpdateDomainAssociationCommandOutput) => void
650
+ ): void;
651
+ updateDomainAssociation(
652
+ args: UpdateDomainAssociationCommandInput,
653
+ options: __HttpHandlerOptions,
654
+ cb: (err: any, data?: UpdateDomainAssociationCommandOutput) => void
655
+ ): void;
656
+
657
+ updateWebhook(
658
+ args: UpdateWebhookCommandInput,
659
+ options?: __HttpHandlerOptions
660
+ ): Promise<UpdateWebhookCommandOutput>;
661
+ updateWebhook(
662
+ args: UpdateWebhookCommandInput,
663
+ cb: (err: any, data?: UpdateWebhookCommandOutput) => void
664
+ ): void;
665
+ updateWebhook(
666
+ args: UpdateWebhookCommandInput,
667
+ options: __HttpHandlerOptions,
668
+ cb: (err: any, data?: UpdateWebhookCommandOutput) => void
669
+ ): void;
670
+ }