@aws-sdk/client-codestar-connections 3.1087.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/CodeStarConnections.d.ts +91 -115
- package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +11 -39
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- 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/CreateConnectionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetHostCommand.d.ts +6 -2
- package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +5 -10
- 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 +16 -66
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -8,10 +8,7 @@ import {
|
|
|
8
8
|
CreateConnectionCommandInput,
|
|
9
9
|
CreateConnectionCommandOutput,
|
|
10
10
|
} from "./commands/CreateConnectionCommand";
|
|
11
|
-
import {
|
|
12
|
-
CreateHostCommandInput,
|
|
13
|
-
CreateHostCommandOutput,
|
|
14
|
-
} from "./commands/CreateHostCommand";
|
|
11
|
+
import { CreateHostCommandInput, CreateHostCommandOutput } from "./commands/CreateHostCommand";
|
|
15
12
|
import {
|
|
16
13
|
CreateRepositoryLinkCommandInput,
|
|
17
14
|
CreateRepositoryLinkCommandOutput,
|
|
@@ -24,10 +21,7 @@ import {
|
|
|
24
21
|
DeleteConnectionCommandInput,
|
|
25
22
|
DeleteConnectionCommandOutput,
|
|
26
23
|
} from "./commands/DeleteConnectionCommand";
|
|
27
|
-
import {
|
|
28
|
-
DeleteHostCommandInput,
|
|
29
|
-
DeleteHostCommandOutput,
|
|
30
|
-
} from "./commands/DeleteHostCommand";
|
|
24
|
+
import { DeleteHostCommandInput, DeleteHostCommandOutput } from "./commands/DeleteHostCommand";
|
|
31
25
|
import {
|
|
32
26
|
DeleteRepositoryLinkCommandInput,
|
|
33
27
|
DeleteRepositoryLinkCommandOutput,
|
|
@@ -40,10 +34,7 @@ import {
|
|
|
40
34
|
GetConnectionCommandInput,
|
|
41
35
|
GetConnectionCommandOutput,
|
|
42
36
|
} from "./commands/GetConnectionCommand";
|
|
43
|
-
import {
|
|
44
|
-
GetHostCommandInput,
|
|
45
|
-
GetHostCommandOutput,
|
|
46
|
-
} from "./commands/GetHostCommand";
|
|
37
|
+
import { GetHostCommandInput, GetHostCommandOutput } from "./commands/GetHostCommand";
|
|
47
38
|
import {
|
|
48
39
|
GetRepositoryLinkCommandInput,
|
|
49
40
|
GetRepositoryLinkCommandOutput,
|
|
@@ -68,10 +59,7 @@ import {
|
|
|
68
59
|
ListConnectionsCommandInput,
|
|
69
60
|
ListConnectionsCommandOutput,
|
|
70
61
|
} from "./commands/ListConnectionsCommand";
|
|
71
|
-
import {
|
|
72
|
-
ListHostsCommandInput,
|
|
73
|
-
ListHostsCommandOutput,
|
|
74
|
-
} from "./commands/ListHostsCommand";
|
|
62
|
+
import { ListHostsCommandInput, ListHostsCommandOutput } from "./commands/ListHostsCommand";
|
|
75
63
|
import {
|
|
76
64
|
ListRepositoryLinksCommandInput,
|
|
77
65
|
ListRepositoryLinksCommandOutput,
|
|
@@ -88,18 +76,12 @@ import {
|
|
|
88
76
|
ListTagsForResourceCommandInput,
|
|
89
77
|
ListTagsForResourceCommandOutput,
|
|
90
78
|
} from "./commands/ListTagsForResourceCommand";
|
|
91
|
-
import {
|
|
92
|
-
TagResourceCommandInput,
|
|
93
|
-
TagResourceCommandOutput,
|
|
94
|
-
} from "./commands/TagResourceCommand";
|
|
79
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
95
80
|
import {
|
|
96
81
|
UntagResourceCommandInput,
|
|
97
82
|
UntagResourceCommandOutput,
|
|
98
83
|
} from "./commands/UntagResourceCommand";
|
|
99
|
-
import {
|
|
100
|
-
UpdateHostCommandInput,
|
|
101
|
-
UpdateHostCommandOutput,
|
|
102
|
-
} from "./commands/UpdateHostCommand";
|
|
84
|
+
import { UpdateHostCommandInput, UpdateHostCommandOutput } from "./commands/UpdateHostCommand";
|
|
103
85
|
import {
|
|
104
86
|
UpdateRepositoryLinkCommandInput,
|
|
105
87
|
UpdateRepositoryLinkCommandOutput,
|
|
@@ -115,385 +97,379 @@ import {
|
|
|
115
97
|
export interface CodeStarConnections {
|
|
116
98
|
createConnection(
|
|
117
99
|
args: CreateConnectionCommandInput,
|
|
118
|
-
options?: __HttpHandlerOptions
|
|
100
|
+
options?: __HttpHandlerOptions,
|
|
119
101
|
): Promise<CreateConnectionCommandOutput>;
|
|
120
102
|
createConnection(
|
|
121
103
|
args: CreateConnectionCommandInput,
|
|
122
|
-
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
104
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void,
|
|
123
105
|
): void;
|
|
124
106
|
createConnection(
|
|
125
107
|
args: CreateConnectionCommandInput,
|
|
126
108
|
options: __HttpHandlerOptions,
|
|
127
|
-
cb: (err: any, data?: CreateConnectionCommandOutput) => void
|
|
109
|
+
cb: (err: any, data?: CreateConnectionCommandOutput) => void,
|
|
128
110
|
): void;
|
|
129
111
|
createHost(
|
|
130
112
|
args: CreateHostCommandInput,
|
|
131
|
-
options?: __HttpHandlerOptions
|
|
113
|
+
options?: __HttpHandlerOptions,
|
|
132
114
|
): Promise<CreateHostCommandOutput>;
|
|
133
115
|
createHost(
|
|
134
116
|
args: CreateHostCommandInput,
|
|
135
|
-
cb: (err: any, data?: CreateHostCommandOutput) => void
|
|
117
|
+
cb: (err: any, data?: CreateHostCommandOutput) => void,
|
|
136
118
|
): void;
|
|
137
119
|
createHost(
|
|
138
120
|
args: CreateHostCommandInput,
|
|
139
121
|
options: __HttpHandlerOptions,
|
|
140
|
-
cb: (err: any, data?: CreateHostCommandOutput) => void
|
|
122
|
+
cb: (err: any, data?: CreateHostCommandOutput) => void,
|
|
141
123
|
): void;
|
|
142
124
|
createRepositoryLink(
|
|
143
125
|
args: CreateRepositoryLinkCommandInput,
|
|
144
|
-
options?: __HttpHandlerOptions
|
|
126
|
+
options?: __HttpHandlerOptions,
|
|
145
127
|
): Promise<CreateRepositoryLinkCommandOutput>;
|
|
146
128
|
createRepositoryLink(
|
|
147
129
|
args: CreateRepositoryLinkCommandInput,
|
|
148
|
-
cb: (err: any, data?: CreateRepositoryLinkCommandOutput) => void
|
|
130
|
+
cb: (err: any, data?: CreateRepositoryLinkCommandOutput) => void,
|
|
149
131
|
): void;
|
|
150
132
|
createRepositoryLink(
|
|
151
133
|
args: CreateRepositoryLinkCommandInput,
|
|
152
134
|
options: __HttpHandlerOptions,
|
|
153
|
-
cb: (err: any, data?: CreateRepositoryLinkCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: CreateRepositoryLinkCommandOutput) => void,
|
|
154
136
|
): void;
|
|
155
137
|
createSyncConfiguration(
|
|
156
138
|
args: CreateSyncConfigurationCommandInput,
|
|
157
|
-
options?: __HttpHandlerOptions
|
|
139
|
+
options?: __HttpHandlerOptions,
|
|
158
140
|
): Promise<CreateSyncConfigurationCommandOutput>;
|
|
159
141
|
createSyncConfiguration(
|
|
160
142
|
args: CreateSyncConfigurationCommandInput,
|
|
161
|
-
cb: (err: any, data?: CreateSyncConfigurationCommandOutput) => void
|
|
143
|
+
cb: (err: any, data?: CreateSyncConfigurationCommandOutput) => void,
|
|
162
144
|
): void;
|
|
163
145
|
createSyncConfiguration(
|
|
164
146
|
args: CreateSyncConfigurationCommandInput,
|
|
165
147
|
options: __HttpHandlerOptions,
|
|
166
|
-
cb: (err: any, data?: CreateSyncConfigurationCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: CreateSyncConfigurationCommandOutput) => void,
|
|
167
149
|
): void;
|
|
168
150
|
deleteConnection(
|
|
169
151
|
args: DeleteConnectionCommandInput,
|
|
170
|
-
options?: __HttpHandlerOptions
|
|
152
|
+
options?: __HttpHandlerOptions,
|
|
171
153
|
): Promise<DeleteConnectionCommandOutput>;
|
|
172
154
|
deleteConnection(
|
|
173
155
|
args: DeleteConnectionCommandInput,
|
|
174
|
-
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void,
|
|
175
157
|
): void;
|
|
176
158
|
deleteConnection(
|
|
177
159
|
args: DeleteConnectionCommandInput,
|
|
178
160
|
options: __HttpHandlerOptions,
|
|
179
|
-
cb: (err: any, data?: DeleteConnectionCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: DeleteConnectionCommandOutput) => void,
|
|
180
162
|
): void;
|
|
181
163
|
deleteHost(
|
|
182
164
|
args: DeleteHostCommandInput,
|
|
183
|
-
options?: __HttpHandlerOptions
|
|
165
|
+
options?: __HttpHandlerOptions,
|
|
184
166
|
): Promise<DeleteHostCommandOutput>;
|
|
185
167
|
deleteHost(
|
|
186
168
|
args: DeleteHostCommandInput,
|
|
187
|
-
cb: (err: any, data?: DeleteHostCommandOutput) => void
|
|
169
|
+
cb: (err: any, data?: DeleteHostCommandOutput) => void,
|
|
188
170
|
): void;
|
|
189
171
|
deleteHost(
|
|
190
172
|
args: DeleteHostCommandInput,
|
|
191
173
|
options: __HttpHandlerOptions,
|
|
192
|
-
cb: (err: any, data?: DeleteHostCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: DeleteHostCommandOutput) => void,
|
|
193
175
|
): void;
|
|
194
176
|
deleteRepositoryLink(
|
|
195
177
|
args: DeleteRepositoryLinkCommandInput,
|
|
196
|
-
options?: __HttpHandlerOptions
|
|
178
|
+
options?: __HttpHandlerOptions,
|
|
197
179
|
): Promise<DeleteRepositoryLinkCommandOutput>;
|
|
198
180
|
deleteRepositoryLink(
|
|
199
181
|
args: DeleteRepositoryLinkCommandInput,
|
|
200
|
-
cb: (err: any, data?: DeleteRepositoryLinkCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: DeleteRepositoryLinkCommandOutput) => void,
|
|
201
183
|
): void;
|
|
202
184
|
deleteRepositoryLink(
|
|
203
185
|
args: DeleteRepositoryLinkCommandInput,
|
|
204
186
|
options: __HttpHandlerOptions,
|
|
205
|
-
cb: (err: any, data?: DeleteRepositoryLinkCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: DeleteRepositoryLinkCommandOutput) => void,
|
|
206
188
|
): void;
|
|
207
189
|
deleteSyncConfiguration(
|
|
208
190
|
args: DeleteSyncConfigurationCommandInput,
|
|
209
|
-
options?: __HttpHandlerOptions
|
|
191
|
+
options?: __HttpHandlerOptions,
|
|
210
192
|
): Promise<DeleteSyncConfigurationCommandOutput>;
|
|
211
193
|
deleteSyncConfiguration(
|
|
212
194
|
args: DeleteSyncConfigurationCommandInput,
|
|
213
|
-
cb: (err: any, data?: DeleteSyncConfigurationCommandOutput) => void
|
|
195
|
+
cb: (err: any, data?: DeleteSyncConfigurationCommandOutput) => void,
|
|
214
196
|
): void;
|
|
215
197
|
deleteSyncConfiguration(
|
|
216
198
|
args: DeleteSyncConfigurationCommandInput,
|
|
217
199
|
options: __HttpHandlerOptions,
|
|
218
|
-
cb: (err: any, data?: DeleteSyncConfigurationCommandOutput) => void
|
|
200
|
+
cb: (err: any, data?: DeleteSyncConfigurationCommandOutput) => void,
|
|
219
201
|
): void;
|
|
220
202
|
getConnection(
|
|
221
203
|
args: GetConnectionCommandInput,
|
|
222
|
-
options?: __HttpHandlerOptions
|
|
204
|
+
options?: __HttpHandlerOptions,
|
|
223
205
|
): Promise<GetConnectionCommandOutput>;
|
|
224
206
|
getConnection(
|
|
225
207
|
args: GetConnectionCommandInput,
|
|
226
|
-
cb: (err: any, data?: GetConnectionCommandOutput) => void
|
|
208
|
+
cb: (err: any, data?: GetConnectionCommandOutput) => void,
|
|
227
209
|
): void;
|
|
228
210
|
getConnection(
|
|
229
211
|
args: GetConnectionCommandInput,
|
|
230
212
|
options: __HttpHandlerOptions,
|
|
231
|
-
cb: (err: any, data?: GetConnectionCommandOutput) => void
|
|
232
|
-
): void;
|
|
233
|
-
getHost(
|
|
234
|
-
args: GetHostCommandInput,
|
|
235
|
-
options?: __HttpHandlerOptions
|
|
236
|
-
): Promise<GetHostCommandOutput>;
|
|
237
|
-
getHost(
|
|
238
|
-
args: GetHostCommandInput,
|
|
239
|
-
cb: (err: any, data?: GetHostCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: GetConnectionCommandOutput) => void,
|
|
240
214
|
): void;
|
|
215
|
+
getHost(args: GetHostCommandInput, options?: __HttpHandlerOptions): Promise<GetHostCommandOutput>;
|
|
216
|
+
getHost(args: GetHostCommandInput, cb: (err: any, data?: GetHostCommandOutput) => void): void;
|
|
241
217
|
getHost(
|
|
242
218
|
args: GetHostCommandInput,
|
|
243
219
|
options: __HttpHandlerOptions,
|
|
244
|
-
cb: (err: any, data?: GetHostCommandOutput) => void
|
|
220
|
+
cb: (err: any, data?: GetHostCommandOutput) => void,
|
|
245
221
|
): void;
|
|
246
222
|
getRepositoryLink(
|
|
247
223
|
args: GetRepositoryLinkCommandInput,
|
|
248
|
-
options?: __HttpHandlerOptions
|
|
224
|
+
options?: __HttpHandlerOptions,
|
|
249
225
|
): Promise<GetRepositoryLinkCommandOutput>;
|
|
250
226
|
getRepositoryLink(
|
|
251
227
|
args: GetRepositoryLinkCommandInput,
|
|
252
|
-
cb: (err: any, data?: GetRepositoryLinkCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: GetRepositoryLinkCommandOutput) => void,
|
|
253
229
|
): void;
|
|
254
230
|
getRepositoryLink(
|
|
255
231
|
args: GetRepositoryLinkCommandInput,
|
|
256
232
|
options: __HttpHandlerOptions,
|
|
257
|
-
cb: (err: any, data?: GetRepositoryLinkCommandOutput) => void
|
|
233
|
+
cb: (err: any, data?: GetRepositoryLinkCommandOutput) => void,
|
|
258
234
|
): void;
|
|
259
235
|
getRepositorySyncStatus(
|
|
260
236
|
args: GetRepositorySyncStatusCommandInput,
|
|
261
|
-
options?: __HttpHandlerOptions
|
|
237
|
+
options?: __HttpHandlerOptions,
|
|
262
238
|
): Promise<GetRepositorySyncStatusCommandOutput>;
|
|
263
239
|
getRepositorySyncStatus(
|
|
264
240
|
args: GetRepositorySyncStatusCommandInput,
|
|
265
|
-
cb: (err: any, data?: GetRepositorySyncStatusCommandOutput) => void
|
|
241
|
+
cb: (err: any, data?: GetRepositorySyncStatusCommandOutput) => void,
|
|
266
242
|
): void;
|
|
267
243
|
getRepositorySyncStatus(
|
|
268
244
|
args: GetRepositorySyncStatusCommandInput,
|
|
269
245
|
options: __HttpHandlerOptions,
|
|
270
|
-
cb: (err: any, data?: GetRepositorySyncStatusCommandOutput) => void
|
|
246
|
+
cb: (err: any, data?: GetRepositorySyncStatusCommandOutput) => void,
|
|
271
247
|
): void;
|
|
272
248
|
getResourceSyncStatus(
|
|
273
249
|
args: GetResourceSyncStatusCommandInput,
|
|
274
|
-
options?: __HttpHandlerOptions
|
|
250
|
+
options?: __HttpHandlerOptions,
|
|
275
251
|
): Promise<GetResourceSyncStatusCommandOutput>;
|
|
276
252
|
getResourceSyncStatus(
|
|
277
253
|
args: GetResourceSyncStatusCommandInput,
|
|
278
|
-
cb: (err: any, data?: GetResourceSyncStatusCommandOutput) => void
|
|
254
|
+
cb: (err: any, data?: GetResourceSyncStatusCommandOutput) => void,
|
|
279
255
|
): void;
|
|
280
256
|
getResourceSyncStatus(
|
|
281
257
|
args: GetResourceSyncStatusCommandInput,
|
|
282
258
|
options: __HttpHandlerOptions,
|
|
283
|
-
cb: (err: any, data?: GetResourceSyncStatusCommandOutput) => void
|
|
259
|
+
cb: (err: any, data?: GetResourceSyncStatusCommandOutput) => void,
|
|
284
260
|
): void;
|
|
285
261
|
getSyncBlockerSummary(
|
|
286
262
|
args: GetSyncBlockerSummaryCommandInput,
|
|
287
|
-
options?: __HttpHandlerOptions
|
|
263
|
+
options?: __HttpHandlerOptions,
|
|
288
264
|
): Promise<GetSyncBlockerSummaryCommandOutput>;
|
|
289
265
|
getSyncBlockerSummary(
|
|
290
266
|
args: GetSyncBlockerSummaryCommandInput,
|
|
291
|
-
cb: (err: any, data?: GetSyncBlockerSummaryCommandOutput) => void
|
|
267
|
+
cb: (err: any, data?: GetSyncBlockerSummaryCommandOutput) => void,
|
|
292
268
|
): void;
|
|
293
269
|
getSyncBlockerSummary(
|
|
294
270
|
args: GetSyncBlockerSummaryCommandInput,
|
|
295
271
|
options: __HttpHandlerOptions,
|
|
296
|
-
cb: (err: any, data?: GetSyncBlockerSummaryCommandOutput) => void
|
|
272
|
+
cb: (err: any, data?: GetSyncBlockerSummaryCommandOutput) => void,
|
|
297
273
|
): void;
|
|
298
274
|
getSyncConfiguration(
|
|
299
275
|
args: GetSyncConfigurationCommandInput,
|
|
300
|
-
options?: __HttpHandlerOptions
|
|
276
|
+
options?: __HttpHandlerOptions,
|
|
301
277
|
): Promise<GetSyncConfigurationCommandOutput>;
|
|
302
278
|
getSyncConfiguration(
|
|
303
279
|
args: GetSyncConfigurationCommandInput,
|
|
304
|
-
cb: (err: any, data?: GetSyncConfigurationCommandOutput) => void
|
|
280
|
+
cb: (err: any, data?: GetSyncConfigurationCommandOutput) => void,
|
|
305
281
|
): void;
|
|
306
282
|
getSyncConfiguration(
|
|
307
283
|
args: GetSyncConfigurationCommandInput,
|
|
308
284
|
options: __HttpHandlerOptions,
|
|
309
|
-
cb: (err: any, data?: GetSyncConfigurationCommandOutput) => void
|
|
285
|
+
cb: (err: any, data?: GetSyncConfigurationCommandOutput) => void,
|
|
310
286
|
): void;
|
|
311
287
|
listConnections(): Promise<ListConnectionsCommandOutput>;
|
|
312
288
|
listConnections(
|
|
313
289
|
args: ListConnectionsCommandInput,
|
|
314
|
-
options?: __HttpHandlerOptions
|
|
290
|
+
options?: __HttpHandlerOptions,
|
|
315
291
|
): Promise<ListConnectionsCommandOutput>;
|
|
316
292
|
listConnections(
|
|
317
293
|
args: ListConnectionsCommandInput,
|
|
318
|
-
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
294
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void,
|
|
319
295
|
): void;
|
|
320
296
|
listConnections(
|
|
321
297
|
args: ListConnectionsCommandInput,
|
|
322
298
|
options: __HttpHandlerOptions,
|
|
323
|
-
cb: (err: any, data?: ListConnectionsCommandOutput) => void
|
|
299
|
+
cb: (err: any, data?: ListConnectionsCommandOutput) => void,
|
|
324
300
|
): void;
|
|
325
301
|
listHosts(): Promise<ListHostsCommandOutput>;
|
|
326
302
|
listHosts(
|
|
327
303
|
args: ListHostsCommandInput,
|
|
328
|
-
options?: __HttpHandlerOptions
|
|
304
|
+
options?: __HttpHandlerOptions,
|
|
329
305
|
): Promise<ListHostsCommandOutput>;
|
|
330
306
|
listHosts(
|
|
331
307
|
args: ListHostsCommandInput,
|
|
332
|
-
cb: (err: any, data?: ListHostsCommandOutput) => void
|
|
308
|
+
cb: (err: any, data?: ListHostsCommandOutput) => void,
|
|
333
309
|
): void;
|
|
334
310
|
listHosts(
|
|
335
311
|
args: ListHostsCommandInput,
|
|
336
312
|
options: __HttpHandlerOptions,
|
|
337
|
-
cb: (err: any, data?: ListHostsCommandOutput) => void
|
|
313
|
+
cb: (err: any, data?: ListHostsCommandOutput) => void,
|
|
338
314
|
): void;
|
|
339
315
|
listRepositoryLinks(): Promise<ListRepositoryLinksCommandOutput>;
|
|
340
316
|
listRepositoryLinks(
|
|
341
317
|
args: ListRepositoryLinksCommandInput,
|
|
342
|
-
options?: __HttpHandlerOptions
|
|
318
|
+
options?: __HttpHandlerOptions,
|
|
343
319
|
): Promise<ListRepositoryLinksCommandOutput>;
|
|
344
320
|
listRepositoryLinks(
|
|
345
321
|
args: ListRepositoryLinksCommandInput,
|
|
346
|
-
cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void
|
|
322
|
+
cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void,
|
|
347
323
|
): void;
|
|
348
324
|
listRepositoryLinks(
|
|
349
325
|
args: ListRepositoryLinksCommandInput,
|
|
350
326
|
options: __HttpHandlerOptions,
|
|
351
|
-
cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void
|
|
327
|
+
cb: (err: any, data?: ListRepositoryLinksCommandOutput) => void,
|
|
352
328
|
): void;
|
|
353
329
|
listRepositorySyncDefinitions(
|
|
354
330
|
args: ListRepositorySyncDefinitionsCommandInput,
|
|
355
|
-
options?: __HttpHandlerOptions
|
|
331
|
+
options?: __HttpHandlerOptions,
|
|
356
332
|
): Promise<ListRepositorySyncDefinitionsCommandOutput>;
|
|
357
333
|
listRepositorySyncDefinitions(
|
|
358
334
|
args: ListRepositorySyncDefinitionsCommandInput,
|
|
359
|
-
cb: (err: any, data?: ListRepositorySyncDefinitionsCommandOutput) => void
|
|
335
|
+
cb: (err: any, data?: ListRepositorySyncDefinitionsCommandOutput) => void,
|
|
360
336
|
): void;
|
|
361
337
|
listRepositorySyncDefinitions(
|
|
362
338
|
args: ListRepositorySyncDefinitionsCommandInput,
|
|
363
339
|
options: __HttpHandlerOptions,
|
|
364
|
-
cb: (err: any, data?: ListRepositorySyncDefinitionsCommandOutput) => void
|
|
340
|
+
cb: (err: any, data?: ListRepositorySyncDefinitionsCommandOutput) => void,
|
|
365
341
|
): void;
|
|
366
342
|
listSyncConfigurations(
|
|
367
343
|
args: ListSyncConfigurationsCommandInput,
|
|
368
|
-
options?: __HttpHandlerOptions
|
|
344
|
+
options?: __HttpHandlerOptions,
|
|
369
345
|
): Promise<ListSyncConfigurationsCommandOutput>;
|
|
370
346
|
listSyncConfigurations(
|
|
371
347
|
args: ListSyncConfigurationsCommandInput,
|
|
372
|
-
cb: (err: any, data?: ListSyncConfigurationsCommandOutput) => void
|
|
348
|
+
cb: (err: any, data?: ListSyncConfigurationsCommandOutput) => void,
|
|
373
349
|
): void;
|
|
374
350
|
listSyncConfigurations(
|
|
375
351
|
args: ListSyncConfigurationsCommandInput,
|
|
376
352
|
options: __HttpHandlerOptions,
|
|
377
|
-
cb: (err: any, data?: ListSyncConfigurationsCommandOutput) => void
|
|
353
|
+
cb: (err: any, data?: ListSyncConfigurationsCommandOutput) => void,
|
|
378
354
|
): void;
|
|
379
355
|
listTagsForResource(
|
|
380
356
|
args: ListTagsForResourceCommandInput,
|
|
381
|
-
options?: __HttpHandlerOptions
|
|
357
|
+
options?: __HttpHandlerOptions,
|
|
382
358
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
383
359
|
listTagsForResource(
|
|
384
360
|
args: ListTagsForResourceCommandInput,
|
|
385
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
361
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
386
362
|
): void;
|
|
387
363
|
listTagsForResource(
|
|
388
364
|
args: ListTagsForResourceCommandInput,
|
|
389
365
|
options: __HttpHandlerOptions,
|
|
390
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
366
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
391
367
|
): void;
|
|
392
368
|
tagResource(
|
|
393
369
|
args: TagResourceCommandInput,
|
|
394
|
-
options?: __HttpHandlerOptions
|
|
370
|
+
options?: __HttpHandlerOptions,
|
|
395
371
|
): Promise<TagResourceCommandOutput>;
|
|
396
372
|
tagResource(
|
|
397
373
|
args: TagResourceCommandInput,
|
|
398
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
374
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
399
375
|
): void;
|
|
400
376
|
tagResource(
|
|
401
377
|
args: TagResourceCommandInput,
|
|
402
378
|
options: __HttpHandlerOptions,
|
|
403
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
379
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
404
380
|
): void;
|
|
405
381
|
untagResource(
|
|
406
382
|
args: UntagResourceCommandInput,
|
|
407
|
-
options?: __HttpHandlerOptions
|
|
383
|
+
options?: __HttpHandlerOptions,
|
|
408
384
|
): Promise<UntagResourceCommandOutput>;
|
|
409
385
|
untagResource(
|
|
410
386
|
args: UntagResourceCommandInput,
|
|
411
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
387
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
412
388
|
): void;
|
|
413
389
|
untagResource(
|
|
414
390
|
args: UntagResourceCommandInput,
|
|
415
391
|
options: __HttpHandlerOptions,
|
|
416
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
392
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
417
393
|
): void;
|
|
418
394
|
updateHost(
|
|
419
395
|
args: UpdateHostCommandInput,
|
|
420
|
-
options?: __HttpHandlerOptions
|
|
396
|
+
options?: __HttpHandlerOptions,
|
|
421
397
|
): Promise<UpdateHostCommandOutput>;
|
|
422
398
|
updateHost(
|
|
423
399
|
args: UpdateHostCommandInput,
|
|
424
|
-
cb: (err: any, data?: UpdateHostCommandOutput) => void
|
|
400
|
+
cb: (err: any, data?: UpdateHostCommandOutput) => void,
|
|
425
401
|
): void;
|
|
426
402
|
updateHost(
|
|
427
403
|
args: UpdateHostCommandInput,
|
|
428
404
|
options: __HttpHandlerOptions,
|
|
429
|
-
cb: (err: any, data?: UpdateHostCommandOutput) => void
|
|
405
|
+
cb: (err: any, data?: UpdateHostCommandOutput) => void,
|
|
430
406
|
): void;
|
|
431
407
|
updateRepositoryLink(
|
|
432
408
|
args: UpdateRepositoryLinkCommandInput,
|
|
433
|
-
options?: __HttpHandlerOptions
|
|
409
|
+
options?: __HttpHandlerOptions,
|
|
434
410
|
): Promise<UpdateRepositoryLinkCommandOutput>;
|
|
435
411
|
updateRepositoryLink(
|
|
436
412
|
args: UpdateRepositoryLinkCommandInput,
|
|
437
|
-
cb: (err: any, data?: UpdateRepositoryLinkCommandOutput) => void
|
|
413
|
+
cb: (err: any, data?: UpdateRepositoryLinkCommandOutput) => void,
|
|
438
414
|
): void;
|
|
439
415
|
updateRepositoryLink(
|
|
440
416
|
args: UpdateRepositoryLinkCommandInput,
|
|
441
417
|
options: __HttpHandlerOptions,
|
|
442
|
-
cb: (err: any, data?: UpdateRepositoryLinkCommandOutput) => void
|
|
418
|
+
cb: (err: any, data?: UpdateRepositoryLinkCommandOutput) => void,
|
|
443
419
|
): void;
|
|
444
420
|
updateSyncBlocker(
|
|
445
421
|
args: UpdateSyncBlockerCommandInput,
|
|
446
|
-
options?: __HttpHandlerOptions
|
|
422
|
+
options?: __HttpHandlerOptions,
|
|
447
423
|
): Promise<UpdateSyncBlockerCommandOutput>;
|
|
448
424
|
updateSyncBlocker(
|
|
449
425
|
args: UpdateSyncBlockerCommandInput,
|
|
450
|
-
cb: (err: any, data?: UpdateSyncBlockerCommandOutput) => void
|
|
426
|
+
cb: (err: any, data?: UpdateSyncBlockerCommandOutput) => void,
|
|
451
427
|
): void;
|
|
452
428
|
updateSyncBlocker(
|
|
453
429
|
args: UpdateSyncBlockerCommandInput,
|
|
454
430
|
options: __HttpHandlerOptions,
|
|
455
|
-
cb: (err: any, data?: UpdateSyncBlockerCommandOutput) => void
|
|
431
|
+
cb: (err: any, data?: UpdateSyncBlockerCommandOutput) => void,
|
|
456
432
|
): void;
|
|
457
433
|
updateSyncConfiguration(
|
|
458
434
|
args: UpdateSyncConfigurationCommandInput,
|
|
459
|
-
options?: __HttpHandlerOptions
|
|
435
|
+
options?: __HttpHandlerOptions,
|
|
460
436
|
): Promise<UpdateSyncConfigurationCommandOutput>;
|
|
461
437
|
updateSyncConfiguration(
|
|
462
438
|
args: UpdateSyncConfigurationCommandInput,
|
|
463
|
-
cb: (err: any, data?: UpdateSyncConfigurationCommandOutput) => void
|
|
439
|
+
cb: (err: any, data?: UpdateSyncConfigurationCommandOutput) => void,
|
|
464
440
|
): void;
|
|
465
441
|
updateSyncConfiguration(
|
|
466
442
|
args: UpdateSyncConfigurationCommandInput,
|
|
467
443
|
options: __HttpHandlerOptions,
|
|
468
|
-
cb: (err: any, data?: UpdateSyncConfigurationCommandOutput) => void
|
|
444
|
+
cb: (err: any, data?: UpdateSyncConfigurationCommandOutput) => void,
|
|
469
445
|
): void;
|
|
470
446
|
paginateListConnections(
|
|
471
447
|
args?: ListConnectionsCommandInput,
|
|
472
448
|
paginationConfig?: Pick<
|
|
473
449
|
PaginationConfiguration,
|
|
474
450
|
Exclude<keyof PaginationConfiguration, "client">
|
|
475
|
-
|
|
451
|
+
>,
|
|
476
452
|
): Paginator<ListConnectionsCommandOutput>;
|
|
477
453
|
paginateListHosts(
|
|
478
454
|
args?: ListHostsCommandInput,
|
|
479
455
|
paginationConfig?: Pick<
|
|
480
456
|
PaginationConfiguration,
|
|
481
457
|
Exclude<keyof PaginationConfiguration, "client">
|
|
482
|
-
|
|
458
|
+
>,
|
|
483
459
|
): Paginator<ListHostsCommandOutput>;
|
|
484
460
|
paginateListRepositoryLinks(
|
|
485
461
|
args?: ListRepositoryLinksCommandInput,
|
|
486
462
|
paginationConfig?: Pick<
|
|
487
463
|
PaginationConfiguration,
|
|
488
464
|
Exclude<keyof PaginationConfiguration, "client">
|
|
489
|
-
|
|
465
|
+
>,
|
|
490
466
|
): Paginator<ListRepositoryLinksCommandOutput>;
|
|
491
467
|
paginateListSyncConfigurations(
|
|
492
468
|
args: ListSyncConfigurationsCommandInput,
|
|
493
469
|
paginationConfig?: Pick<
|
|
494
470
|
PaginationConfiguration,
|
|
495
471
|
Exclude<keyof PaginationConfiguration, "client">
|
|
496
|
-
|
|
472
|
+
>,
|
|
497
473
|
): Paginator<ListSyncConfigurationsCommandOutput>;
|
|
498
474
|
}
|
|
499
475
|
export declare class CodeStarConnections
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -40,10 +37,7 @@ import {
|
|
|
40
37
|
CreateConnectionCommandInput,
|
|
41
38
|
CreateConnectionCommandOutput,
|
|
42
39
|
} from "./commands/CreateConnectionCommand";
|
|
43
|
-
import {
|
|
44
|
-
CreateHostCommandInput,
|
|
45
|
-
CreateHostCommandOutput,
|
|
46
|
-
} from "./commands/CreateHostCommand";
|
|
40
|
+
import { CreateHostCommandInput, CreateHostCommandOutput } from "./commands/CreateHostCommand";
|
|
47
41
|
import {
|
|
48
42
|
CreateRepositoryLinkCommandInput,
|
|
49
43
|
CreateRepositoryLinkCommandOutput,
|
|
@@ -56,10 +50,7 @@ import {
|
|
|
56
50
|
DeleteConnectionCommandInput,
|
|
57
51
|
DeleteConnectionCommandOutput,
|
|
58
52
|
} from "./commands/DeleteConnectionCommand";
|
|
59
|
-
import {
|
|
60
|
-
DeleteHostCommandInput,
|
|
61
|
-
DeleteHostCommandOutput,
|
|
62
|
-
} from "./commands/DeleteHostCommand";
|
|
53
|
+
import { DeleteHostCommandInput, DeleteHostCommandOutput } from "./commands/DeleteHostCommand";
|
|
63
54
|
import {
|
|
64
55
|
DeleteRepositoryLinkCommandInput,
|
|
65
56
|
DeleteRepositoryLinkCommandOutput,
|
|
@@ -72,10 +63,7 @@ import {
|
|
|
72
63
|
GetConnectionCommandInput,
|
|
73
64
|
GetConnectionCommandOutput,
|
|
74
65
|
} from "./commands/GetConnectionCommand";
|
|
75
|
-
import {
|
|
76
|
-
GetHostCommandInput,
|
|
77
|
-
GetHostCommandOutput,
|
|
78
|
-
} from "./commands/GetHostCommand";
|
|
66
|
+
import { GetHostCommandInput, GetHostCommandOutput } from "./commands/GetHostCommand";
|
|
79
67
|
import {
|
|
80
68
|
GetRepositoryLinkCommandInput,
|
|
81
69
|
GetRepositoryLinkCommandOutput,
|
|
@@ -100,10 +88,7 @@ import {
|
|
|
100
88
|
ListConnectionsCommandInput,
|
|
101
89
|
ListConnectionsCommandOutput,
|
|
102
90
|
} from "./commands/ListConnectionsCommand";
|
|
103
|
-
import {
|
|
104
|
-
ListHostsCommandInput,
|
|
105
|
-
ListHostsCommandOutput,
|
|
106
|
-
} from "./commands/ListHostsCommand";
|
|
91
|
+
import { ListHostsCommandInput, ListHostsCommandOutput } from "./commands/ListHostsCommand";
|
|
107
92
|
import {
|
|
108
93
|
ListRepositoryLinksCommandInput,
|
|
109
94
|
ListRepositoryLinksCommandOutput,
|
|
@@ -120,18 +105,12 @@ import {
|
|
|
120
105
|
ListTagsForResourceCommandInput,
|
|
121
106
|
ListTagsForResourceCommandOutput,
|
|
122
107
|
} from "./commands/ListTagsForResourceCommand";
|
|
123
|
-
import {
|
|
124
|
-
TagResourceCommandInput,
|
|
125
|
-
TagResourceCommandOutput,
|
|
126
|
-
} from "./commands/TagResourceCommand";
|
|
108
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
127
109
|
import {
|
|
128
110
|
UntagResourceCommandInput,
|
|
129
111
|
UntagResourceCommandOutput,
|
|
130
112
|
} from "./commands/UntagResourceCommand";
|
|
131
|
-
import {
|
|
132
|
-
UpdateHostCommandInput,
|
|
133
|
-
UpdateHostCommandOutput,
|
|
134
|
-
} from "./commands/UpdateHostCommand";
|
|
113
|
+
import { UpdateHostCommandInput, UpdateHostCommandOutput } from "./commands/UpdateHostCommand";
|
|
135
114
|
import {
|
|
136
115
|
UpdateRepositoryLinkCommandInput,
|
|
137
116
|
UpdateRepositoryLinkCommandOutput,
|
|
@@ -207,8 +186,7 @@ export type ServiceOutputTypes =
|
|
|
207
186
|
| UpdateRepositoryLinkCommandOutput
|
|
208
187
|
| UpdateSyncBlockerCommandOutput
|
|
209
188
|
| UpdateSyncConfigurationCommandOutput;
|
|
210
|
-
export interface ClientDefaults
|
|
211
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
189
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
212
190
|
requestHandler?: __HttpHandlerUserInput;
|
|
213
191
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
214
192
|
urlParser?: __UrlParser;
|
|
@@ -244,8 +222,7 @@ export type CodeStarConnectionsClientConfigType = Partial<
|
|
|
244
222
|
EndpointInputConfig<EndpointParameters> &
|
|
245
223
|
HttpAuthSchemeInputConfig &
|
|
246
224
|
ClientInputEndpointParameters;
|
|
247
|
-
export interface CodeStarConnectionsClientConfig
|
|
248
|
-
extends CodeStarConnectionsClientConfigType {}
|
|
225
|
+
export interface CodeStarConnectionsClientConfig extends CodeStarConnectionsClientConfigType {}
|
|
249
226
|
export type CodeStarConnectionsClientResolvedConfigType =
|
|
250
227
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
251
228
|
Required<ClientDefaults> &
|
|
@@ -257,8 +234,7 @@ export type CodeStarConnectionsClientResolvedConfigType =
|
|
|
257
234
|
EndpointResolvedConfig<EndpointParameters> &
|
|
258
235
|
HttpAuthSchemeResolvedConfig &
|
|
259
236
|
ClientResolvedEndpointParameters;
|
|
260
|
-
export interface CodeStarConnectionsClientResolvedConfig
|
|
261
|
-
extends CodeStarConnectionsClientResolvedConfigType {}
|
|
237
|
+
export interface CodeStarConnectionsClientResolvedConfig extends CodeStarConnectionsClientResolvedConfigType {}
|
|
262
238
|
export declare class CodeStarConnectionsClient extends __Client<
|
|
263
239
|
__HttpHandlerOptions,
|
|
264
240
|
ServiceInputTypes,
|
|
@@ -266,10 +242,6 @@ export declare class CodeStarConnectionsClient extends __Client<
|
|
|
266
242
|
CodeStarConnectionsClientResolvedConfig
|
|
267
243
|
> {
|
|
268
244
|
readonly config: CodeStarConnectionsClientResolvedConfig;
|
|
269
|
-
constructor(
|
|
270
|
-
...[
|
|
271
|
-
configuration,
|
|
272
|
-
]: __CheckOptionalClientConfig<CodeStarConnectionsClientConfig>
|
|
273
|
-
);
|
|
245
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<CodeStarConnectionsClientConfig>);
|
|
274
246
|
destroy(): void;
|
|
275
247
|
}
|