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