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