@aws-sdk/client-codecatalyst 3.721.0 → 3.723.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
CHANGED
|
@@ -189,7 +189,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
189
189
|
}, "resolveRuntimeExtensions");
|
|
190
190
|
|
|
191
191
|
// src/CodeCatalystClient.ts
|
|
192
|
-
var
|
|
192
|
+
var CodeCatalystClient = class extends import_smithy_client.Client {
|
|
193
|
+
static {
|
|
194
|
+
__name(this, "CodeCatalystClient");
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* The resolved configuration of CodeCatalystClient class. This is resolved and normalized from the {@link CodeCatalystClientConfig | constructor configuration interface}.
|
|
198
|
+
*/
|
|
199
|
+
config;
|
|
193
200
|
constructor(...[configuration]) {
|
|
194
201
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
195
202
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -199,7 +206,7 @@ var _CodeCatalystClient = class _CodeCatalystClient extends import_smithy_client
|
|
|
199
206
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
200
207
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
201
208
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
202
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
209
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
203
210
|
super(_config_8);
|
|
204
211
|
this.config = _config_8;
|
|
205
212
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -227,8 +234,6 @@ var _CodeCatalystClient = class _CodeCatalystClient extends import_smithy_client
|
|
|
227
234
|
super.destroy();
|
|
228
235
|
}
|
|
229
236
|
};
|
|
230
|
-
__name(_CodeCatalystClient, "CodeCatalystClient");
|
|
231
|
-
var CodeCatalystClient = _CodeCatalystClient;
|
|
232
237
|
|
|
233
238
|
// src/CodeCatalyst.ts
|
|
234
239
|
|
|
@@ -243,7 +248,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
243
248
|
|
|
244
249
|
// src/models/CodeCatalystServiceException.ts
|
|
245
250
|
|
|
246
|
-
var
|
|
251
|
+
var CodeCatalystServiceException = class _CodeCatalystServiceException extends import_smithy_client.ServiceException {
|
|
252
|
+
static {
|
|
253
|
+
__name(this, "CodeCatalystServiceException");
|
|
254
|
+
}
|
|
247
255
|
/**
|
|
248
256
|
* @internal
|
|
249
257
|
*/
|
|
@@ -252,11 +260,14 @@ var _CodeCatalystServiceException = class _CodeCatalystServiceException extends
|
|
|
252
260
|
Object.setPrototypeOf(this, _CodeCatalystServiceException.prototype);
|
|
253
261
|
}
|
|
254
262
|
};
|
|
255
|
-
__name(_CodeCatalystServiceException, "CodeCatalystServiceException");
|
|
256
|
-
var CodeCatalystServiceException = _CodeCatalystServiceException;
|
|
257
263
|
|
|
258
264
|
// src/models/models_0.ts
|
|
259
|
-
var
|
|
265
|
+
var AccessDeniedException = class _AccessDeniedException extends CodeCatalystServiceException {
|
|
266
|
+
static {
|
|
267
|
+
__name(this, "AccessDeniedException");
|
|
268
|
+
}
|
|
269
|
+
name = "AccessDeniedException";
|
|
270
|
+
$fault = "client";
|
|
260
271
|
/**
|
|
261
272
|
* @internal
|
|
262
273
|
*/
|
|
@@ -266,14 +277,15 @@ var _AccessDeniedException = class _AccessDeniedException extends CodeCatalystSe
|
|
|
266
277
|
$fault: "client",
|
|
267
278
|
...opts
|
|
268
279
|
});
|
|
269
|
-
this.name = "AccessDeniedException";
|
|
270
|
-
this.$fault = "client";
|
|
271
280
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
272
281
|
}
|
|
273
282
|
};
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
283
|
+
var ConflictException = class _ConflictException extends CodeCatalystServiceException {
|
|
284
|
+
static {
|
|
285
|
+
__name(this, "ConflictException");
|
|
286
|
+
}
|
|
287
|
+
name = "ConflictException";
|
|
288
|
+
$fault = "client";
|
|
277
289
|
/**
|
|
278
290
|
* @internal
|
|
279
291
|
*/
|
|
@@ -283,14 +295,15 @@ var _ConflictException = class _ConflictException extends CodeCatalystServiceExc
|
|
|
283
295
|
$fault: "client",
|
|
284
296
|
...opts
|
|
285
297
|
});
|
|
286
|
-
this.name = "ConflictException";
|
|
287
|
-
this.$fault = "client";
|
|
288
298
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
289
299
|
}
|
|
290
300
|
};
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
301
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends CodeCatalystServiceException {
|
|
302
|
+
static {
|
|
303
|
+
__name(this, "ResourceNotFoundException");
|
|
304
|
+
}
|
|
305
|
+
name = "ResourceNotFoundException";
|
|
306
|
+
$fault = "client";
|
|
294
307
|
/**
|
|
295
308
|
* @internal
|
|
296
309
|
*/
|
|
@@ -300,14 +313,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends CodeCa
|
|
|
300
313
|
$fault: "client",
|
|
301
314
|
...opts
|
|
302
315
|
});
|
|
303
|
-
this.name = "ResourceNotFoundException";
|
|
304
|
-
this.$fault = "client";
|
|
305
316
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
306
317
|
}
|
|
307
318
|
};
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
319
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends CodeCatalystServiceException {
|
|
320
|
+
static {
|
|
321
|
+
__name(this, "ServiceQuotaExceededException");
|
|
322
|
+
}
|
|
323
|
+
name = "ServiceQuotaExceededException";
|
|
324
|
+
$fault = "client";
|
|
311
325
|
/**
|
|
312
326
|
* @internal
|
|
313
327
|
*/
|
|
@@ -317,14 +331,16 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
317
331
|
$fault: "client",
|
|
318
332
|
...opts
|
|
319
333
|
});
|
|
320
|
-
this.name = "ServiceQuotaExceededException";
|
|
321
|
-
this.$fault = "client";
|
|
322
334
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
323
335
|
}
|
|
324
336
|
};
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
337
|
+
var ThrottlingException = class _ThrottlingException extends CodeCatalystServiceException {
|
|
338
|
+
static {
|
|
339
|
+
__name(this, "ThrottlingException");
|
|
340
|
+
}
|
|
341
|
+
name = "ThrottlingException";
|
|
342
|
+
$fault = "client";
|
|
343
|
+
$retryable = {};
|
|
328
344
|
/**
|
|
329
345
|
* @internal
|
|
330
346
|
*/
|
|
@@ -334,15 +350,15 @@ var _ThrottlingException = class _ThrottlingException extends CodeCatalystServic
|
|
|
334
350
|
$fault: "client",
|
|
335
351
|
...opts
|
|
336
352
|
});
|
|
337
|
-
this.name = "ThrottlingException";
|
|
338
|
-
this.$fault = "client";
|
|
339
|
-
this.$retryable = {};
|
|
340
353
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
341
354
|
}
|
|
342
355
|
};
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
356
|
+
var ValidationException = class _ValidationException extends CodeCatalystServiceException {
|
|
357
|
+
static {
|
|
358
|
+
__name(this, "ValidationException");
|
|
359
|
+
}
|
|
360
|
+
name = "ValidationException";
|
|
361
|
+
$fault = "client";
|
|
346
362
|
/**
|
|
347
363
|
* @internal
|
|
348
364
|
*/
|
|
@@ -352,13 +368,9 @@ var _ValidationException = class _ValidationException extends CodeCatalystServic
|
|
|
352
368
|
$fault: "client",
|
|
353
369
|
...opts
|
|
354
370
|
});
|
|
355
|
-
this.name = "ValidationException";
|
|
356
|
-
this.$fault = "client";
|
|
357
371
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
358
372
|
}
|
|
359
373
|
};
|
|
360
|
-
__name(_ValidationException, "ValidationException");
|
|
361
|
-
var ValidationException = _ValidationException;
|
|
362
374
|
var OperationType = {
|
|
363
375
|
MUTATION: "MUTATION",
|
|
364
376
|
READONLY: "READONLY"
|
|
@@ -1917,533 +1929,571 @@ var _uN = "userName";
|
|
|
1917
1929
|
var _wI = "workflowId";
|
|
1918
1930
|
|
|
1919
1931
|
// src/commands/CreateAccessTokenCommand.ts
|
|
1920
|
-
var
|
|
1932
|
+
var CreateAccessTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1921
1933
|
return [
|
|
1922
1934
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1923
1935
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1924
1936
|
];
|
|
1925
1937
|
}).s("CodeCatalyst", "CreateAccessToken", {}).n("CodeCatalystClient", "CreateAccessTokenCommand").f(void 0, CreateAccessTokenResponseFilterSensitiveLog).ser(se_CreateAccessTokenCommand).de(de_CreateAccessTokenCommand).build() {
|
|
1938
|
+
static {
|
|
1939
|
+
__name(this, "CreateAccessTokenCommand");
|
|
1940
|
+
}
|
|
1926
1941
|
};
|
|
1927
|
-
__name(_CreateAccessTokenCommand, "CreateAccessTokenCommand");
|
|
1928
|
-
var CreateAccessTokenCommand = _CreateAccessTokenCommand;
|
|
1929
1942
|
|
|
1930
1943
|
// src/commands/CreateDevEnvironmentCommand.ts
|
|
1931
1944
|
|
|
1932
1945
|
|
|
1933
1946
|
|
|
1934
|
-
var
|
|
1947
|
+
var CreateDevEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1935
1948
|
return [
|
|
1936
1949
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1937
1950
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1938
1951
|
];
|
|
1939
1952
|
}).s("CodeCatalyst", "CreateDevEnvironment", {}).n("CodeCatalystClient", "CreateDevEnvironmentCommand").f(void 0, void 0).ser(se_CreateDevEnvironmentCommand).de(de_CreateDevEnvironmentCommand).build() {
|
|
1953
|
+
static {
|
|
1954
|
+
__name(this, "CreateDevEnvironmentCommand");
|
|
1955
|
+
}
|
|
1940
1956
|
};
|
|
1941
|
-
__name(_CreateDevEnvironmentCommand, "CreateDevEnvironmentCommand");
|
|
1942
|
-
var CreateDevEnvironmentCommand = _CreateDevEnvironmentCommand;
|
|
1943
1957
|
|
|
1944
1958
|
// src/commands/CreateProjectCommand.ts
|
|
1945
1959
|
|
|
1946
1960
|
|
|
1947
1961
|
|
|
1948
|
-
var
|
|
1962
|
+
var CreateProjectCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1949
1963
|
return [
|
|
1950
1964
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1951
1965
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1952
1966
|
];
|
|
1953
1967
|
}).s("CodeCatalyst", "CreateProject", {}).n("CodeCatalystClient", "CreateProjectCommand").f(void 0, void 0).ser(se_CreateProjectCommand).de(de_CreateProjectCommand).build() {
|
|
1968
|
+
static {
|
|
1969
|
+
__name(this, "CreateProjectCommand");
|
|
1970
|
+
}
|
|
1954
1971
|
};
|
|
1955
|
-
__name(_CreateProjectCommand, "CreateProjectCommand");
|
|
1956
|
-
var CreateProjectCommand = _CreateProjectCommand;
|
|
1957
1972
|
|
|
1958
1973
|
// src/commands/CreateSourceRepositoryBranchCommand.ts
|
|
1959
1974
|
|
|
1960
1975
|
|
|
1961
1976
|
|
|
1962
|
-
var
|
|
1977
|
+
var CreateSourceRepositoryBranchCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1963
1978
|
return [
|
|
1964
1979
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1965
1980
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1966
1981
|
];
|
|
1967
1982
|
}).s("CodeCatalyst", "CreateSourceRepositoryBranch", {}).n("CodeCatalystClient", "CreateSourceRepositoryBranchCommand").f(void 0, void 0).ser(se_CreateSourceRepositoryBranchCommand).de(de_CreateSourceRepositoryBranchCommand).build() {
|
|
1983
|
+
static {
|
|
1984
|
+
__name(this, "CreateSourceRepositoryBranchCommand");
|
|
1985
|
+
}
|
|
1968
1986
|
};
|
|
1969
|
-
__name(_CreateSourceRepositoryBranchCommand, "CreateSourceRepositoryBranchCommand");
|
|
1970
|
-
var CreateSourceRepositoryBranchCommand = _CreateSourceRepositoryBranchCommand;
|
|
1971
1987
|
|
|
1972
1988
|
// src/commands/CreateSourceRepositoryCommand.ts
|
|
1973
1989
|
|
|
1974
1990
|
|
|
1975
1991
|
|
|
1976
|
-
var
|
|
1992
|
+
var CreateSourceRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1977
1993
|
return [
|
|
1978
1994
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1979
1995
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1980
1996
|
];
|
|
1981
1997
|
}).s("CodeCatalyst", "CreateSourceRepository", {}).n("CodeCatalystClient", "CreateSourceRepositoryCommand").f(void 0, void 0).ser(se_CreateSourceRepositoryCommand).de(de_CreateSourceRepositoryCommand).build() {
|
|
1998
|
+
static {
|
|
1999
|
+
__name(this, "CreateSourceRepositoryCommand");
|
|
2000
|
+
}
|
|
1982
2001
|
};
|
|
1983
|
-
__name(_CreateSourceRepositoryCommand, "CreateSourceRepositoryCommand");
|
|
1984
|
-
var CreateSourceRepositoryCommand = _CreateSourceRepositoryCommand;
|
|
1985
2002
|
|
|
1986
2003
|
// src/commands/DeleteAccessTokenCommand.ts
|
|
1987
2004
|
|
|
1988
2005
|
|
|
1989
2006
|
|
|
1990
|
-
var
|
|
2007
|
+
var DeleteAccessTokenCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1991
2008
|
return [
|
|
1992
2009
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1993
2010
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1994
2011
|
];
|
|
1995
2012
|
}).s("CodeCatalyst", "DeleteAccessToken", {}).n("CodeCatalystClient", "DeleteAccessTokenCommand").f(void 0, void 0).ser(se_DeleteAccessTokenCommand).de(de_DeleteAccessTokenCommand).build() {
|
|
2013
|
+
static {
|
|
2014
|
+
__name(this, "DeleteAccessTokenCommand");
|
|
2015
|
+
}
|
|
1996
2016
|
};
|
|
1997
|
-
__name(_DeleteAccessTokenCommand, "DeleteAccessTokenCommand");
|
|
1998
|
-
var DeleteAccessTokenCommand = _DeleteAccessTokenCommand;
|
|
1999
2017
|
|
|
2000
2018
|
// src/commands/DeleteDevEnvironmentCommand.ts
|
|
2001
2019
|
|
|
2002
2020
|
|
|
2003
2021
|
|
|
2004
|
-
var
|
|
2022
|
+
var DeleteDevEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2005
2023
|
return [
|
|
2006
2024
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2007
2025
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2008
2026
|
];
|
|
2009
2027
|
}).s("CodeCatalyst", "DeleteDevEnvironment", {}).n("CodeCatalystClient", "DeleteDevEnvironmentCommand").f(void 0, void 0).ser(se_DeleteDevEnvironmentCommand).de(de_DeleteDevEnvironmentCommand).build() {
|
|
2028
|
+
static {
|
|
2029
|
+
__name(this, "DeleteDevEnvironmentCommand");
|
|
2030
|
+
}
|
|
2010
2031
|
};
|
|
2011
|
-
__name(_DeleteDevEnvironmentCommand, "DeleteDevEnvironmentCommand");
|
|
2012
|
-
var DeleteDevEnvironmentCommand = _DeleteDevEnvironmentCommand;
|
|
2013
2032
|
|
|
2014
2033
|
// src/commands/DeleteProjectCommand.ts
|
|
2015
2034
|
|
|
2016
2035
|
|
|
2017
2036
|
|
|
2018
|
-
var
|
|
2037
|
+
var DeleteProjectCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2019
2038
|
return [
|
|
2020
2039
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2021
2040
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2022
2041
|
];
|
|
2023
2042
|
}).s("CodeCatalyst", "DeleteProject", {}).n("CodeCatalystClient", "DeleteProjectCommand").f(void 0, void 0).ser(se_DeleteProjectCommand).de(de_DeleteProjectCommand).build() {
|
|
2043
|
+
static {
|
|
2044
|
+
__name(this, "DeleteProjectCommand");
|
|
2045
|
+
}
|
|
2024
2046
|
};
|
|
2025
|
-
__name(_DeleteProjectCommand, "DeleteProjectCommand");
|
|
2026
|
-
var DeleteProjectCommand = _DeleteProjectCommand;
|
|
2027
2047
|
|
|
2028
2048
|
// src/commands/DeleteSourceRepositoryCommand.ts
|
|
2029
2049
|
|
|
2030
2050
|
|
|
2031
2051
|
|
|
2032
|
-
var
|
|
2052
|
+
var DeleteSourceRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2033
2053
|
return [
|
|
2034
2054
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2035
2055
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2036
2056
|
];
|
|
2037
2057
|
}).s("CodeCatalyst", "DeleteSourceRepository", {}).n("CodeCatalystClient", "DeleteSourceRepositoryCommand").f(void 0, void 0).ser(se_DeleteSourceRepositoryCommand).de(de_DeleteSourceRepositoryCommand).build() {
|
|
2058
|
+
static {
|
|
2059
|
+
__name(this, "DeleteSourceRepositoryCommand");
|
|
2060
|
+
}
|
|
2038
2061
|
};
|
|
2039
|
-
__name(_DeleteSourceRepositoryCommand, "DeleteSourceRepositoryCommand");
|
|
2040
|
-
var DeleteSourceRepositoryCommand = _DeleteSourceRepositoryCommand;
|
|
2041
2062
|
|
|
2042
2063
|
// src/commands/DeleteSpaceCommand.ts
|
|
2043
2064
|
|
|
2044
2065
|
|
|
2045
2066
|
|
|
2046
|
-
var
|
|
2067
|
+
var DeleteSpaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2047
2068
|
return [
|
|
2048
2069
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2049
2070
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2050
2071
|
];
|
|
2051
2072
|
}).s("CodeCatalyst", "DeleteSpace", {}).n("CodeCatalystClient", "DeleteSpaceCommand").f(void 0, void 0).ser(se_DeleteSpaceCommand).de(de_DeleteSpaceCommand).build() {
|
|
2073
|
+
static {
|
|
2074
|
+
__name(this, "DeleteSpaceCommand");
|
|
2075
|
+
}
|
|
2052
2076
|
};
|
|
2053
|
-
__name(_DeleteSpaceCommand, "DeleteSpaceCommand");
|
|
2054
|
-
var DeleteSpaceCommand = _DeleteSpaceCommand;
|
|
2055
2077
|
|
|
2056
2078
|
// src/commands/GetDevEnvironmentCommand.ts
|
|
2057
2079
|
|
|
2058
2080
|
|
|
2059
2081
|
|
|
2060
|
-
var
|
|
2082
|
+
var GetDevEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2061
2083
|
return [
|
|
2062
2084
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2063
2085
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2064
2086
|
];
|
|
2065
2087
|
}).s("CodeCatalyst", "GetDevEnvironment", {}).n("CodeCatalystClient", "GetDevEnvironmentCommand").f(void 0, void 0).ser(se_GetDevEnvironmentCommand).de(de_GetDevEnvironmentCommand).build() {
|
|
2088
|
+
static {
|
|
2089
|
+
__name(this, "GetDevEnvironmentCommand");
|
|
2090
|
+
}
|
|
2066
2091
|
};
|
|
2067
|
-
__name(_GetDevEnvironmentCommand, "GetDevEnvironmentCommand");
|
|
2068
|
-
var GetDevEnvironmentCommand = _GetDevEnvironmentCommand;
|
|
2069
2092
|
|
|
2070
2093
|
// src/commands/GetProjectCommand.ts
|
|
2071
2094
|
|
|
2072
2095
|
|
|
2073
2096
|
|
|
2074
|
-
var
|
|
2097
|
+
var GetProjectCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2075
2098
|
return [
|
|
2076
2099
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2077
2100
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2078
2101
|
];
|
|
2079
2102
|
}).s("CodeCatalyst", "GetProject", {}).n("CodeCatalystClient", "GetProjectCommand").f(void 0, void 0).ser(se_GetProjectCommand).de(de_GetProjectCommand).build() {
|
|
2103
|
+
static {
|
|
2104
|
+
__name(this, "GetProjectCommand");
|
|
2105
|
+
}
|
|
2080
2106
|
};
|
|
2081
|
-
__name(_GetProjectCommand, "GetProjectCommand");
|
|
2082
|
-
var GetProjectCommand = _GetProjectCommand;
|
|
2083
2107
|
|
|
2084
2108
|
// src/commands/GetSourceRepositoryCloneUrlsCommand.ts
|
|
2085
2109
|
|
|
2086
2110
|
|
|
2087
2111
|
|
|
2088
|
-
var
|
|
2112
|
+
var GetSourceRepositoryCloneUrlsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2089
2113
|
return [
|
|
2090
2114
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2091
2115
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2092
2116
|
];
|
|
2093
2117
|
}).s("CodeCatalyst", "GetSourceRepositoryCloneUrls", {}).n("CodeCatalystClient", "GetSourceRepositoryCloneUrlsCommand").f(void 0, void 0).ser(se_GetSourceRepositoryCloneUrlsCommand).de(de_GetSourceRepositoryCloneUrlsCommand).build() {
|
|
2118
|
+
static {
|
|
2119
|
+
__name(this, "GetSourceRepositoryCloneUrlsCommand");
|
|
2120
|
+
}
|
|
2094
2121
|
};
|
|
2095
|
-
__name(_GetSourceRepositoryCloneUrlsCommand, "GetSourceRepositoryCloneUrlsCommand");
|
|
2096
|
-
var GetSourceRepositoryCloneUrlsCommand = _GetSourceRepositoryCloneUrlsCommand;
|
|
2097
2122
|
|
|
2098
2123
|
// src/commands/GetSourceRepositoryCommand.ts
|
|
2099
2124
|
|
|
2100
2125
|
|
|
2101
2126
|
|
|
2102
|
-
var
|
|
2127
|
+
var GetSourceRepositoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2103
2128
|
return [
|
|
2104
2129
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2105
2130
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2106
2131
|
];
|
|
2107
2132
|
}).s("CodeCatalyst", "GetSourceRepository", {}).n("CodeCatalystClient", "GetSourceRepositoryCommand").f(void 0, void 0).ser(se_GetSourceRepositoryCommand).de(de_GetSourceRepositoryCommand).build() {
|
|
2133
|
+
static {
|
|
2134
|
+
__name(this, "GetSourceRepositoryCommand");
|
|
2135
|
+
}
|
|
2108
2136
|
};
|
|
2109
|
-
__name(_GetSourceRepositoryCommand, "GetSourceRepositoryCommand");
|
|
2110
|
-
var GetSourceRepositoryCommand = _GetSourceRepositoryCommand;
|
|
2111
2137
|
|
|
2112
2138
|
// src/commands/GetSpaceCommand.ts
|
|
2113
2139
|
|
|
2114
2140
|
|
|
2115
2141
|
|
|
2116
|
-
var
|
|
2142
|
+
var GetSpaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2117
2143
|
return [
|
|
2118
2144
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2119
2145
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2120
2146
|
];
|
|
2121
2147
|
}).s("CodeCatalyst", "GetSpace", {}).n("CodeCatalystClient", "GetSpaceCommand").f(void 0, void 0).ser(se_GetSpaceCommand).de(de_GetSpaceCommand).build() {
|
|
2148
|
+
static {
|
|
2149
|
+
__name(this, "GetSpaceCommand");
|
|
2150
|
+
}
|
|
2122
2151
|
};
|
|
2123
|
-
__name(_GetSpaceCommand, "GetSpaceCommand");
|
|
2124
|
-
var GetSpaceCommand = _GetSpaceCommand;
|
|
2125
2152
|
|
|
2126
2153
|
// src/commands/GetSubscriptionCommand.ts
|
|
2127
2154
|
|
|
2128
2155
|
|
|
2129
2156
|
|
|
2130
|
-
var
|
|
2157
|
+
var GetSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2131
2158
|
return [
|
|
2132
2159
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2133
2160
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2134
2161
|
];
|
|
2135
2162
|
}).s("CodeCatalyst", "GetSubscription", {}).n("CodeCatalystClient", "GetSubscriptionCommand").f(void 0, void 0).ser(se_GetSubscriptionCommand).de(de_GetSubscriptionCommand).build() {
|
|
2163
|
+
static {
|
|
2164
|
+
__name(this, "GetSubscriptionCommand");
|
|
2165
|
+
}
|
|
2136
2166
|
};
|
|
2137
|
-
__name(_GetSubscriptionCommand, "GetSubscriptionCommand");
|
|
2138
|
-
var GetSubscriptionCommand = _GetSubscriptionCommand;
|
|
2139
2167
|
|
|
2140
2168
|
// src/commands/GetUserDetailsCommand.ts
|
|
2141
2169
|
|
|
2142
2170
|
|
|
2143
2171
|
|
|
2144
|
-
var
|
|
2172
|
+
var GetUserDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2145
2173
|
return [
|
|
2146
2174
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2147
2175
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2148
2176
|
];
|
|
2149
2177
|
}).s("CodeCatalyst", "GetUserDetails", {}).n("CodeCatalystClient", "GetUserDetailsCommand").f(void 0, void 0).ser(se_GetUserDetailsCommand).de(de_GetUserDetailsCommand).build() {
|
|
2178
|
+
static {
|
|
2179
|
+
__name(this, "GetUserDetailsCommand");
|
|
2180
|
+
}
|
|
2150
2181
|
};
|
|
2151
|
-
__name(_GetUserDetailsCommand, "GetUserDetailsCommand");
|
|
2152
|
-
var GetUserDetailsCommand = _GetUserDetailsCommand;
|
|
2153
2182
|
|
|
2154
2183
|
// src/commands/GetWorkflowCommand.ts
|
|
2155
2184
|
|
|
2156
2185
|
|
|
2157
2186
|
|
|
2158
|
-
var
|
|
2187
|
+
var GetWorkflowCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2159
2188
|
return [
|
|
2160
2189
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2161
2190
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2162
2191
|
];
|
|
2163
2192
|
}).s("CodeCatalyst", "GetWorkflow", {}).n("CodeCatalystClient", "GetWorkflowCommand").f(void 0, void 0).ser(se_GetWorkflowCommand).de(de_GetWorkflowCommand).build() {
|
|
2193
|
+
static {
|
|
2194
|
+
__name(this, "GetWorkflowCommand");
|
|
2195
|
+
}
|
|
2164
2196
|
};
|
|
2165
|
-
__name(_GetWorkflowCommand, "GetWorkflowCommand");
|
|
2166
|
-
var GetWorkflowCommand = _GetWorkflowCommand;
|
|
2167
2197
|
|
|
2168
2198
|
// src/commands/GetWorkflowRunCommand.ts
|
|
2169
2199
|
|
|
2170
2200
|
|
|
2171
2201
|
|
|
2172
|
-
var
|
|
2202
|
+
var GetWorkflowRunCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2173
2203
|
return [
|
|
2174
2204
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2175
2205
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2176
2206
|
];
|
|
2177
2207
|
}).s("CodeCatalyst", "GetWorkflowRun", {}).n("CodeCatalystClient", "GetWorkflowRunCommand").f(void 0, void 0).ser(se_GetWorkflowRunCommand).de(de_GetWorkflowRunCommand).build() {
|
|
2208
|
+
static {
|
|
2209
|
+
__name(this, "GetWorkflowRunCommand");
|
|
2210
|
+
}
|
|
2178
2211
|
};
|
|
2179
|
-
__name(_GetWorkflowRunCommand, "GetWorkflowRunCommand");
|
|
2180
|
-
var GetWorkflowRunCommand = _GetWorkflowRunCommand;
|
|
2181
2212
|
|
|
2182
2213
|
// src/commands/ListAccessTokensCommand.ts
|
|
2183
2214
|
|
|
2184
2215
|
|
|
2185
2216
|
|
|
2186
|
-
var
|
|
2217
|
+
var ListAccessTokensCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2187
2218
|
return [
|
|
2188
2219
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2189
2220
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2190
2221
|
];
|
|
2191
2222
|
}).s("CodeCatalyst", "ListAccessTokens", {}).n("CodeCatalystClient", "ListAccessTokensCommand").f(void 0, void 0).ser(se_ListAccessTokensCommand).de(de_ListAccessTokensCommand).build() {
|
|
2223
|
+
static {
|
|
2224
|
+
__name(this, "ListAccessTokensCommand");
|
|
2225
|
+
}
|
|
2192
2226
|
};
|
|
2193
|
-
__name(_ListAccessTokensCommand, "ListAccessTokensCommand");
|
|
2194
|
-
var ListAccessTokensCommand = _ListAccessTokensCommand;
|
|
2195
2227
|
|
|
2196
2228
|
// src/commands/ListDevEnvironmentsCommand.ts
|
|
2197
2229
|
|
|
2198
2230
|
|
|
2199
2231
|
|
|
2200
|
-
var
|
|
2232
|
+
var ListDevEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2201
2233
|
return [
|
|
2202
2234
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2203
2235
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2204
2236
|
];
|
|
2205
2237
|
}).s("CodeCatalyst", "ListDevEnvironments", {}).n("CodeCatalystClient", "ListDevEnvironmentsCommand").f(void 0, void 0).ser(se_ListDevEnvironmentsCommand).de(de_ListDevEnvironmentsCommand).build() {
|
|
2238
|
+
static {
|
|
2239
|
+
__name(this, "ListDevEnvironmentsCommand");
|
|
2240
|
+
}
|
|
2206
2241
|
};
|
|
2207
|
-
__name(_ListDevEnvironmentsCommand, "ListDevEnvironmentsCommand");
|
|
2208
|
-
var ListDevEnvironmentsCommand = _ListDevEnvironmentsCommand;
|
|
2209
2242
|
|
|
2210
2243
|
// src/commands/ListDevEnvironmentSessionsCommand.ts
|
|
2211
2244
|
|
|
2212
2245
|
|
|
2213
2246
|
|
|
2214
|
-
var
|
|
2247
|
+
var ListDevEnvironmentSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2215
2248
|
return [
|
|
2216
2249
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2217
2250
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2218
2251
|
];
|
|
2219
2252
|
}).s("CodeCatalyst", "ListDevEnvironmentSessions", {}).n("CodeCatalystClient", "ListDevEnvironmentSessionsCommand").f(void 0, void 0).ser(se_ListDevEnvironmentSessionsCommand).de(de_ListDevEnvironmentSessionsCommand).build() {
|
|
2253
|
+
static {
|
|
2254
|
+
__name(this, "ListDevEnvironmentSessionsCommand");
|
|
2255
|
+
}
|
|
2220
2256
|
};
|
|
2221
|
-
__name(_ListDevEnvironmentSessionsCommand, "ListDevEnvironmentSessionsCommand");
|
|
2222
|
-
var ListDevEnvironmentSessionsCommand = _ListDevEnvironmentSessionsCommand;
|
|
2223
2257
|
|
|
2224
2258
|
// src/commands/ListEventLogsCommand.ts
|
|
2225
2259
|
|
|
2226
2260
|
|
|
2227
2261
|
|
|
2228
|
-
var
|
|
2262
|
+
var ListEventLogsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2229
2263
|
return [
|
|
2230
2264
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2231
2265
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2232
2266
|
];
|
|
2233
2267
|
}).s("CodeCatalyst", "ListEventLogs", {}).n("CodeCatalystClient", "ListEventLogsCommand").f(void 0, void 0).ser(se_ListEventLogsCommand).de(de_ListEventLogsCommand).build() {
|
|
2268
|
+
static {
|
|
2269
|
+
__name(this, "ListEventLogsCommand");
|
|
2270
|
+
}
|
|
2234
2271
|
};
|
|
2235
|
-
__name(_ListEventLogsCommand, "ListEventLogsCommand");
|
|
2236
|
-
var ListEventLogsCommand = _ListEventLogsCommand;
|
|
2237
2272
|
|
|
2238
2273
|
// src/commands/ListProjectsCommand.ts
|
|
2239
2274
|
|
|
2240
2275
|
|
|
2241
2276
|
|
|
2242
|
-
var
|
|
2277
|
+
var ListProjectsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2243
2278
|
return [
|
|
2244
2279
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2245
2280
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2246
2281
|
];
|
|
2247
2282
|
}).s("CodeCatalyst", "ListProjects", {}).n("CodeCatalystClient", "ListProjectsCommand").f(void 0, void 0).ser(se_ListProjectsCommand).de(de_ListProjectsCommand).build() {
|
|
2283
|
+
static {
|
|
2284
|
+
__name(this, "ListProjectsCommand");
|
|
2285
|
+
}
|
|
2248
2286
|
};
|
|
2249
|
-
__name(_ListProjectsCommand, "ListProjectsCommand");
|
|
2250
|
-
var ListProjectsCommand = _ListProjectsCommand;
|
|
2251
2287
|
|
|
2252
2288
|
// src/commands/ListSourceRepositoriesCommand.ts
|
|
2253
2289
|
|
|
2254
2290
|
|
|
2255
2291
|
|
|
2256
|
-
var
|
|
2292
|
+
var ListSourceRepositoriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2257
2293
|
return [
|
|
2258
2294
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2259
2295
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2260
2296
|
];
|
|
2261
2297
|
}).s("CodeCatalyst", "ListSourceRepositories", {}).n("CodeCatalystClient", "ListSourceRepositoriesCommand").f(void 0, void 0).ser(se_ListSourceRepositoriesCommand).de(de_ListSourceRepositoriesCommand).build() {
|
|
2298
|
+
static {
|
|
2299
|
+
__name(this, "ListSourceRepositoriesCommand");
|
|
2300
|
+
}
|
|
2262
2301
|
};
|
|
2263
|
-
__name(_ListSourceRepositoriesCommand, "ListSourceRepositoriesCommand");
|
|
2264
|
-
var ListSourceRepositoriesCommand = _ListSourceRepositoriesCommand;
|
|
2265
2302
|
|
|
2266
2303
|
// src/commands/ListSourceRepositoryBranchesCommand.ts
|
|
2267
2304
|
|
|
2268
2305
|
|
|
2269
2306
|
|
|
2270
|
-
var
|
|
2307
|
+
var ListSourceRepositoryBranchesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2271
2308
|
return [
|
|
2272
2309
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2273
2310
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2274
2311
|
];
|
|
2275
2312
|
}).s("CodeCatalyst", "ListSourceRepositoryBranches", {}).n("CodeCatalystClient", "ListSourceRepositoryBranchesCommand").f(void 0, void 0).ser(se_ListSourceRepositoryBranchesCommand).de(de_ListSourceRepositoryBranchesCommand).build() {
|
|
2313
|
+
static {
|
|
2314
|
+
__name(this, "ListSourceRepositoryBranchesCommand");
|
|
2315
|
+
}
|
|
2276
2316
|
};
|
|
2277
|
-
__name(_ListSourceRepositoryBranchesCommand, "ListSourceRepositoryBranchesCommand");
|
|
2278
|
-
var ListSourceRepositoryBranchesCommand = _ListSourceRepositoryBranchesCommand;
|
|
2279
2317
|
|
|
2280
2318
|
// src/commands/ListSpacesCommand.ts
|
|
2281
2319
|
|
|
2282
2320
|
|
|
2283
2321
|
|
|
2284
|
-
var
|
|
2322
|
+
var ListSpacesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2285
2323
|
return [
|
|
2286
2324
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2287
2325
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2288
2326
|
];
|
|
2289
2327
|
}).s("CodeCatalyst", "ListSpaces", {}).n("CodeCatalystClient", "ListSpacesCommand").f(void 0, void 0).ser(se_ListSpacesCommand).de(de_ListSpacesCommand).build() {
|
|
2328
|
+
static {
|
|
2329
|
+
__name(this, "ListSpacesCommand");
|
|
2330
|
+
}
|
|
2290
2331
|
};
|
|
2291
|
-
__name(_ListSpacesCommand, "ListSpacesCommand");
|
|
2292
|
-
var ListSpacesCommand = _ListSpacesCommand;
|
|
2293
2332
|
|
|
2294
2333
|
// src/commands/ListWorkflowRunsCommand.ts
|
|
2295
2334
|
|
|
2296
2335
|
|
|
2297
2336
|
|
|
2298
|
-
var
|
|
2337
|
+
var ListWorkflowRunsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2299
2338
|
return [
|
|
2300
2339
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2301
2340
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2302
2341
|
];
|
|
2303
2342
|
}).s("CodeCatalyst", "ListWorkflowRuns", {}).n("CodeCatalystClient", "ListWorkflowRunsCommand").f(void 0, void 0).ser(se_ListWorkflowRunsCommand).de(de_ListWorkflowRunsCommand).build() {
|
|
2343
|
+
static {
|
|
2344
|
+
__name(this, "ListWorkflowRunsCommand");
|
|
2345
|
+
}
|
|
2304
2346
|
};
|
|
2305
|
-
__name(_ListWorkflowRunsCommand, "ListWorkflowRunsCommand");
|
|
2306
|
-
var ListWorkflowRunsCommand = _ListWorkflowRunsCommand;
|
|
2307
2347
|
|
|
2308
2348
|
// src/commands/ListWorkflowsCommand.ts
|
|
2309
2349
|
|
|
2310
2350
|
|
|
2311
2351
|
|
|
2312
|
-
var
|
|
2352
|
+
var ListWorkflowsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2313
2353
|
return [
|
|
2314
2354
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2315
2355
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2316
2356
|
];
|
|
2317
2357
|
}).s("CodeCatalyst", "ListWorkflows", {}).n("CodeCatalystClient", "ListWorkflowsCommand").f(void 0, void 0).ser(se_ListWorkflowsCommand).de(de_ListWorkflowsCommand).build() {
|
|
2358
|
+
static {
|
|
2359
|
+
__name(this, "ListWorkflowsCommand");
|
|
2360
|
+
}
|
|
2318
2361
|
};
|
|
2319
|
-
__name(_ListWorkflowsCommand, "ListWorkflowsCommand");
|
|
2320
|
-
var ListWorkflowsCommand = _ListWorkflowsCommand;
|
|
2321
2362
|
|
|
2322
2363
|
// src/commands/StartDevEnvironmentCommand.ts
|
|
2323
2364
|
|
|
2324
2365
|
|
|
2325
2366
|
|
|
2326
|
-
var
|
|
2367
|
+
var StartDevEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2327
2368
|
return [
|
|
2328
2369
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2329
2370
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2330
2371
|
];
|
|
2331
2372
|
}).s("CodeCatalyst", "StartDevEnvironment", {}).n("CodeCatalystClient", "StartDevEnvironmentCommand").f(void 0, void 0).ser(se_StartDevEnvironmentCommand).de(de_StartDevEnvironmentCommand).build() {
|
|
2373
|
+
static {
|
|
2374
|
+
__name(this, "StartDevEnvironmentCommand");
|
|
2375
|
+
}
|
|
2332
2376
|
};
|
|
2333
|
-
__name(_StartDevEnvironmentCommand, "StartDevEnvironmentCommand");
|
|
2334
|
-
var StartDevEnvironmentCommand = _StartDevEnvironmentCommand;
|
|
2335
2377
|
|
|
2336
2378
|
// src/commands/StartDevEnvironmentSessionCommand.ts
|
|
2337
2379
|
|
|
2338
2380
|
|
|
2339
2381
|
|
|
2340
|
-
var
|
|
2382
|
+
var StartDevEnvironmentSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2341
2383
|
return [
|
|
2342
2384
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2343
2385
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2344
2386
|
];
|
|
2345
2387
|
}).s("CodeCatalyst", "StartDevEnvironmentSession", {}).n("CodeCatalystClient", "StartDevEnvironmentSessionCommand").f(void 0, StartDevEnvironmentSessionResponseFilterSensitiveLog).ser(se_StartDevEnvironmentSessionCommand).de(de_StartDevEnvironmentSessionCommand).build() {
|
|
2388
|
+
static {
|
|
2389
|
+
__name(this, "StartDevEnvironmentSessionCommand");
|
|
2390
|
+
}
|
|
2346
2391
|
};
|
|
2347
|
-
__name(_StartDevEnvironmentSessionCommand, "StartDevEnvironmentSessionCommand");
|
|
2348
|
-
var StartDevEnvironmentSessionCommand = _StartDevEnvironmentSessionCommand;
|
|
2349
2392
|
|
|
2350
2393
|
// src/commands/StartWorkflowRunCommand.ts
|
|
2351
2394
|
|
|
2352
2395
|
|
|
2353
2396
|
|
|
2354
|
-
var
|
|
2397
|
+
var StartWorkflowRunCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2355
2398
|
return [
|
|
2356
2399
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2357
2400
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2358
2401
|
];
|
|
2359
2402
|
}).s("CodeCatalyst", "StartWorkflowRun", {}).n("CodeCatalystClient", "StartWorkflowRunCommand").f(void 0, void 0).ser(se_StartWorkflowRunCommand).de(de_StartWorkflowRunCommand).build() {
|
|
2403
|
+
static {
|
|
2404
|
+
__name(this, "StartWorkflowRunCommand");
|
|
2405
|
+
}
|
|
2360
2406
|
};
|
|
2361
|
-
__name(_StartWorkflowRunCommand, "StartWorkflowRunCommand");
|
|
2362
|
-
var StartWorkflowRunCommand = _StartWorkflowRunCommand;
|
|
2363
2407
|
|
|
2364
2408
|
// src/commands/StopDevEnvironmentCommand.ts
|
|
2365
2409
|
|
|
2366
2410
|
|
|
2367
2411
|
|
|
2368
|
-
var
|
|
2412
|
+
var StopDevEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2369
2413
|
return [
|
|
2370
2414
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2371
2415
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2372
2416
|
];
|
|
2373
2417
|
}).s("CodeCatalyst", "StopDevEnvironment", {}).n("CodeCatalystClient", "StopDevEnvironmentCommand").f(void 0, void 0).ser(se_StopDevEnvironmentCommand).de(de_StopDevEnvironmentCommand).build() {
|
|
2418
|
+
static {
|
|
2419
|
+
__name(this, "StopDevEnvironmentCommand");
|
|
2420
|
+
}
|
|
2374
2421
|
};
|
|
2375
|
-
__name(_StopDevEnvironmentCommand, "StopDevEnvironmentCommand");
|
|
2376
|
-
var StopDevEnvironmentCommand = _StopDevEnvironmentCommand;
|
|
2377
2422
|
|
|
2378
2423
|
// src/commands/StopDevEnvironmentSessionCommand.ts
|
|
2379
2424
|
|
|
2380
2425
|
|
|
2381
2426
|
|
|
2382
|
-
var
|
|
2427
|
+
var StopDevEnvironmentSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2383
2428
|
return [
|
|
2384
2429
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2385
2430
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2386
2431
|
];
|
|
2387
2432
|
}).s("CodeCatalyst", "StopDevEnvironmentSession", {}).n("CodeCatalystClient", "StopDevEnvironmentSessionCommand").f(void 0, void 0).ser(se_StopDevEnvironmentSessionCommand).de(de_StopDevEnvironmentSessionCommand).build() {
|
|
2433
|
+
static {
|
|
2434
|
+
__name(this, "StopDevEnvironmentSessionCommand");
|
|
2435
|
+
}
|
|
2388
2436
|
};
|
|
2389
|
-
__name(_StopDevEnvironmentSessionCommand, "StopDevEnvironmentSessionCommand");
|
|
2390
|
-
var StopDevEnvironmentSessionCommand = _StopDevEnvironmentSessionCommand;
|
|
2391
2437
|
|
|
2392
2438
|
// src/commands/UpdateDevEnvironmentCommand.ts
|
|
2393
2439
|
|
|
2394
2440
|
|
|
2395
2441
|
|
|
2396
|
-
var
|
|
2442
|
+
var UpdateDevEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2397
2443
|
return [
|
|
2398
2444
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2399
2445
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2400
2446
|
];
|
|
2401
2447
|
}).s("CodeCatalyst", "UpdateDevEnvironment", {}).n("CodeCatalystClient", "UpdateDevEnvironmentCommand").f(void 0, void 0).ser(se_UpdateDevEnvironmentCommand).de(de_UpdateDevEnvironmentCommand).build() {
|
|
2448
|
+
static {
|
|
2449
|
+
__name(this, "UpdateDevEnvironmentCommand");
|
|
2450
|
+
}
|
|
2402
2451
|
};
|
|
2403
|
-
__name(_UpdateDevEnvironmentCommand, "UpdateDevEnvironmentCommand");
|
|
2404
|
-
var UpdateDevEnvironmentCommand = _UpdateDevEnvironmentCommand;
|
|
2405
2452
|
|
|
2406
2453
|
// src/commands/UpdateProjectCommand.ts
|
|
2407
2454
|
|
|
2408
2455
|
|
|
2409
2456
|
|
|
2410
|
-
var
|
|
2457
|
+
var UpdateProjectCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2411
2458
|
return [
|
|
2412
2459
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2413
2460
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2414
2461
|
];
|
|
2415
2462
|
}).s("CodeCatalyst", "UpdateProject", {}).n("CodeCatalystClient", "UpdateProjectCommand").f(void 0, void 0).ser(se_UpdateProjectCommand).de(de_UpdateProjectCommand).build() {
|
|
2463
|
+
static {
|
|
2464
|
+
__name(this, "UpdateProjectCommand");
|
|
2465
|
+
}
|
|
2416
2466
|
};
|
|
2417
|
-
__name(_UpdateProjectCommand, "UpdateProjectCommand");
|
|
2418
|
-
var UpdateProjectCommand = _UpdateProjectCommand;
|
|
2419
2467
|
|
|
2420
2468
|
// src/commands/UpdateSpaceCommand.ts
|
|
2421
2469
|
|
|
2422
2470
|
|
|
2423
2471
|
|
|
2424
|
-
var
|
|
2472
|
+
var UpdateSpaceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2425
2473
|
return [
|
|
2426
2474
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2427
2475
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2428
2476
|
];
|
|
2429
2477
|
}).s("CodeCatalyst", "UpdateSpace", {}).n("CodeCatalystClient", "UpdateSpaceCommand").f(void 0, void 0).ser(se_UpdateSpaceCommand).de(de_UpdateSpaceCommand).build() {
|
|
2478
|
+
static {
|
|
2479
|
+
__name(this, "UpdateSpaceCommand");
|
|
2480
|
+
}
|
|
2430
2481
|
};
|
|
2431
|
-
__name(_UpdateSpaceCommand, "UpdateSpaceCommand");
|
|
2432
|
-
var UpdateSpaceCommand = _UpdateSpaceCommand;
|
|
2433
2482
|
|
|
2434
2483
|
// src/commands/VerifySessionCommand.ts
|
|
2435
2484
|
|
|
2436
2485
|
|
|
2437
2486
|
|
|
2438
|
-
var
|
|
2487
|
+
var VerifySessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2439
2488
|
return [
|
|
2440
2489
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2441
2490
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2442
2491
|
];
|
|
2443
2492
|
}).s("CodeCatalyst", "VerifySession", {}).n("CodeCatalystClient", "VerifySessionCommand").f(void 0, void 0).ser(se_VerifySessionCommand).de(de_VerifySessionCommand).build() {
|
|
2493
|
+
static {
|
|
2494
|
+
__name(this, "VerifySessionCommand");
|
|
2495
|
+
}
|
|
2444
2496
|
};
|
|
2445
|
-
__name(_VerifySessionCommand, "VerifySessionCommand");
|
|
2446
|
-
var VerifySessionCommand = _VerifySessionCommand;
|
|
2447
2497
|
|
|
2448
2498
|
// src/CodeCatalyst.ts
|
|
2449
2499
|
var commands = {
|
|
@@ -2486,10 +2536,11 @@ var commands = {
|
|
|
2486
2536
|
UpdateSpaceCommand,
|
|
2487
2537
|
VerifySessionCommand
|
|
2488
2538
|
};
|
|
2489
|
-
var
|
|
2539
|
+
var CodeCatalyst = class extends CodeCatalystClient {
|
|
2540
|
+
static {
|
|
2541
|
+
__name(this, "CodeCatalyst");
|
|
2542
|
+
}
|
|
2490
2543
|
};
|
|
2491
|
-
__name(_CodeCatalyst, "CodeCatalyst");
|
|
2492
|
-
var CodeCatalyst = _CodeCatalyst;
|
|
2493
2544
|
(0, import_smithy_client.createAggregatedClient)(commands, CodeCatalyst);
|
|
2494
2545
|
|
|
2495
2546
|
// src/pagination/ListAccessTokensPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class CodeCatalystClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,75 +1,75 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { CodeCatalystServiceException as __BaseException } from "./CodeCatalystServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
4
6
|
constructor(opts) {
|
|
5
7
|
super({
|
|
6
8
|
name: "AccessDeniedException",
|
|
7
9
|
$fault: "client",
|
|
8
10
|
...opts,
|
|
9
11
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
export class ConflictException extends __BaseException {
|
|
16
|
+
name = "ConflictException";
|
|
17
|
+
$fault = "client";
|
|
16
18
|
constructor(opts) {
|
|
17
19
|
super({
|
|
18
20
|
name: "ConflictException",
|
|
19
21
|
$fault: "client",
|
|
20
22
|
...opts,
|
|
21
23
|
});
|
|
22
|
-
this.name = "ConflictException";
|
|
23
|
-
this.$fault = "client";
|
|
24
24
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
export class ResourceNotFoundException extends __BaseException {
|
|
28
|
+
name = "ResourceNotFoundException";
|
|
29
|
+
$fault = "client";
|
|
28
30
|
constructor(opts) {
|
|
29
31
|
super({
|
|
30
32
|
name: "ResourceNotFoundException",
|
|
31
33
|
$fault: "client",
|
|
32
34
|
...opts,
|
|
33
35
|
});
|
|
34
|
-
this.name = "ResourceNotFoundException";
|
|
35
|
-
this.$fault = "client";
|
|
36
36
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
40
|
+
name = "ServiceQuotaExceededException";
|
|
41
|
+
$fault = "client";
|
|
40
42
|
constructor(opts) {
|
|
41
43
|
super({
|
|
42
44
|
name: "ServiceQuotaExceededException",
|
|
43
45
|
$fault: "client",
|
|
44
46
|
...opts,
|
|
45
47
|
});
|
|
46
|
-
this.name = "ServiceQuotaExceededException";
|
|
47
|
-
this.$fault = "client";
|
|
48
48
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
export class ThrottlingException extends __BaseException {
|
|
52
|
+
name = "ThrottlingException";
|
|
53
|
+
$fault = "client";
|
|
54
|
+
$retryable = {};
|
|
52
55
|
constructor(opts) {
|
|
53
56
|
super({
|
|
54
57
|
name: "ThrottlingException",
|
|
55
58
|
$fault: "client",
|
|
56
59
|
...opts,
|
|
57
60
|
});
|
|
58
|
-
this.name = "ThrottlingException";
|
|
59
|
-
this.$fault = "client";
|
|
60
|
-
this.$retryable = {};
|
|
61
61
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
export class ValidationException extends __BaseException {
|
|
65
|
+
name = "ValidationException";
|
|
66
|
+
$fault = "client";
|
|
65
67
|
constructor(opts) {
|
|
66
68
|
super({
|
|
67
69
|
name: "ValidationException",
|
|
68
70
|
$fault: "client",
|
|
69
71
|
...opts,
|
|
70
72
|
});
|
|
71
|
-
this.name = "ValidationException";
|
|
72
|
-
this.$fault = "client";
|
|
73
73
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
74
74
|
}
|
|
75
75
|
}
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
30
30
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
31
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
32
32
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
33
|
-
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;
|
|
33
|
+
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;
|
|
34
34
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
35
35
|
logger?: import("@smithy/types").Logger | undefined;
|
|
36
36
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -47,11 +47,21 @@ export declare const getRuntimeConfig: (config: CodeCatalystClientConfig) => {
|
|
|
47
47
|
| import("@smithy/types").RetryStrategyV2
|
|
48
48
|
| undefined;
|
|
49
49
|
endpoint?:
|
|
50
|
-
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
| ((
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
) &
|
|
57
|
+
(
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Provider<string>
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
))
|
|
55
65
|
| undefined;
|
|
56
66
|
endpointProvider: (
|
|
57
67
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codecatalyst",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codecatalyst Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.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-codecatalyst",
|
|
@@ -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/core": "3.
|
|
24
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
25
|
-
"@aws-sdk/middleware-logger": "3.
|
|
26
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
29
|
-
"@aws-sdk/token-providers": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^
|
|
35
|
-
"@smithy/core": "^
|
|
36
|
-
"@smithy/fetch-http-handler": "^
|
|
37
|
-
"@smithy/hash-node": "^
|
|
38
|
-
"@smithy/invalid-dependency": "^
|
|
39
|
-
"@smithy/middleware-content-length": "^
|
|
40
|
-
"@smithy/middleware-endpoint": "^
|
|
41
|
-
"@smithy/middleware-retry": "^
|
|
42
|
-
"@smithy/middleware-serde": "^
|
|
43
|
-
"@smithy/middleware-stack": "^
|
|
44
|
-
"@smithy/node-config-provider": "^
|
|
45
|
-
"@smithy/node-http-handler": "^
|
|
46
|
-
"@smithy/protocol-http": "^
|
|
47
|
-
"@smithy/smithy-client": "^
|
|
48
|
-
"@smithy/types": "^
|
|
49
|
-
"@smithy/url-parser": "^
|
|
50
|
-
"@smithy/util-base64": "^
|
|
51
|
-
"@smithy/util-body-length-browser": "^
|
|
52
|
-
"@smithy/util-body-length-node": "^
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^
|
|
55
|
-
"@smithy/util-endpoints": "^
|
|
56
|
-
"@smithy/util-middleware": "^
|
|
57
|
-
"@smithy/util-retry": "^
|
|
58
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/core": "3.723.0",
|
|
24
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
25
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
26
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
28
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
29
|
+
"@aws-sdk/token-providers": "3.723.0",
|
|
30
|
+
"@aws-sdk/types": "3.723.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
35
|
+
"@smithy/core": "^3.0.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
37
|
+
"@smithy/hash-node": "^4.0.0",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
44
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
46
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
47
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
48
|
+
"@smithy/types": "^4.0.0",
|
|
49
|
+
"@smithy/url-parser": "^4.0.0",
|
|
50
|
+
"@smithy/util-base64": "^4.0.0",
|
|
51
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
57
|
+
"@smithy/util-retry": "^4.0.0",
|
|
58
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|
|
61
61
|
"uuid": "^9.0.1"
|
|
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": {
|