@aws-sdk/client-cloud9 3.721.0 → 3.726.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 +133 -89
- package/dist-es/Cloud9Client.js +1 -0
- package/dist-es/models/models_0.js +32 -16
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -163,7 +163,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
163
163
|
}, "resolveRuntimeExtensions");
|
|
164
164
|
|
|
165
165
|
// src/Cloud9Client.ts
|
|
166
|
-
var
|
|
166
|
+
var Cloud9Client = class extends import_smithy_client.Client {
|
|
167
|
+
static {
|
|
168
|
+
__name(this, "Cloud9Client");
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* The resolved configuration of Cloud9Client class. This is resolved and normalized from the {@link Cloud9ClientConfig | constructor configuration interface}.
|
|
172
|
+
*/
|
|
173
|
+
config;
|
|
167
174
|
constructor(...[configuration]) {
|
|
168
175
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
169
176
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -173,7 +180,7 @@ var _Cloud9Client = class _Cloud9Client extends import_smithy_client.Client {
|
|
|
173
180
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
174
181
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
175
182
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
176
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
183
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
177
184
|
super(_config_8);
|
|
178
185
|
this.config = _config_8;
|
|
179
186
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -201,8 +208,6 @@ var _Cloud9Client = class _Cloud9Client extends import_smithy_client.Client {
|
|
|
201
208
|
super.destroy();
|
|
202
209
|
}
|
|
203
210
|
};
|
|
204
|
-
__name(_Cloud9Client, "Cloud9Client");
|
|
205
|
-
var Cloud9Client = _Cloud9Client;
|
|
206
211
|
|
|
207
212
|
// src/Cloud9.ts
|
|
208
213
|
|
|
@@ -217,7 +222,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
217
222
|
|
|
218
223
|
// src/models/Cloud9ServiceException.ts
|
|
219
224
|
|
|
220
|
-
var
|
|
225
|
+
var Cloud9ServiceException = class _Cloud9ServiceException extends import_smithy_client.ServiceException {
|
|
226
|
+
static {
|
|
227
|
+
__name(this, "Cloud9ServiceException");
|
|
228
|
+
}
|
|
221
229
|
/**
|
|
222
230
|
* @internal
|
|
223
231
|
*/
|
|
@@ -226,11 +234,16 @@ var _Cloud9ServiceException = class _Cloud9ServiceException extends import_smith
|
|
|
226
234
|
Object.setPrototypeOf(this, _Cloud9ServiceException.prototype);
|
|
227
235
|
}
|
|
228
236
|
};
|
|
229
|
-
__name(_Cloud9ServiceException, "Cloud9ServiceException");
|
|
230
|
-
var Cloud9ServiceException = _Cloud9ServiceException;
|
|
231
237
|
|
|
232
238
|
// src/models/models_0.ts
|
|
233
|
-
var
|
|
239
|
+
var BadRequestException = class _BadRequestException extends Cloud9ServiceException {
|
|
240
|
+
static {
|
|
241
|
+
__name(this, "BadRequestException");
|
|
242
|
+
}
|
|
243
|
+
name = "BadRequestException";
|
|
244
|
+
$fault = "client";
|
|
245
|
+
className;
|
|
246
|
+
code;
|
|
234
247
|
/**
|
|
235
248
|
* @internal
|
|
236
249
|
*/
|
|
@@ -240,16 +253,19 @@ var _BadRequestException = class _BadRequestException extends Cloud9ServiceExcep
|
|
|
240
253
|
$fault: "client",
|
|
241
254
|
...opts
|
|
242
255
|
});
|
|
243
|
-
this.name = "BadRequestException";
|
|
244
|
-
this.$fault = "client";
|
|
245
256
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
246
257
|
this.className = opts.className;
|
|
247
258
|
this.code = opts.code;
|
|
248
259
|
}
|
|
249
260
|
};
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
261
|
+
var ConflictException = class _ConflictException extends Cloud9ServiceException {
|
|
262
|
+
static {
|
|
263
|
+
__name(this, "ConflictException");
|
|
264
|
+
}
|
|
265
|
+
name = "ConflictException";
|
|
266
|
+
$fault = "client";
|
|
267
|
+
className;
|
|
268
|
+
code;
|
|
253
269
|
/**
|
|
254
270
|
* @internal
|
|
255
271
|
*/
|
|
@@ -259,20 +275,23 @@ var _ConflictException = class _ConflictException extends Cloud9ServiceException
|
|
|
259
275
|
$fault: "client",
|
|
260
276
|
...opts
|
|
261
277
|
});
|
|
262
|
-
this.name = "ConflictException";
|
|
263
|
-
this.$fault = "client";
|
|
264
278
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
265
279
|
this.className = opts.className;
|
|
266
280
|
this.code = opts.code;
|
|
267
281
|
}
|
|
268
282
|
};
|
|
269
|
-
__name(_ConflictException, "ConflictException");
|
|
270
|
-
var ConflictException = _ConflictException;
|
|
271
283
|
var ConnectionType = {
|
|
272
284
|
CONNECT_SSH: "CONNECT_SSH",
|
|
273
285
|
CONNECT_SSM: "CONNECT_SSM"
|
|
274
286
|
};
|
|
275
|
-
var
|
|
287
|
+
var ForbiddenException = class _ForbiddenException extends Cloud9ServiceException {
|
|
288
|
+
static {
|
|
289
|
+
__name(this, "ForbiddenException");
|
|
290
|
+
}
|
|
291
|
+
name = "ForbiddenException";
|
|
292
|
+
$fault = "client";
|
|
293
|
+
className;
|
|
294
|
+
code;
|
|
276
295
|
/**
|
|
277
296
|
* @internal
|
|
278
297
|
*/
|
|
@@ -282,16 +301,19 @@ var _ForbiddenException = class _ForbiddenException extends Cloud9ServiceExcepti
|
|
|
282
301
|
$fault: "client",
|
|
283
302
|
...opts
|
|
284
303
|
});
|
|
285
|
-
this.name = "ForbiddenException";
|
|
286
|
-
this.$fault = "client";
|
|
287
304
|
Object.setPrototypeOf(this, _ForbiddenException.prototype);
|
|
288
305
|
this.className = opts.className;
|
|
289
306
|
this.code = opts.code;
|
|
290
307
|
}
|
|
291
308
|
};
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
309
|
+
var InternalServerErrorException = class _InternalServerErrorException extends Cloud9ServiceException {
|
|
310
|
+
static {
|
|
311
|
+
__name(this, "InternalServerErrorException");
|
|
312
|
+
}
|
|
313
|
+
name = "InternalServerErrorException";
|
|
314
|
+
$fault = "server";
|
|
315
|
+
className;
|
|
316
|
+
code;
|
|
295
317
|
/**
|
|
296
318
|
* @internal
|
|
297
319
|
*/
|
|
@@ -301,16 +323,19 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
301
323
|
$fault: "server",
|
|
302
324
|
...opts
|
|
303
325
|
});
|
|
304
|
-
this.name = "InternalServerErrorException";
|
|
305
|
-
this.$fault = "server";
|
|
306
326
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
307
327
|
this.className = opts.className;
|
|
308
328
|
this.code = opts.code;
|
|
309
329
|
}
|
|
310
330
|
};
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
331
|
+
var LimitExceededException = class _LimitExceededException extends Cloud9ServiceException {
|
|
332
|
+
static {
|
|
333
|
+
__name(this, "LimitExceededException");
|
|
334
|
+
}
|
|
335
|
+
name = "LimitExceededException";
|
|
336
|
+
$fault = "client";
|
|
337
|
+
className;
|
|
338
|
+
code;
|
|
314
339
|
/**
|
|
315
340
|
* @internal
|
|
316
341
|
*/
|
|
@@ -320,16 +345,19 @@ var _LimitExceededException = class _LimitExceededException extends Cloud9Servic
|
|
|
320
345
|
$fault: "client",
|
|
321
346
|
...opts
|
|
322
347
|
});
|
|
323
|
-
this.name = "LimitExceededException";
|
|
324
|
-
this.$fault = "client";
|
|
325
348
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
326
349
|
this.className = opts.className;
|
|
327
350
|
this.code = opts.code;
|
|
328
351
|
}
|
|
329
352
|
};
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
353
|
+
var NotFoundException = class _NotFoundException extends Cloud9ServiceException {
|
|
354
|
+
static {
|
|
355
|
+
__name(this, "NotFoundException");
|
|
356
|
+
}
|
|
357
|
+
name = "NotFoundException";
|
|
358
|
+
$fault = "client";
|
|
359
|
+
className;
|
|
360
|
+
code;
|
|
333
361
|
/**
|
|
334
362
|
* @internal
|
|
335
363
|
*/
|
|
@@ -339,16 +367,19 @@ var _NotFoundException = class _NotFoundException extends Cloud9ServiceException
|
|
|
339
367
|
$fault: "client",
|
|
340
368
|
...opts
|
|
341
369
|
});
|
|
342
|
-
this.name = "NotFoundException";
|
|
343
|
-
this.$fault = "client";
|
|
344
370
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
345
371
|
this.className = opts.className;
|
|
346
372
|
this.code = opts.code;
|
|
347
373
|
}
|
|
348
374
|
};
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
375
|
+
var TooManyRequestsException = class _TooManyRequestsException extends Cloud9ServiceException {
|
|
376
|
+
static {
|
|
377
|
+
__name(this, "TooManyRequestsException");
|
|
378
|
+
}
|
|
379
|
+
name = "TooManyRequestsException";
|
|
380
|
+
$fault = "client";
|
|
381
|
+
className;
|
|
382
|
+
code;
|
|
352
383
|
/**
|
|
353
384
|
* @internal
|
|
354
385
|
*/
|
|
@@ -358,15 +389,11 @@ var _TooManyRequestsException = class _TooManyRequestsException extends Cloud9Se
|
|
|
358
389
|
$fault: "client",
|
|
359
390
|
...opts
|
|
360
391
|
});
|
|
361
|
-
this.name = "TooManyRequestsException";
|
|
362
|
-
this.$fault = "client";
|
|
363
392
|
Object.setPrototypeOf(this, _TooManyRequestsException.prototype);
|
|
364
393
|
this.className = opts.className;
|
|
365
394
|
this.code = opts.code;
|
|
366
395
|
}
|
|
367
396
|
};
|
|
368
|
-
__name(_TooManyRequestsException, "TooManyRequestsException");
|
|
369
|
-
var TooManyRequestsException = _TooManyRequestsException;
|
|
370
397
|
var MemberPermissions = {
|
|
371
398
|
READ_ONLY: "read-only",
|
|
372
399
|
READ_WRITE: "read-write"
|
|
@@ -409,7 +436,14 @@ var EnvironmentStatus = {
|
|
|
409
436
|
STOPPED: "stopped",
|
|
410
437
|
STOPPING: "stopping"
|
|
411
438
|
};
|
|
412
|
-
var
|
|
439
|
+
var ConcurrentAccessException = class _ConcurrentAccessException extends Cloud9ServiceException {
|
|
440
|
+
static {
|
|
441
|
+
__name(this, "ConcurrentAccessException");
|
|
442
|
+
}
|
|
443
|
+
name = "ConcurrentAccessException";
|
|
444
|
+
$fault = "client";
|
|
445
|
+
className;
|
|
446
|
+
code;
|
|
413
447
|
/**
|
|
414
448
|
* @internal
|
|
415
449
|
*/
|
|
@@ -419,15 +453,11 @@ var _ConcurrentAccessException = class _ConcurrentAccessException extends Cloud9
|
|
|
419
453
|
$fault: "client",
|
|
420
454
|
...opts
|
|
421
455
|
});
|
|
422
|
-
this.name = "ConcurrentAccessException";
|
|
423
|
-
this.$fault = "client";
|
|
424
456
|
Object.setPrototypeOf(this, _ConcurrentAccessException.prototype);
|
|
425
457
|
this.className = opts.className;
|
|
426
458
|
this.code = opts.code;
|
|
427
459
|
}
|
|
428
460
|
};
|
|
429
|
-
__name(_ConcurrentAccessException, "ConcurrentAccessException");
|
|
430
|
-
var ConcurrentAccessException = _ConcurrentAccessException;
|
|
431
461
|
var ManagedCredentialsAction = {
|
|
432
462
|
DISABLE: "DISABLE",
|
|
433
463
|
ENABLE: "ENABLE"
|
|
@@ -895,183 +925,196 @@ function sharedHeaders(operation) {
|
|
|
895
925
|
__name(sharedHeaders, "sharedHeaders");
|
|
896
926
|
|
|
897
927
|
// src/commands/CreateEnvironmentEC2Command.ts
|
|
898
|
-
var
|
|
928
|
+
var CreateEnvironmentEC2Command = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
899
929
|
return [
|
|
900
930
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
901
931
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
902
932
|
];
|
|
903
933
|
}).s("AWSCloud9WorkspaceManagementService", "CreateEnvironmentEC2", {}).n("Cloud9Client", "CreateEnvironmentEC2Command").f(CreateEnvironmentEC2RequestFilterSensitiveLog, void 0).ser(se_CreateEnvironmentEC2Command).de(de_CreateEnvironmentEC2Command).build() {
|
|
934
|
+
static {
|
|
935
|
+
__name(this, "CreateEnvironmentEC2Command");
|
|
936
|
+
}
|
|
904
937
|
};
|
|
905
|
-
__name(_CreateEnvironmentEC2Command, "CreateEnvironmentEC2Command");
|
|
906
|
-
var CreateEnvironmentEC2Command = _CreateEnvironmentEC2Command;
|
|
907
938
|
|
|
908
939
|
// src/commands/CreateEnvironmentMembershipCommand.ts
|
|
909
940
|
|
|
910
941
|
|
|
911
942
|
|
|
912
|
-
var
|
|
943
|
+
var CreateEnvironmentMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
913
944
|
return [
|
|
914
945
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
915
946
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
916
947
|
];
|
|
917
948
|
}).s("AWSCloud9WorkspaceManagementService", "CreateEnvironmentMembership", {}).n("Cloud9Client", "CreateEnvironmentMembershipCommand").f(void 0, void 0).ser(se_CreateEnvironmentMembershipCommand).de(de_CreateEnvironmentMembershipCommand).build() {
|
|
949
|
+
static {
|
|
950
|
+
__name(this, "CreateEnvironmentMembershipCommand");
|
|
951
|
+
}
|
|
918
952
|
};
|
|
919
|
-
__name(_CreateEnvironmentMembershipCommand, "CreateEnvironmentMembershipCommand");
|
|
920
|
-
var CreateEnvironmentMembershipCommand = _CreateEnvironmentMembershipCommand;
|
|
921
953
|
|
|
922
954
|
// src/commands/DeleteEnvironmentCommand.ts
|
|
923
955
|
|
|
924
956
|
|
|
925
957
|
|
|
926
|
-
var
|
|
958
|
+
var DeleteEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
927
959
|
return [
|
|
928
960
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
929
961
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
930
962
|
];
|
|
931
963
|
}).s("AWSCloud9WorkspaceManagementService", "DeleteEnvironment", {}).n("Cloud9Client", "DeleteEnvironmentCommand").f(void 0, void 0).ser(se_DeleteEnvironmentCommand).de(de_DeleteEnvironmentCommand).build() {
|
|
964
|
+
static {
|
|
965
|
+
__name(this, "DeleteEnvironmentCommand");
|
|
966
|
+
}
|
|
932
967
|
};
|
|
933
|
-
__name(_DeleteEnvironmentCommand, "DeleteEnvironmentCommand");
|
|
934
|
-
var DeleteEnvironmentCommand = _DeleteEnvironmentCommand;
|
|
935
968
|
|
|
936
969
|
// src/commands/DeleteEnvironmentMembershipCommand.ts
|
|
937
970
|
|
|
938
971
|
|
|
939
972
|
|
|
940
|
-
var
|
|
973
|
+
var DeleteEnvironmentMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
941
974
|
return [
|
|
942
975
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
943
976
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
944
977
|
];
|
|
945
978
|
}).s("AWSCloud9WorkspaceManagementService", "DeleteEnvironmentMembership", {}).n("Cloud9Client", "DeleteEnvironmentMembershipCommand").f(void 0, void 0).ser(se_DeleteEnvironmentMembershipCommand).de(de_DeleteEnvironmentMembershipCommand).build() {
|
|
979
|
+
static {
|
|
980
|
+
__name(this, "DeleteEnvironmentMembershipCommand");
|
|
981
|
+
}
|
|
946
982
|
};
|
|
947
|
-
__name(_DeleteEnvironmentMembershipCommand, "DeleteEnvironmentMembershipCommand");
|
|
948
|
-
var DeleteEnvironmentMembershipCommand = _DeleteEnvironmentMembershipCommand;
|
|
949
983
|
|
|
950
984
|
// src/commands/DescribeEnvironmentMembershipsCommand.ts
|
|
951
985
|
|
|
952
986
|
|
|
953
987
|
|
|
954
|
-
var
|
|
988
|
+
var DescribeEnvironmentMembershipsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
955
989
|
return [
|
|
956
990
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
957
991
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
958
992
|
];
|
|
959
993
|
}).s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentMemberships", {}).n("Cloud9Client", "DescribeEnvironmentMembershipsCommand").f(void 0, void 0).ser(se_DescribeEnvironmentMembershipsCommand).de(de_DescribeEnvironmentMembershipsCommand).build() {
|
|
994
|
+
static {
|
|
995
|
+
__name(this, "DescribeEnvironmentMembershipsCommand");
|
|
996
|
+
}
|
|
960
997
|
};
|
|
961
|
-
__name(_DescribeEnvironmentMembershipsCommand, "DescribeEnvironmentMembershipsCommand");
|
|
962
|
-
var DescribeEnvironmentMembershipsCommand = _DescribeEnvironmentMembershipsCommand;
|
|
963
998
|
|
|
964
999
|
// src/commands/DescribeEnvironmentsCommand.ts
|
|
965
1000
|
|
|
966
1001
|
|
|
967
1002
|
|
|
968
|
-
var
|
|
1003
|
+
var DescribeEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
969
1004
|
return [
|
|
970
1005
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
971
1006
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
972
1007
|
];
|
|
973
1008
|
}).s("AWSCloud9WorkspaceManagementService", "DescribeEnvironments", {}).n("Cloud9Client", "DescribeEnvironmentsCommand").f(void 0, DescribeEnvironmentsResultFilterSensitiveLog).ser(se_DescribeEnvironmentsCommand).de(de_DescribeEnvironmentsCommand).build() {
|
|
1009
|
+
static {
|
|
1010
|
+
__name(this, "DescribeEnvironmentsCommand");
|
|
1011
|
+
}
|
|
974
1012
|
};
|
|
975
|
-
__name(_DescribeEnvironmentsCommand, "DescribeEnvironmentsCommand");
|
|
976
|
-
var DescribeEnvironmentsCommand = _DescribeEnvironmentsCommand;
|
|
977
1013
|
|
|
978
1014
|
// src/commands/DescribeEnvironmentStatusCommand.ts
|
|
979
1015
|
|
|
980
1016
|
|
|
981
1017
|
|
|
982
|
-
var
|
|
1018
|
+
var DescribeEnvironmentStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
983
1019
|
return [
|
|
984
1020
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
985
1021
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
986
1022
|
];
|
|
987
1023
|
}).s("AWSCloud9WorkspaceManagementService", "DescribeEnvironmentStatus", {}).n("Cloud9Client", "DescribeEnvironmentStatusCommand").f(void 0, void 0).ser(se_DescribeEnvironmentStatusCommand).de(de_DescribeEnvironmentStatusCommand).build() {
|
|
1024
|
+
static {
|
|
1025
|
+
__name(this, "DescribeEnvironmentStatusCommand");
|
|
1026
|
+
}
|
|
988
1027
|
};
|
|
989
|
-
__name(_DescribeEnvironmentStatusCommand, "DescribeEnvironmentStatusCommand");
|
|
990
|
-
var DescribeEnvironmentStatusCommand = _DescribeEnvironmentStatusCommand;
|
|
991
1028
|
|
|
992
1029
|
// src/commands/ListEnvironmentsCommand.ts
|
|
993
1030
|
|
|
994
1031
|
|
|
995
1032
|
|
|
996
|
-
var
|
|
1033
|
+
var ListEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
997
1034
|
return [
|
|
998
1035
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
999
1036
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1000
1037
|
];
|
|
1001
1038
|
}).s("AWSCloud9WorkspaceManagementService", "ListEnvironments", {}).n("Cloud9Client", "ListEnvironmentsCommand").f(void 0, void 0).ser(se_ListEnvironmentsCommand).de(de_ListEnvironmentsCommand).build() {
|
|
1039
|
+
static {
|
|
1040
|
+
__name(this, "ListEnvironmentsCommand");
|
|
1041
|
+
}
|
|
1002
1042
|
};
|
|
1003
|
-
__name(_ListEnvironmentsCommand, "ListEnvironmentsCommand");
|
|
1004
|
-
var ListEnvironmentsCommand = _ListEnvironmentsCommand;
|
|
1005
1043
|
|
|
1006
1044
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1007
1045
|
|
|
1008
1046
|
|
|
1009
1047
|
|
|
1010
|
-
var
|
|
1048
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1011
1049
|
return [
|
|
1012
1050
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1013
1051
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1014
1052
|
];
|
|
1015
1053
|
}).s("AWSCloud9WorkspaceManagementService", "ListTagsForResource", {}).n("Cloud9Client", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceResponseFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1054
|
+
static {
|
|
1055
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1056
|
+
}
|
|
1016
1057
|
};
|
|
1017
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1018
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1019
1058
|
|
|
1020
1059
|
// src/commands/TagResourceCommand.ts
|
|
1021
1060
|
|
|
1022
1061
|
|
|
1023
1062
|
|
|
1024
|
-
var
|
|
1063
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1025
1064
|
return [
|
|
1026
1065
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1027
1066
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1028
1067
|
];
|
|
1029
1068
|
}).s("AWSCloud9WorkspaceManagementService", "TagResource", {}).n("Cloud9Client", "TagResourceCommand").f(TagResourceRequestFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1069
|
+
static {
|
|
1070
|
+
__name(this, "TagResourceCommand");
|
|
1071
|
+
}
|
|
1030
1072
|
};
|
|
1031
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1032
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1033
1073
|
|
|
1034
1074
|
// src/commands/UntagResourceCommand.ts
|
|
1035
1075
|
|
|
1036
1076
|
|
|
1037
1077
|
|
|
1038
|
-
var
|
|
1078
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1039
1079
|
return [
|
|
1040
1080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1041
1081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1042
1082
|
];
|
|
1043
1083
|
}).s("AWSCloud9WorkspaceManagementService", "UntagResource", {}).n("Cloud9Client", "UntagResourceCommand").f(UntagResourceRequestFilterSensitiveLog, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1084
|
+
static {
|
|
1085
|
+
__name(this, "UntagResourceCommand");
|
|
1086
|
+
}
|
|
1044
1087
|
};
|
|
1045
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1046
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1047
1088
|
|
|
1048
1089
|
// src/commands/UpdateEnvironmentCommand.ts
|
|
1049
1090
|
|
|
1050
1091
|
|
|
1051
1092
|
|
|
1052
|
-
var
|
|
1093
|
+
var UpdateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1053
1094
|
return [
|
|
1054
1095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1055
1096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1056
1097
|
];
|
|
1057
1098
|
}).s("AWSCloud9WorkspaceManagementService", "UpdateEnvironment", {}).n("Cloud9Client", "UpdateEnvironmentCommand").f(UpdateEnvironmentRequestFilterSensitiveLog, void 0).ser(se_UpdateEnvironmentCommand).de(de_UpdateEnvironmentCommand).build() {
|
|
1099
|
+
static {
|
|
1100
|
+
__name(this, "UpdateEnvironmentCommand");
|
|
1101
|
+
}
|
|
1058
1102
|
};
|
|
1059
|
-
__name(_UpdateEnvironmentCommand, "UpdateEnvironmentCommand");
|
|
1060
|
-
var UpdateEnvironmentCommand = _UpdateEnvironmentCommand;
|
|
1061
1103
|
|
|
1062
1104
|
// src/commands/UpdateEnvironmentMembershipCommand.ts
|
|
1063
1105
|
|
|
1064
1106
|
|
|
1065
1107
|
|
|
1066
|
-
var
|
|
1108
|
+
var UpdateEnvironmentMembershipCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1067
1109
|
return [
|
|
1068
1110
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1069
1111
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1070
1112
|
];
|
|
1071
1113
|
}).s("AWSCloud9WorkspaceManagementService", "UpdateEnvironmentMembership", {}).n("Cloud9Client", "UpdateEnvironmentMembershipCommand").f(void 0, void 0).ser(se_UpdateEnvironmentMembershipCommand).de(de_UpdateEnvironmentMembershipCommand).build() {
|
|
1114
|
+
static {
|
|
1115
|
+
__name(this, "UpdateEnvironmentMembershipCommand");
|
|
1116
|
+
}
|
|
1072
1117
|
};
|
|
1073
|
-
__name(_UpdateEnvironmentMembershipCommand, "UpdateEnvironmentMembershipCommand");
|
|
1074
|
-
var UpdateEnvironmentMembershipCommand = _UpdateEnvironmentMembershipCommand;
|
|
1075
1118
|
|
|
1076
1119
|
// src/Cloud9.ts
|
|
1077
1120
|
var commands = {
|
|
@@ -1089,10 +1132,11 @@ var commands = {
|
|
|
1089
1132
|
UpdateEnvironmentCommand,
|
|
1090
1133
|
UpdateEnvironmentMembershipCommand
|
|
1091
1134
|
};
|
|
1092
|
-
var
|
|
1135
|
+
var Cloud9 = class extends Cloud9Client {
|
|
1136
|
+
static {
|
|
1137
|
+
__name(this, "Cloud9");
|
|
1138
|
+
}
|
|
1093
1139
|
};
|
|
1094
|
-
__name(_Cloud9, "Cloud9");
|
|
1095
|
-
var Cloud9 = _Cloud9;
|
|
1096
1140
|
(0, import_smithy_client.createAggregatedClient)(commands, Cloud9);
|
|
1097
1141
|
|
|
1098
1142
|
// src/pagination/DescribeEnvironmentMembershipsPaginator.ts
|
package/dist-es/Cloud9Client.js
CHANGED
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class Cloud9Client extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,28 +1,32 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { Cloud9ServiceException as __BaseException } from "./Cloud9ServiceException";
|
|
3
3
|
export class BadRequestException extends __BaseException {
|
|
4
|
+
name = "BadRequestException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
className;
|
|
7
|
+
code;
|
|
4
8
|
constructor(opts) {
|
|
5
9
|
super({
|
|
6
10
|
name: "BadRequestException",
|
|
7
11
|
$fault: "client",
|
|
8
12
|
...opts,
|
|
9
13
|
});
|
|
10
|
-
this.name = "BadRequestException";
|
|
11
|
-
this.$fault = "client";
|
|
12
14
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
13
15
|
this.className = opts.className;
|
|
14
16
|
this.code = opts.code;
|
|
15
17
|
}
|
|
16
18
|
}
|
|
17
19
|
export class ConflictException extends __BaseException {
|
|
20
|
+
name = "ConflictException";
|
|
21
|
+
$fault = "client";
|
|
22
|
+
className;
|
|
23
|
+
code;
|
|
18
24
|
constructor(opts) {
|
|
19
25
|
super({
|
|
20
26
|
name: "ConflictException",
|
|
21
27
|
$fault: "client",
|
|
22
28
|
...opts,
|
|
23
29
|
});
|
|
24
|
-
this.name = "ConflictException";
|
|
25
|
-
this.$fault = "client";
|
|
26
30
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
27
31
|
this.className = opts.className;
|
|
28
32
|
this.code = opts.code;
|
|
@@ -33,70 +37,80 @@ export const ConnectionType = {
|
|
|
33
37
|
CONNECT_SSM: "CONNECT_SSM",
|
|
34
38
|
};
|
|
35
39
|
export class ForbiddenException extends __BaseException {
|
|
40
|
+
name = "ForbiddenException";
|
|
41
|
+
$fault = "client";
|
|
42
|
+
className;
|
|
43
|
+
code;
|
|
36
44
|
constructor(opts) {
|
|
37
45
|
super({
|
|
38
46
|
name: "ForbiddenException",
|
|
39
47
|
$fault: "client",
|
|
40
48
|
...opts,
|
|
41
49
|
});
|
|
42
|
-
this.name = "ForbiddenException";
|
|
43
|
-
this.$fault = "client";
|
|
44
50
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
45
51
|
this.className = opts.className;
|
|
46
52
|
this.code = opts.code;
|
|
47
53
|
}
|
|
48
54
|
}
|
|
49
55
|
export class InternalServerErrorException extends __BaseException {
|
|
56
|
+
name = "InternalServerErrorException";
|
|
57
|
+
$fault = "server";
|
|
58
|
+
className;
|
|
59
|
+
code;
|
|
50
60
|
constructor(opts) {
|
|
51
61
|
super({
|
|
52
62
|
name: "InternalServerErrorException",
|
|
53
63
|
$fault: "server",
|
|
54
64
|
...opts,
|
|
55
65
|
});
|
|
56
|
-
this.name = "InternalServerErrorException";
|
|
57
|
-
this.$fault = "server";
|
|
58
66
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
59
67
|
this.className = opts.className;
|
|
60
68
|
this.code = opts.code;
|
|
61
69
|
}
|
|
62
70
|
}
|
|
63
71
|
export class LimitExceededException extends __BaseException {
|
|
72
|
+
name = "LimitExceededException";
|
|
73
|
+
$fault = "client";
|
|
74
|
+
className;
|
|
75
|
+
code;
|
|
64
76
|
constructor(opts) {
|
|
65
77
|
super({
|
|
66
78
|
name: "LimitExceededException",
|
|
67
79
|
$fault: "client",
|
|
68
80
|
...opts,
|
|
69
81
|
});
|
|
70
|
-
this.name = "LimitExceededException";
|
|
71
|
-
this.$fault = "client";
|
|
72
82
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
73
83
|
this.className = opts.className;
|
|
74
84
|
this.code = opts.code;
|
|
75
85
|
}
|
|
76
86
|
}
|
|
77
87
|
export class NotFoundException extends __BaseException {
|
|
88
|
+
name = "NotFoundException";
|
|
89
|
+
$fault = "client";
|
|
90
|
+
className;
|
|
91
|
+
code;
|
|
78
92
|
constructor(opts) {
|
|
79
93
|
super({
|
|
80
94
|
name: "NotFoundException",
|
|
81
95
|
$fault: "client",
|
|
82
96
|
...opts,
|
|
83
97
|
});
|
|
84
|
-
this.name = "NotFoundException";
|
|
85
|
-
this.$fault = "client";
|
|
86
98
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
87
99
|
this.className = opts.className;
|
|
88
100
|
this.code = opts.code;
|
|
89
101
|
}
|
|
90
102
|
}
|
|
91
103
|
export class TooManyRequestsException extends __BaseException {
|
|
104
|
+
name = "TooManyRequestsException";
|
|
105
|
+
$fault = "client";
|
|
106
|
+
className;
|
|
107
|
+
code;
|
|
92
108
|
constructor(opts) {
|
|
93
109
|
super({
|
|
94
110
|
name: "TooManyRequestsException",
|
|
95
111
|
$fault: "client",
|
|
96
112
|
...opts,
|
|
97
113
|
});
|
|
98
|
-
this.name = "TooManyRequestsException";
|
|
99
|
-
this.$fault = "client";
|
|
100
114
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
101
115
|
this.className = opts.className;
|
|
102
116
|
this.code = opts.code;
|
|
@@ -145,14 +159,16 @@ export const EnvironmentStatus = {
|
|
|
145
159
|
STOPPING: "stopping",
|
|
146
160
|
};
|
|
147
161
|
export class ConcurrentAccessException extends __BaseException {
|
|
162
|
+
name = "ConcurrentAccessException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
className;
|
|
165
|
+
code;
|
|
148
166
|
constructor(opts) {
|
|
149
167
|
super({
|
|
150
168
|
name: "ConcurrentAccessException",
|
|
151
169
|
$fault: "client",
|
|
152
170
|
...opts,
|
|
153
171
|
});
|
|
154
|
-
this.name = "ConcurrentAccessException";
|
|
155
|
-
this.$fault = "client";
|
|
156
172
|
Object.setPrototypeOf(this, ConcurrentAccessException.prototype);
|
|
157
173
|
this.className = opts.className;
|
|
158
174
|
this.code = opts.code;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: Cloud9ClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloud9",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloud9 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloud9",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|