@aws-sdk/client-codestar-connections 3.131.0 → 3.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/CreateConnectionCommand.js +2 -2
- package/dist-cjs/commands/CreateHostCommand.js +2 -2
- package/dist-cjs/commands/DeleteConnectionCommand.js +2 -2
- package/dist-cjs/commands/DeleteHostCommand.js +2 -2
- package/dist-cjs/commands/GetConnectionCommand.js +2 -2
- package/dist-cjs/commands/GetHostCommand.js +2 -2
- package/dist-cjs/commands/ListConnectionsCommand.js +2 -2
- package/dist-cjs/commands/ListHostsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateHostCommand.js +2 -2
- package/dist-cjs/models/models_0.js +113 -169
- package/dist-es/commands/CreateConnectionCommand.js +3 -3
- package/dist-es/commands/CreateHostCommand.js +3 -3
- package/dist-es/commands/DeleteConnectionCommand.js +3 -3
- package/dist-es/commands/DeleteHostCommand.js +3 -3
- package/dist-es/commands/GetConnectionCommand.js +3 -3
- package/dist-es/commands/GetHostCommand.js +3 -3
- package/dist-es/commands/ListConnectionsCommand.js +3 -3
- package/dist-es/commands/ListHostsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateHostCommand.js +3 -3
- package/dist-es/models/models_0.js +28 -112
- package/dist-types/models/models_0.d.ts +112 -168
- package/dist-types/ts3.4/models/models_0.d.ts +56 -112
- package/package.json +6 -6
|
@@ -12,10 +12,6 @@ export interface Tag {
|
|
|
12
12
|
|
|
13
13
|
Value: string | undefined;
|
|
14
14
|
}
|
|
15
|
-
export declare namespace Tag {
|
|
16
|
-
|
|
17
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
18
|
-
}
|
|
19
15
|
export interface CreateConnectionInput {
|
|
20
16
|
|
|
21
17
|
ProviderType?: ProviderType | string;
|
|
@@ -26,20 +22,12 @@ export interface CreateConnectionInput {
|
|
|
26
22
|
|
|
27
23
|
HostArn?: string;
|
|
28
24
|
}
|
|
29
|
-
export declare namespace CreateConnectionInput {
|
|
30
|
-
|
|
31
|
-
const filterSensitiveLog: (obj: CreateConnectionInput) => any;
|
|
32
|
-
}
|
|
33
25
|
export interface CreateConnectionOutput {
|
|
34
26
|
|
|
35
27
|
ConnectionArn: string | undefined;
|
|
36
28
|
|
|
37
29
|
Tags?: Tag[];
|
|
38
30
|
}
|
|
39
|
-
export declare namespace CreateConnectionOutput {
|
|
40
|
-
|
|
41
|
-
const filterSensitiveLog: (obj: CreateConnectionOutput) => any;
|
|
42
|
-
}
|
|
43
31
|
|
|
44
32
|
export declare class LimitExceededException extends __BaseException {
|
|
45
33
|
readonly name: "LimitExceededException";
|
|
@@ -75,10 +63,6 @@ export interface VpcConfiguration {
|
|
|
75
63
|
|
|
76
64
|
TlsCertificate?: string;
|
|
77
65
|
}
|
|
78
|
-
export declare namespace VpcConfiguration {
|
|
79
|
-
|
|
80
|
-
const filterSensitiveLog: (obj: VpcConfiguration) => any;
|
|
81
|
-
}
|
|
82
66
|
export interface CreateHostInput {
|
|
83
67
|
|
|
84
68
|
Name: string | undefined;
|
|
@@ -90,55 +74,27 @@ export interface CreateHostInput {
|
|
|
90
74
|
VpcConfiguration?: VpcConfiguration;
|
|
91
75
|
Tags?: Tag[];
|
|
92
76
|
}
|
|
93
|
-
export declare namespace CreateHostInput {
|
|
94
|
-
|
|
95
|
-
const filterSensitiveLog: (obj: CreateHostInput) => any;
|
|
96
|
-
}
|
|
97
77
|
export interface CreateHostOutput {
|
|
98
78
|
|
|
99
79
|
HostArn?: string;
|
|
100
80
|
Tags?: Tag[];
|
|
101
81
|
}
|
|
102
|
-
export declare namespace CreateHostOutput {
|
|
103
|
-
|
|
104
|
-
const filterSensitiveLog: (obj: CreateHostOutput) => any;
|
|
105
|
-
}
|
|
106
82
|
export interface DeleteConnectionInput {
|
|
107
83
|
|
|
108
84
|
ConnectionArn: string | undefined;
|
|
109
85
|
}
|
|
110
|
-
export declare namespace DeleteConnectionInput {
|
|
111
|
-
|
|
112
|
-
const filterSensitiveLog: (obj: DeleteConnectionInput) => any;
|
|
113
|
-
}
|
|
114
86
|
export interface DeleteConnectionOutput {
|
|
115
87
|
}
|
|
116
|
-
export declare namespace DeleteConnectionOutput {
|
|
117
|
-
|
|
118
|
-
const filterSensitiveLog: (obj: DeleteConnectionOutput) => any;
|
|
119
|
-
}
|
|
120
88
|
export interface DeleteHostInput {
|
|
121
89
|
|
|
122
90
|
HostArn: string | undefined;
|
|
123
91
|
}
|
|
124
|
-
export declare namespace DeleteHostInput {
|
|
125
|
-
|
|
126
|
-
const filterSensitiveLog: (obj: DeleteHostInput) => any;
|
|
127
|
-
}
|
|
128
92
|
export interface DeleteHostOutput {
|
|
129
93
|
}
|
|
130
|
-
export declare namespace DeleteHostOutput {
|
|
131
|
-
|
|
132
|
-
const filterSensitiveLog: (obj: DeleteHostOutput) => any;
|
|
133
|
-
}
|
|
134
94
|
export interface GetConnectionInput {
|
|
135
95
|
|
|
136
96
|
ConnectionArn: string | undefined;
|
|
137
97
|
}
|
|
138
|
-
export declare namespace GetConnectionInput {
|
|
139
|
-
|
|
140
|
-
const filterSensitiveLog: (obj: GetConnectionInput) => any;
|
|
141
|
-
}
|
|
142
98
|
export declare enum ConnectionStatus {
|
|
143
99
|
AVAILABLE = "AVAILABLE",
|
|
144
100
|
ERROR = "ERROR",
|
|
@@ -159,26 +115,14 @@ export interface Connection {
|
|
|
159
115
|
|
|
160
116
|
HostArn?: string;
|
|
161
117
|
}
|
|
162
|
-
export declare namespace Connection {
|
|
163
|
-
|
|
164
|
-
const filterSensitiveLog: (obj: Connection) => any;
|
|
165
|
-
}
|
|
166
118
|
export interface GetConnectionOutput {
|
|
167
119
|
|
|
168
120
|
Connection?: Connection;
|
|
169
121
|
}
|
|
170
|
-
export declare namespace GetConnectionOutput {
|
|
171
|
-
|
|
172
|
-
const filterSensitiveLog: (obj: GetConnectionOutput) => any;
|
|
173
|
-
}
|
|
174
122
|
export interface GetHostInput {
|
|
175
123
|
|
|
176
124
|
HostArn: string | undefined;
|
|
177
125
|
}
|
|
178
|
-
export declare namespace GetHostInput {
|
|
179
|
-
|
|
180
|
-
const filterSensitiveLog: (obj: GetHostInput) => any;
|
|
181
|
-
}
|
|
182
126
|
export interface GetHostOutput {
|
|
183
127
|
|
|
184
128
|
Name?: string;
|
|
@@ -191,10 +135,6 @@ export interface GetHostOutput {
|
|
|
191
135
|
|
|
192
136
|
VpcConfiguration?: VpcConfiguration;
|
|
193
137
|
}
|
|
194
|
-
export declare namespace GetHostOutput {
|
|
195
|
-
|
|
196
|
-
const filterSensitiveLog: (obj: GetHostOutput) => any;
|
|
197
|
-
}
|
|
198
138
|
export interface ListConnectionsInput {
|
|
199
139
|
|
|
200
140
|
ProviderTypeFilter?: ProviderType | string;
|
|
@@ -205,30 +145,18 @@ export interface ListConnectionsInput {
|
|
|
205
145
|
|
|
206
146
|
NextToken?: string;
|
|
207
147
|
}
|
|
208
|
-
export declare namespace ListConnectionsInput {
|
|
209
|
-
|
|
210
|
-
const filterSensitiveLog: (obj: ListConnectionsInput) => any;
|
|
211
|
-
}
|
|
212
148
|
export interface ListConnectionsOutput {
|
|
213
149
|
|
|
214
150
|
Connections?: Connection[];
|
|
215
151
|
|
|
216
152
|
NextToken?: string;
|
|
217
153
|
}
|
|
218
|
-
export declare namespace ListConnectionsOutput {
|
|
219
|
-
|
|
220
|
-
const filterSensitiveLog: (obj: ListConnectionsOutput) => any;
|
|
221
|
-
}
|
|
222
154
|
export interface ListHostsInput {
|
|
223
155
|
|
|
224
156
|
MaxResults?: number;
|
|
225
157
|
|
|
226
158
|
NextToken?: string;
|
|
227
159
|
}
|
|
228
|
-
export declare namespace ListHostsInput {
|
|
229
|
-
|
|
230
|
-
const filterSensitiveLog: (obj: ListHostsInput) => any;
|
|
231
|
-
}
|
|
232
160
|
|
|
233
161
|
export interface Host {
|
|
234
162
|
|
|
@@ -246,68 +174,36 @@ export interface Host {
|
|
|
246
174
|
|
|
247
175
|
StatusMessage?: string;
|
|
248
176
|
}
|
|
249
|
-
export declare namespace Host {
|
|
250
|
-
|
|
251
|
-
const filterSensitiveLog: (obj: Host) => any;
|
|
252
|
-
}
|
|
253
177
|
export interface ListHostsOutput {
|
|
254
178
|
|
|
255
179
|
Hosts?: Host[];
|
|
256
180
|
|
|
257
181
|
NextToken?: string;
|
|
258
182
|
}
|
|
259
|
-
export declare namespace ListHostsOutput {
|
|
260
|
-
|
|
261
|
-
const filterSensitiveLog: (obj: ListHostsOutput) => any;
|
|
262
|
-
}
|
|
263
183
|
export interface ListTagsForResourceInput {
|
|
264
184
|
|
|
265
185
|
ResourceArn: string | undefined;
|
|
266
186
|
}
|
|
267
|
-
export declare namespace ListTagsForResourceInput {
|
|
268
|
-
|
|
269
|
-
const filterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
270
|
-
}
|
|
271
187
|
export interface ListTagsForResourceOutput {
|
|
272
188
|
|
|
273
189
|
Tags?: Tag[];
|
|
274
190
|
}
|
|
275
|
-
export declare namespace ListTagsForResourceOutput {
|
|
276
|
-
|
|
277
|
-
const filterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
278
|
-
}
|
|
279
191
|
export interface TagResourceInput {
|
|
280
192
|
|
|
281
193
|
ResourceArn: string | undefined;
|
|
282
194
|
|
|
283
195
|
Tags: Tag[] | undefined;
|
|
284
196
|
}
|
|
285
|
-
export declare namespace TagResourceInput {
|
|
286
|
-
|
|
287
|
-
const filterSensitiveLog: (obj: TagResourceInput) => any;
|
|
288
|
-
}
|
|
289
197
|
export interface TagResourceOutput {
|
|
290
198
|
}
|
|
291
|
-
export declare namespace TagResourceOutput {
|
|
292
|
-
|
|
293
|
-
const filterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
294
|
-
}
|
|
295
199
|
export interface UntagResourceInput {
|
|
296
200
|
|
|
297
201
|
ResourceArn: string | undefined;
|
|
298
202
|
|
|
299
203
|
TagKeys: string[] | undefined;
|
|
300
204
|
}
|
|
301
|
-
export declare namespace UntagResourceInput {
|
|
302
|
-
|
|
303
|
-
const filterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
304
|
-
}
|
|
305
205
|
export interface UntagResourceOutput {
|
|
306
206
|
}
|
|
307
|
-
export declare namespace UntagResourceOutput {
|
|
308
|
-
|
|
309
|
-
const filterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
310
|
-
}
|
|
311
207
|
|
|
312
208
|
export declare class ConflictException extends __BaseException {
|
|
313
209
|
readonly name: "ConflictException";
|
|
@@ -332,13 +228,61 @@ export interface UpdateHostInput {
|
|
|
332
228
|
|
|
333
229
|
VpcConfiguration?: VpcConfiguration;
|
|
334
230
|
}
|
|
335
|
-
export declare namespace UpdateHostInput {
|
|
336
|
-
|
|
337
|
-
const filterSensitiveLog: (obj: UpdateHostInput) => any;
|
|
338
|
-
}
|
|
339
231
|
export interface UpdateHostOutput {
|
|
340
232
|
}
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
233
|
+
|
|
234
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
235
|
+
|
|
236
|
+
export declare const CreateConnectionInputFilterSensitiveLog: (obj: CreateConnectionInput) => any;
|
|
237
|
+
|
|
238
|
+
export declare const CreateConnectionOutputFilterSensitiveLog: (obj: CreateConnectionOutput) => any;
|
|
239
|
+
|
|
240
|
+
export declare const VpcConfigurationFilterSensitiveLog: (obj: VpcConfiguration) => any;
|
|
241
|
+
|
|
242
|
+
export declare const CreateHostInputFilterSensitiveLog: (obj: CreateHostInput) => any;
|
|
243
|
+
|
|
244
|
+
export declare const CreateHostOutputFilterSensitiveLog: (obj: CreateHostOutput) => any;
|
|
245
|
+
|
|
246
|
+
export declare const DeleteConnectionInputFilterSensitiveLog: (obj: DeleteConnectionInput) => any;
|
|
247
|
+
|
|
248
|
+
export declare const DeleteConnectionOutputFilterSensitiveLog: (obj: DeleteConnectionOutput) => any;
|
|
249
|
+
|
|
250
|
+
export declare const DeleteHostInputFilterSensitiveLog: (obj: DeleteHostInput) => any;
|
|
251
|
+
|
|
252
|
+
export declare const DeleteHostOutputFilterSensitiveLog: (obj: DeleteHostOutput) => any;
|
|
253
|
+
|
|
254
|
+
export declare const GetConnectionInputFilterSensitiveLog: (obj: GetConnectionInput) => any;
|
|
255
|
+
|
|
256
|
+
export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
|
|
257
|
+
|
|
258
|
+
export declare const GetConnectionOutputFilterSensitiveLog: (obj: GetConnectionOutput) => any;
|
|
259
|
+
|
|
260
|
+
export declare const GetHostInputFilterSensitiveLog: (obj: GetHostInput) => any;
|
|
261
|
+
|
|
262
|
+
export declare const GetHostOutputFilterSensitiveLog: (obj: GetHostOutput) => any;
|
|
263
|
+
|
|
264
|
+
export declare const ListConnectionsInputFilterSensitiveLog: (obj: ListConnectionsInput) => any;
|
|
265
|
+
|
|
266
|
+
export declare const ListConnectionsOutputFilterSensitiveLog: (obj: ListConnectionsOutput) => any;
|
|
267
|
+
|
|
268
|
+
export declare const ListHostsInputFilterSensitiveLog: (obj: ListHostsInput) => any;
|
|
269
|
+
|
|
270
|
+
export declare const HostFilterSensitiveLog: (obj: Host) => any;
|
|
271
|
+
|
|
272
|
+
export declare const ListHostsOutputFilterSensitiveLog: (obj: ListHostsOutput) => any;
|
|
273
|
+
|
|
274
|
+
export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
|
|
275
|
+
|
|
276
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
277
|
+
|
|
278
|
+
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
279
|
+
|
|
280
|
+
export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
|
|
281
|
+
|
|
282
|
+
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
283
|
+
|
|
284
|
+
export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
|
|
285
|
+
|
|
286
|
+
export declare const UpdateHostInputFilterSensitiveLog: (obj: UpdateHostInput) => any;
|
|
287
|
+
|
|
288
|
+
export declare const UpdateHostOutputFilterSensitiveLog: (obj: UpdateHostOutput) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codestar-connections",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codestar Connections Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.137.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.137.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.137.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|