@aws-sdk/client-tnb 3.716.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 +185 -139
- package/dist-es/TnbClient.js +1 -0
- package/dist-es/models/models_0.js +12 -12
- 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 +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -206,7 +206,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
206
206
|
}, "resolveRuntimeExtensions");
|
|
207
207
|
|
|
208
208
|
// src/TnbClient.ts
|
|
209
|
-
var
|
|
209
|
+
var TnbClient = class extends import_smithy_client.Client {
|
|
210
|
+
static {
|
|
211
|
+
__name(this, "TnbClient");
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* The resolved configuration of TnbClient class. This is resolved and normalized from the {@link TnbClientConfig | constructor configuration interface}.
|
|
215
|
+
*/
|
|
216
|
+
config;
|
|
210
217
|
constructor(...[configuration]) {
|
|
211
218
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
212
219
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -216,7 +223,7 @@ var _TnbClient = class _TnbClient extends import_smithy_client.Client {
|
|
|
216
223
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
217
224
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
218
225
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
219
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
226
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
220
227
|
super(_config_8);
|
|
221
228
|
this.config = _config_8;
|
|
222
229
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -244,8 +251,6 @@ var _TnbClient = class _TnbClient extends import_smithy_client.Client {
|
|
|
244
251
|
super.destroy();
|
|
245
252
|
}
|
|
246
253
|
};
|
|
247
|
-
__name(_TnbClient, "TnbClient");
|
|
248
|
-
var TnbClient = _TnbClient;
|
|
249
254
|
|
|
250
255
|
// src/Tnb.ts
|
|
251
256
|
|
|
@@ -265,7 +270,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
265
270
|
|
|
266
271
|
// src/models/TnbServiceException.ts
|
|
267
272
|
|
|
268
|
-
var
|
|
273
|
+
var TnbServiceException = class _TnbServiceException extends import_smithy_client.ServiceException {
|
|
274
|
+
static {
|
|
275
|
+
__name(this, "TnbServiceException");
|
|
276
|
+
}
|
|
269
277
|
/**
|
|
270
278
|
* @internal
|
|
271
279
|
*/
|
|
@@ -274,11 +282,14 @@ var _TnbServiceException = class _TnbServiceException extends import_smithy_clie
|
|
|
274
282
|
Object.setPrototypeOf(this, _TnbServiceException.prototype);
|
|
275
283
|
}
|
|
276
284
|
};
|
|
277
|
-
__name(_TnbServiceException, "TnbServiceException");
|
|
278
|
-
var TnbServiceException = _TnbServiceException;
|
|
279
285
|
|
|
280
286
|
// src/models/models_0.ts
|
|
281
|
-
var
|
|
287
|
+
var AccessDeniedException = class _AccessDeniedException extends TnbServiceException {
|
|
288
|
+
static {
|
|
289
|
+
__name(this, "AccessDeniedException");
|
|
290
|
+
}
|
|
291
|
+
name = "AccessDeniedException";
|
|
292
|
+
$fault = "client";
|
|
282
293
|
/**
|
|
283
294
|
* @internal
|
|
284
295
|
*/
|
|
@@ -288,14 +299,15 @@ var _AccessDeniedException = class _AccessDeniedException extends TnbServiceExce
|
|
|
288
299
|
$fault: "client",
|
|
289
300
|
...opts
|
|
290
301
|
});
|
|
291
|
-
this.name = "AccessDeniedException";
|
|
292
|
-
this.$fault = "client";
|
|
293
302
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
294
303
|
}
|
|
295
304
|
};
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
305
|
+
var InternalServerException = class _InternalServerException extends TnbServiceException {
|
|
306
|
+
static {
|
|
307
|
+
__name(this, "InternalServerException");
|
|
308
|
+
}
|
|
309
|
+
name = "InternalServerException";
|
|
310
|
+
$fault = "server";
|
|
299
311
|
/**
|
|
300
312
|
* @internal
|
|
301
313
|
*/
|
|
@@ -305,14 +317,15 @@ var _InternalServerException = class _InternalServerException extends TnbService
|
|
|
305
317
|
$fault: "server",
|
|
306
318
|
...opts
|
|
307
319
|
});
|
|
308
|
-
this.name = "InternalServerException";
|
|
309
|
-
this.$fault = "server";
|
|
310
320
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
311
321
|
}
|
|
312
322
|
};
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
323
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends TnbServiceException {
|
|
324
|
+
static {
|
|
325
|
+
__name(this, "ResourceNotFoundException");
|
|
326
|
+
}
|
|
327
|
+
name = "ResourceNotFoundException";
|
|
328
|
+
$fault = "client";
|
|
316
329
|
/**
|
|
317
330
|
* @internal
|
|
318
331
|
*/
|
|
@@ -322,14 +335,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends TnbSer
|
|
|
322
335
|
$fault: "client",
|
|
323
336
|
...opts
|
|
324
337
|
});
|
|
325
|
-
this.name = "ResourceNotFoundException";
|
|
326
|
-
this.$fault = "client";
|
|
327
338
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
328
339
|
}
|
|
329
340
|
};
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
341
|
+
var ThrottlingException = class _ThrottlingException extends TnbServiceException {
|
|
342
|
+
static {
|
|
343
|
+
__name(this, "ThrottlingException");
|
|
344
|
+
}
|
|
345
|
+
name = "ThrottlingException";
|
|
346
|
+
$fault = "client";
|
|
333
347
|
/**
|
|
334
348
|
* @internal
|
|
335
349
|
*/
|
|
@@ -339,14 +353,15 @@ var _ThrottlingException = class _ThrottlingException extends TnbServiceExceptio
|
|
|
339
353
|
$fault: "client",
|
|
340
354
|
...opts
|
|
341
355
|
});
|
|
342
|
-
this.name = "ThrottlingException";
|
|
343
|
-
this.$fault = "client";
|
|
344
356
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
345
357
|
}
|
|
346
358
|
};
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
359
|
+
var ValidationException = class _ValidationException extends TnbServiceException {
|
|
360
|
+
static {
|
|
361
|
+
__name(this, "ValidationException");
|
|
362
|
+
}
|
|
363
|
+
name = "ValidationException";
|
|
364
|
+
$fault = "client";
|
|
350
365
|
/**
|
|
351
366
|
* @internal
|
|
352
367
|
*/
|
|
@@ -356,13 +371,9 @@ var _ValidationException = class _ValidationException extends TnbServiceExceptio
|
|
|
356
371
|
$fault: "client",
|
|
357
372
|
...opts
|
|
358
373
|
});
|
|
359
|
-
this.name = "ValidationException";
|
|
360
|
-
this.$fault = "client";
|
|
361
374
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
362
375
|
}
|
|
363
376
|
};
|
|
364
|
-
__name(_ValidationException, "ValidationException");
|
|
365
|
-
var ValidationException = _ValidationException;
|
|
366
377
|
var OnboardingState = {
|
|
367
378
|
CREATED: "CREATED",
|
|
368
379
|
ERROR: "ERROR",
|
|
@@ -376,7 +387,12 @@ var UsageState = {
|
|
|
376
387
|
IN_USE: "IN_USE",
|
|
377
388
|
NOT_IN_USE: "NOT_IN_USE"
|
|
378
389
|
};
|
|
379
|
-
var
|
|
390
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends TnbServiceException {
|
|
391
|
+
static {
|
|
392
|
+
__name(this, "ServiceQuotaExceededException");
|
|
393
|
+
}
|
|
394
|
+
name = "ServiceQuotaExceededException";
|
|
395
|
+
$fault = "client";
|
|
380
396
|
/**
|
|
381
397
|
* @internal
|
|
382
398
|
*/
|
|
@@ -386,13 +402,9 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
386
402
|
$fault: "client",
|
|
387
403
|
...opts
|
|
388
404
|
});
|
|
389
|
-
this.name = "ServiceQuotaExceededException";
|
|
390
|
-
this.$fault = "client";
|
|
391
405
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
392
406
|
}
|
|
393
407
|
};
|
|
394
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
395
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
396
408
|
var NsdOnboardingState = {
|
|
397
409
|
CREATED: "CREATED",
|
|
398
410
|
ERROR: "ERROR",
|
|
@@ -1834,463 +1846,496 @@ var _nom = "nextpage_opaque_marker";
|
|
|
1834
1846
|
var _tK = "tagKeys";
|
|
1835
1847
|
|
|
1836
1848
|
// src/commands/CancelSolNetworkOperationCommand.ts
|
|
1837
|
-
var
|
|
1849
|
+
var CancelSolNetworkOperationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1838
1850
|
return [
|
|
1839
1851
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1840
1852
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1841
1853
|
];
|
|
1842
1854
|
}).s("TNB", "CancelSolNetworkOperation", {}).n("TnbClient", "CancelSolNetworkOperationCommand").f(void 0, void 0).ser(se_CancelSolNetworkOperationCommand).de(de_CancelSolNetworkOperationCommand).build() {
|
|
1855
|
+
static {
|
|
1856
|
+
__name(this, "CancelSolNetworkOperationCommand");
|
|
1857
|
+
}
|
|
1843
1858
|
};
|
|
1844
|
-
__name(_CancelSolNetworkOperationCommand, "CancelSolNetworkOperationCommand");
|
|
1845
|
-
var CancelSolNetworkOperationCommand = _CancelSolNetworkOperationCommand;
|
|
1846
1859
|
|
|
1847
1860
|
// src/commands/CreateSolFunctionPackageCommand.ts
|
|
1848
1861
|
|
|
1849
1862
|
|
|
1850
1863
|
|
|
1851
|
-
var
|
|
1864
|
+
var CreateSolFunctionPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1852
1865
|
return [
|
|
1853
1866
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1854
1867
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1855
1868
|
];
|
|
1856
1869
|
}).s("TNB", "CreateSolFunctionPackage", {}).n("TnbClient", "CreateSolFunctionPackageCommand").f(CreateSolFunctionPackageInputFilterSensitiveLog, CreateSolFunctionPackageOutputFilterSensitiveLog).ser(se_CreateSolFunctionPackageCommand).de(de_CreateSolFunctionPackageCommand).build() {
|
|
1870
|
+
static {
|
|
1871
|
+
__name(this, "CreateSolFunctionPackageCommand");
|
|
1872
|
+
}
|
|
1857
1873
|
};
|
|
1858
|
-
__name(_CreateSolFunctionPackageCommand, "CreateSolFunctionPackageCommand");
|
|
1859
|
-
var CreateSolFunctionPackageCommand = _CreateSolFunctionPackageCommand;
|
|
1860
1874
|
|
|
1861
1875
|
// src/commands/CreateSolNetworkInstanceCommand.ts
|
|
1862
1876
|
|
|
1863
1877
|
|
|
1864
1878
|
|
|
1865
|
-
var
|
|
1879
|
+
var CreateSolNetworkInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1866
1880
|
return [
|
|
1867
1881
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1868
1882
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1869
1883
|
];
|
|
1870
1884
|
}).s("TNB", "CreateSolNetworkInstance", {}).n("TnbClient", "CreateSolNetworkInstanceCommand").f(CreateSolNetworkInstanceInputFilterSensitiveLog, CreateSolNetworkInstanceOutputFilterSensitiveLog).ser(se_CreateSolNetworkInstanceCommand).de(de_CreateSolNetworkInstanceCommand).build() {
|
|
1885
|
+
static {
|
|
1886
|
+
__name(this, "CreateSolNetworkInstanceCommand");
|
|
1887
|
+
}
|
|
1871
1888
|
};
|
|
1872
|
-
__name(_CreateSolNetworkInstanceCommand, "CreateSolNetworkInstanceCommand");
|
|
1873
|
-
var CreateSolNetworkInstanceCommand = _CreateSolNetworkInstanceCommand;
|
|
1874
1889
|
|
|
1875
1890
|
// src/commands/CreateSolNetworkPackageCommand.ts
|
|
1876
1891
|
|
|
1877
1892
|
|
|
1878
1893
|
|
|
1879
|
-
var
|
|
1894
|
+
var CreateSolNetworkPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1880
1895
|
return [
|
|
1881
1896
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1882
1897
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1883
1898
|
];
|
|
1884
1899
|
}).s("TNB", "CreateSolNetworkPackage", {}).n("TnbClient", "CreateSolNetworkPackageCommand").f(CreateSolNetworkPackageInputFilterSensitiveLog, CreateSolNetworkPackageOutputFilterSensitiveLog).ser(se_CreateSolNetworkPackageCommand).de(de_CreateSolNetworkPackageCommand).build() {
|
|
1900
|
+
static {
|
|
1901
|
+
__name(this, "CreateSolNetworkPackageCommand");
|
|
1902
|
+
}
|
|
1885
1903
|
};
|
|
1886
|
-
__name(_CreateSolNetworkPackageCommand, "CreateSolNetworkPackageCommand");
|
|
1887
|
-
var CreateSolNetworkPackageCommand = _CreateSolNetworkPackageCommand;
|
|
1888
1904
|
|
|
1889
1905
|
// src/commands/DeleteSolFunctionPackageCommand.ts
|
|
1890
1906
|
|
|
1891
1907
|
|
|
1892
1908
|
|
|
1893
|
-
var
|
|
1909
|
+
var DeleteSolFunctionPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1894
1910
|
return [
|
|
1895
1911
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1896
1912
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1897
1913
|
];
|
|
1898
1914
|
}).s("TNB", "DeleteSolFunctionPackage", {}).n("TnbClient", "DeleteSolFunctionPackageCommand").f(void 0, void 0).ser(se_DeleteSolFunctionPackageCommand).de(de_DeleteSolFunctionPackageCommand).build() {
|
|
1915
|
+
static {
|
|
1916
|
+
__name(this, "DeleteSolFunctionPackageCommand");
|
|
1917
|
+
}
|
|
1899
1918
|
};
|
|
1900
|
-
__name(_DeleteSolFunctionPackageCommand, "DeleteSolFunctionPackageCommand");
|
|
1901
|
-
var DeleteSolFunctionPackageCommand = _DeleteSolFunctionPackageCommand;
|
|
1902
1919
|
|
|
1903
1920
|
// src/commands/DeleteSolNetworkInstanceCommand.ts
|
|
1904
1921
|
|
|
1905
1922
|
|
|
1906
1923
|
|
|
1907
|
-
var
|
|
1924
|
+
var DeleteSolNetworkInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1908
1925
|
return [
|
|
1909
1926
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1910
1927
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1911
1928
|
];
|
|
1912
1929
|
}).s("TNB", "DeleteSolNetworkInstance", {}).n("TnbClient", "DeleteSolNetworkInstanceCommand").f(void 0, void 0).ser(se_DeleteSolNetworkInstanceCommand).de(de_DeleteSolNetworkInstanceCommand).build() {
|
|
1930
|
+
static {
|
|
1931
|
+
__name(this, "DeleteSolNetworkInstanceCommand");
|
|
1932
|
+
}
|
|
1913
1933
|
};
|
|
1914
|
-
__name(_DeleteSolNetworkInstanceCommand, "DeleteSolNetworkInstanceCommand");
|
|
1915
|
-
var DeleteSolNetworkInstanceCommand = _DeleteSolNetworkInstanceCommand;
|
|
1916
1934
|
|
|
1917
1935
|
// src/commands/DeleteSolNetworkPackageCommand.ts
|
|
1918
1936
|
|
|
1919
1937
|
|
|
1920
1938
|
|
|
1921
|
-
var
|
|
1939
|
+
var DeleteSolNetworkPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1922
1940
|
return [
|
|
1923
1941
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1924
1942
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1925
1943
|
];
|
|
1926
1944
|
}).s("TNB", "DeleteSolNetworkPackage", {}).n("TnbClient", "DeleteSolNetworkPackageCommand").f(void 0, void 0).ser(se_DeleteSolNetworkPackageCommand).de(de_DeleteSolNetworkPackageCommand).build() {
|
|
1945
|
+
static {
|
|
1946
|
+
__name(this, "DeleteSolNetworkPackageCommand");
|
|
1947
|
+
}
|
|
1927
1948
|
};
|
|
1928
|
-
__name(_DeleteSolNetworkPackageCommand, "DeleteSolNetworkPackageCommand");
|
|
1929
|
-
var DeleteSolNetworkPackageCommand = _DeleteSolNetworkPackageCommand;
|
|
1930
1949
|
|
|
1931
1950
|
// src/commands/GetSolFunctionInstanceCommand.ts
|
|
1932
1951
|
|
|
1933
1952
|
|
|
1934
1953
|
|
|
1935
|
-
var
|
|
1954
|
+
var GetSolFunctionInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1936
1955
|
return [
|
|
1937
1956
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1938
1957
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1939
1958
|
];
|
|
1940
1959
|
}).s("TNB", "GetSolFunctionInstance", {}).n("TnbClient", "GetSolFunctionInstanceCommand").f(void 0, GetSolFunctionInstanceOutputFilterSensitiveLog).ser(se_GetSolFunctionInstanceCommand).de(de_GetSolFunctionInstanceCommand).build() {
|
|
1960
|
+
static {
|
|
1961
|
+
__name(this, "GetSolFunctionInstanceCommand");
|
|
1962
|
+
}
|
|
1941
1963
|
};
|
|
1942
|
-
__name(_GetSolFunctionInstanceCommand, "GetSolFunctionInstanceCommand");
|
|
1943
|
-
var GetSolFunctionInstanceCommand = _GetSolFunctionInstanceCommand;
|
|
1944
1964
|
|
|
1945
1965
|
// src/commands/GetSolFunctionPackageCommand.ts
|
|
1946
1966
|
|
|
1947
1967
|
|
|
1948
1968
|
|
|
1949
|
-
var
|
|
1969
|
+
var GetSolFunctionPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1950
1970
|
return [
|
|
1951
1971
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1952
1972
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1953
1973
|
];
|
|
1954
1974
|
}).s("TNB", "GetSolFunctionPackage", {}).n("TnbClient", "GetSolFunctionPackageCommand").f(void 0, GetSolFunctionPackageOutputFilterSensitiveLog).ser(se_GetSolFunctionPackageCommand).de(de_GetSolFunctionPackageCommand).build() {
|
|
1975
|
+
static {
|
|
1976
|
+
__name(this, "GetSolFunctionPackageCommand");
|
|
1977
|
+
}
|
|
1955
1978
|
};
|
|
1956
|
-
__name(_GetSolFunctionPackageCommand, "GetSolFunctionPackageCommand");
|
|
1957
|
-
var GetSolFunctionPackageCommand = _GetSolFunctionPackageCommand;
|
|
1958
1979
|
|
|
1959
1980
|
// src/commands/GetSolFunctionPackageContentCommand.ts
|
|
1960
1981
|
|
|
1961
1982
|
|
|
1962
1983
|
|
|
1963
|
-
var
|
|
1984
|
+
var GetSolFunctionPackageContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1964
1985
|
return [
|
|
1965
1986
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1966
1987
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1967
1988
|
];
|
|
1968
1989
|
}).s("TNB", "GetSolFunctionPackageContent", {}).n("TnbClient", "GetSolFunctionPackageContentCommand").f(void 0, void 0).ser(se_GetSolFunctionPackageContentCommand).de(de_GetSolFunctionPackageContentCommand).build() {
|
|
1990
|
+
static {
|
|
1991
|
+
__name(this, "GetSolFunctionPackageContentCommand");
|
|
1992
|
+
}
|
|
1969
1993
|
};
|
|
1970
|
-
__name(_GetSolFunctionPackageContentCommand, "GetSolFunctionPackageContentCommand");
|
|
1971
|
-
var GetSolFunctionPackageContentCommand = _GetSolFunctionPackageContentCommand;
|
|
1972
1994
|
|
|
1973
1995
|
// src/commands/GetSolFunctionPackageDescriptorCommand.ts
|
|
1974
1996
|
|
|
1975
1997
|
|
|
1976
1998
|
|
|
1977
|
-
var
|
|
1999
|
+
var GetSolFunctionPackageDescriptorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1978
2000
|
return [
|
|
1979
2001
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1980
2002
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1981
2003
|
];
|
|
1982
2004
|
}).s("TNB", "GetSolFunctionPackageDescriptor", {}).n("TnbClient", "GetSolFunctionPackageDescriptorCommand").f(void 0, void 0).ser(se_GetSolFunctionPackageDescriptorCommand).de(de_GetSolFunctionPackageDescriptorCommand).build() {
|
|
2005
|
+
static {
|
|
2006
|
+
__name(this, "GetSolFunctionPackageDescriptorCommand");
|
|
2007
|
+
}
|
|
1983
2008
|
};
|
|
1984
|
-
__name(_GetSolFunctionPackageDescriptorCommand, "GetSolFunctionPackageDescriptorCommand");
|
|
1985
|
-
var GetSolFunctionPackageDescriptorCommand = _GetSolFunctionPackageDescriptorCommand;
|
|
1986
2009
|
|
|
1987
2010
|
// src/commands/GetSolNetworkInstanceCommand.ts
|
|
1988
2011
|
|
|
1989
2012
|
|
|
1990
2013
|
|
|
1991
|
-
var
|
|
2014
|
+
var GetSolNetworkInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1992
2015
|
return [
|
|
1993
2016
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1994
2017
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1995
2018
|
];
|
|
1996
2019
|
}).s("TNB", "GetSolNetworkInstance", {}).n("TnbClient", "GetSolNetworkInstanceCommand").f(void 0, GetSolNetworkInstanceOutputFilterSensitiveLog).ser(se_GetSolNetworkInstanceCommand).de(de_GetSolNetworkInstanceCommand).build() {
|
|
2020
|
+
static {
|
|
2021
|
+
__name(this, "GetSolNetworkInstanceCommand");
|
|
2022
|
+
}
|
|
1997
2023
|
};
|
|
1998
|
-
__name(_GetSolNetworkInstanceCommand, "GetSolNetworkInstanceCommand");
|
|
1999
|
-
var GetSolNetworkInstanceCommand = _GetSolNetworkInstanceCommand;
|
|
2000
2024
|
|
|
2001
2025
|
// src/commands/GetSolNetworkOperationCommand.ts
|
|
2002
2026
|
|
|
2003
2027
|
|
|
2004
2028
|
|
|
2005
|
-
var
|
|
2029
|
+
var GetSolNetworkOperationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2006
2030
|
return [
|
|
2007
2031
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2008
2032
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2009
2033
|
];
|
|
2010
2034
|
}).s("TNB", "GetSolNetworkOperation", {}).n("TnbClient", "GetSolNetworkOperationCommand").f(void 0, GetSolNetworkOperationOutputFilterSensitiveLog).ser(se_GetSolNetworkOperationCommand).de(de_GetSolNetworkOperationCommand).build() {
|
|
2035
|
+
static {
|
|
2036
|
+
__name(this, "GetSolNetworkOperationCommand");
|
|
2037
|
+
}
|
|
2011
2038
|
};
|
|
2012
|
-
__name(_GetSolNetworkOperationCommand, "GetSolNetworkOperationCommand");
|
|
2013
|
-
var GetSolNetworkOperationCommand = _GetSolNetworkOperationCommand;
|
|
2014
2039
|
|
|
2015
2040
|
// src/commands/GetSolNetworkPackageCommand.ts
|
|
2016
2041
|
|
|
2017
2042
|
|
|
2018
2043
|
|
|
2019
|
-
var
|
|
2044
|
+
var GetSolNetworkPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2020
2045
|
return [
|
|
2021
2046
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2022
2047
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2023
2048
|
];
|
|
2024
2049
|
}).s("TNB", "GetSolNetworkPackage", {}).n("TnbClient", "GetSolNetworkPackageCommand").f(void 0, GetSolNetworkPackageOutputFilterSensitiveLog).ser(se_GetSolNetworkPackageCommand).de(de_GetSolNetworkPackageCommand).build() {
|
|
2050
|
+
static {
|
|
2051
|
+
__name(this, "GetSolNetworkPackageCommand");
|
|
2052
|
+
}
|
|
2025
2053
|
};
|
|
2026
|
-
__name(_GetSolNetworkPackageCommand, "GetSolNetworkPackageCommand");
|
|
2027
|
-
var GetSolNetworkPackageCommand = _GetSolNetworkPackageCommand;
|
|
2028
2054
|
|
|
2029
2055
|
// src/commands/GetSolNetworkPackageContentCommand.ts
|
|
2030
2056
|
|
|
2031
2057
|
|
|
2032
2058
|
|
|
2033
|
-
var
|
|
2059
|
+
var GetSolNetworkPackageContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2034
2060
|
return [
|
|
2035
2061
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2036
2062
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2037
2063
|
];
|
|
2038
2064
|
}).s("TNB", "GetSolNetworkPackageContent", {}).n("TnbClient", "GetSolNetworkPackageContentCommand").f(void 0, void 0).ser(se_GetSolNetworkPackageContentCommand).de(de_GetSolNetworkPackageContentCommand).build() {
|
|
2065
|
+
static {
|
|
2066
|
+
__name(this, "GetSolNetworkPackageContentCommand");
|
|
2067
|
+
}
|
|
2039
2068
|
};
|
|
2040
|
-
__name(_GetSolNetworkPackageContentCommand, "GetSolNetworkPackageContentCommand");
|
|
2041
|
-
var GetSolNetworkPackageContentCommand = _GetSolNetworkPackageContentCommand;
|
|
2042
2069
|
|
|
2043
2070
|
// src/commands/GetSolNetworkPackageDescriptorCommand.ts
|
|
2044
2071
|
|
|
2045
2072
|
|
|
2046
2073
|
|
|
2047
|
-
var
|
|
2074
|
+
var GetSolNetworkPackageDescriptorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2048
2075
|
return [
|
|
2049
2076
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2050
2077
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2051
2078
|
];
|
|
2052
2079
|
}).s("TNB", "GetSolNetworkPackageDescriptor", {}).n("TnbClient", "GetSolNetworkPackageDescriptorCommand").f(void 0, void 0).ser(se_GetSolNetworkPackageDescriptorCommand).de(de_GetSolNetworkPackageDescriptorCommand).build() {
|
|
2080
|
+
static {
|
|
2081
|
+
__name(this, "GetSolNetworkPackageDescriptorCommand");
|
|
2082
|
+
}
|
|
2053
2083
|
};
|
|
2054
|
-
__name(_GetSolNetworkPackageDescriptorCommand, "GetSolNetworkPackageDescriptorCommand");
|
|
2055
|
-
var GetSolNetworkPackageDescriptorCommand = _GetSolNetworkPackageDescriptorCommand;
|
|
2056
2084
|
|
|
2057
2085
|
// src/commands/InstantiateSolNetworkInstanceCommand.ts
|
|
2058
2086
|
|
|
2059
2087
|
|
|
2060
2088
|
|
|
2061
|
-
var
|
|
2089
|
+
var InstantiateSolNetworkInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2062
2090
|
return [
|
|
2063
2091
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2064
2092
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2065
2093
|
];
|
|
2066
2094
|
}).s("TNB", "InstantiateSolNetworkInstance", {}).n("TnbClient", "InstantiateSolNetworkInstanceCommand").f(InstantiateSolNetworkInstanceInputFilterSensitiveLog, InstantiateSolNetworkInstanceOutputFilterSensitiveLog).ser(se_InstantiateSolNetworkInstanceCommand).de(de_InstantiateSolNetworkInstanceCommand).build() {
|
|
2095
|
+
static {
|
|
2096
|
+
__name(this, "InstantiateSolNetworkInstanceCommand");
|
|
2097
|
+
}
|
|
2067
2098
|
};
|
|
2068
|
-
__name(_InstantiateSolNetworkInstanceCommand, "InstantiateSolNetworkInstanceCommand");
|
|
2069
|
-
var InstantiateSolNetworkInstanceCommand = _InstantiateSolNetworkInstanceCommand;
|
|
2070
2099
|
|
|
2071
2100
|
// src/commands/ListSolFunctionInstancesCommand.ts
|
|
2072
2101
|
|
|
2073
2102
|
|
|
2074
2103
|
|
|
2075
|
-
var
|
|
2104
|
+
var ListSolFunctionInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2076
2105
|
return [
|
|
2077
2106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2078
2107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2079
2108
|
];
|
|
2080
2109
|
}).s("TNB", "ListSolFunctionInstances", {}).n("TnbClient", "ListSolFunctionInstancesCommand").f(void 0, void 0).ser(se_ListSolFunctionInstancesCommand).de(de_ListSolFunctionInstancesCommand).build() {
|
|
2110
|
+
static {
|
|
2111
|
+
__name(this, "ListSolFunctionInstancesCommand");
|
|
2112
|
+
}
|
|
2081
2113
|
};
|
|
2082
|
-
__name(_ListSolFunctionInstancesCommand, "ListSolFunctionInstancesCommand");
|
|
2083
|
-
var ListSolFunctionInstancesCommand = _ListSolFunctionInstancesCommand;
|
|
2084
2114
|
|
|
2085
2115
|
// src/commands/ListSolFunctionPackagesCommand.ts
|
|
2086
2116
|
|
|
2087
2117
|
|
|
2088
2118
|
|
|
2089
|
-
var
|
|
2119
|
+
var ListSolFunctionPackagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2090
2120
|
return [
|
|
2091
2121
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2092
2122
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2093
2123
|
];
|
|
2094
2124
|
}).s("TNB", "ListSolFunctionPackages", {}).n("TnbClient", "ListSolFunctionPackagesCommand").f(void 0, void 0).ser(se_ListSolFunctionPackagesCommand).de(de_ListSolFunctionPackagesCommand).build() {
|
|
2125
|
+
static {
|
|
2126
|
+
__name(this, "ListSolFunctionPackagesCommand");
|
|
2127
|
+
}
|
|
2095
2128
|
};
|
|
2096
|
-
__name(_ListSolFunctionPackagesCommand, "ListSolFunctionPackagesCommand");
|
|
2097
|
-
var ListSolFunctionPackagesCommand = _ListSolFunctionPackagesCommand;
|
|
2098
2129
|
|
|
2099
2130
|
// src/commands/ListSolNetworkInstancesCommand.ts
|
|
2100
2131
|
|
|
2101
2132
|
|
|
2102
2133
|
|
|
2103
|
-
var
|
|
2134
|
+
var ListSolNetworkInstancesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2104
2135
|
return [
|
|
2105
2136
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2106
2137
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2107
2138
|
];
|
|
2108
2139
|
}).s("TNB", "ListSolNetworkInstances", {}).n("TnbClient", "ListSolNetworkInstancesCommand").f(void 0, void 0).ser(se_ListSolNetworkInstancesCommand).de(de_ListSolNetworkInstancesCommand).build() {
|
|
2140
|
+
static {
|
|
2141
|
+
__name(this, "ListSolNetworkInstancesCommand");
|
|
2142
|
+
}
|
|
2109
2143
|
};
|
|
2110
|
-
__name(_ListSolNetworkInstancesCommand, "ListSolNetworkInstancesCommand");
|
|
2111
|
-
var ListSolNetworkInstancesCommand = _ListSolNetworkInstancesCommand;
|
|
2112
2144
|
|
|
2113
2145
|
// src/commands/ListSolNetworkOperationsCommand.ts
|
|
2114
2146
|
|
|
2115
2147
|
|
|
2116
2148
|
|
|
2117
|
-
var
|
|
2149
|
+
var ListSolNetworkOperationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2118
2150
|
return [
|
|
2119
2151
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2120
2152
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2121
2153
|
];
|
|
2122
2154
|
}).s("TNB", "ListSolNetworkOperations", {}).n("TnbClient", "ListSolNetworkOperationsCommand").f(void 0, void 0).ser(se_ListSolNetworkOperationsCommand).de(de_ListSolNetworkOperationsCommand).build() {
|
|
2155
|
+
static {
|
|
2156
|
+
__name(this, "ListSolNetworkOperationsCommand");
|
|
2157
|
+
}
|
|
2123
2158
|
};
|
|
2124
|
-
__name(_ListSolNetworkOperationsCommand, "ListSolNetworkOperationsCommand");
|
|
2125
|
-
var ListSolNetworkOperationsCommand = _ListSolNetworkOperationsCommand;
|
|
2126
2159
|
|
|
2127
2160
|
// src/commands/ListSolNetworkPackagesCommand.ts
|
|
2128
2161
|
|
|
2129
2162
|
|
|
2130
2163
|
|
|
2131
|
-
var
|
|
2164
|
+
var ListSolNetworkPackagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2132
2165
|
return [
|
|
2133
2166
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2134
2167
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2135
2168
|
];
|
|
2136
2169
|
}).s("TNB", "ListSolNetworkPackages", {}).n("TnbClient", "ListSolNetworkPackagesCommand").f(void 0, void 0).ser(se_ListSolNetworkPackagesCommand).de(de_ListSolNetworkPackagesCommand).build() {
|
|
2170
|
+
static {
|
|
2171
|
+
__name(this, "ListSolNetworkPackagesCommand");
|
|
2172
|
+
}
|
|
2137
2173
|
};
|
|
2138
|
-
__name(_ListSolNetworkPackagesCommand, "ListSolNetworkPackagesCommand");
|
|
2139
|
-
var ListSolNetworkPackagesCommand = _ListSolNetworkPackagesCommand;
|
|
2140
2174
|
|
|
2141
2175
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2142
2176
|
|
|
2143
2177
|
|
|
2144
2178
|
|
|
2145
|
-
var
|
|
2179
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2146
2180
|
return [
|
|
2147
2181
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2148
2182
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2149
2183
|
];
|
|
2150
2184
|
}).s("TNB", "ListTagsForResource", {}).n("TnbClient", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceOutputFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2185
|
+
static {
|
|
2186
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2187
|
+
}
|
|
2151
2188
|
};
|
|
2152
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2153
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2154
2189
|
|
|
2155
2190
|
// src/commands/PutSolFunctionPackageContentCommand.ts
|
|
2156
2191
|
|
|
2157
2192
|
|
|
2158
2193
|
|
|
2159
|
-
var
|
|
2194
|
+
var PutSolFunctionPackageContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2160
2195
|
return [
|
|
2161
2196
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2162
2197
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2163
2198
|
];
|
|
2164
2199
|
}).s("TNB", "PutSolFunctionPackageContent", {}).n("TnbClient", "PutSolFunctionPackageContentCommand").f(PutSolFunctionPackageContentInputFilterSensitiveLog, void 0).ser(se_PutSolFunctionPackageContentCommand).de(de_PutSolFunctionPackageContentCommand).build() {
|
|
2200
|
+
static {
|
|
2201
|
+
__name(this, "PutSolFunctionPackageContentCommand");
|
|
2202
|
+
}
|
|
2165
2203
|
};
|
|
2166
|
-
__name(_PutSolFunctionPackageContentCommand, "PutSolFunctionPackageContentCommand");
|
|
2167
|
-
var PutSolFunctionPackageContentCommand = _PutSolFunctionPackageContentCommand;
|
|
2168
2204
|
|
|
2169
2205
|
// src/commands/PutSolNetworkPackageContentCommand.ts
|
|
2170
2206
|
|
|
2171
2207
|
|
|
2172
2208
|
|
|
2173
|
-
var
|
|
2209
|
+
var PutSolNetworkPackageContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2174
2210
|
return [
|
|
2175
2211
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2176
2212
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2177
2213
|
];
|
|
2178
2214
|
}).s("TNB", "PutSolNetworkPackageContent", {}).n("TnbClient", "PutSolNetworkPackageContentCommand").f(PutSolNetworkPackageContentInputFilterSensitiveLog, void 0).ser(se_PutSolNetworkPackageContentCommand).de(de_PutSolNetworkPackageContentCommand).build() {
|
|
2215
|
+
static {
|
|
2216
|
+
__name(this, "PutSolNetworkPackageContentCommand");
|
|
2217
|
+
}
|
|
2179
2218
|
};
|
|
2180
|
-
__name(_PutSolNetworkPackageContentCommand, "PutSolNetworkPackageContentCommand");
|
|
2181
|
-
var PutSolNetworkPackageContentCommand = _PutSolNetworkPackageContentCommand;
|
|
2182
2219
|
|
|
2183
2220
|
// src/commands/TagResourceCommand.ts
|
|
2184
2221
|
|
|
2185
2222
|
|
|
2186
2223
|
|
|
2187
|
-
var
|
|
2224
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2188
2225
|
return [
|
|
2189
2226
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2190
2227
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2191
2228
|
];
|
|
2192
2229
|
}).s("TNB", "TagResource", {}).n("TnbClient", "TagResourceCommand").f(TagResourceInputFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2230
|
+
static {
|
|
2231
|
+
__name(this, "TagResourceCommand");
|
|
2232
|
+
}
|
|
2193
2233
|
};
|
|
2194
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2195
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2196
2234
|
|
|
2197
2235
|
// src/commands/TerminateSolNetworkInstanceCommand.ts
|
|
2198
2236
|
|
|
2199
2237
|
|
|
2200
2238
|
|
|
2201
|
-
var
|
|
2239
|
+
var TerminateSolNetworkInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2202
2240
|
return [
|
|
2203
2241
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2204
2242
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2205
2243
|
];
|
|
2206
2244
|
}).s("TNB", "TerminateSolNetworkInstance", {}).n("TnbClient", "TerminateSolNetworkInstanceCommand").f(TerminateSolNetworkInstanceInputFilterSensitiveLog, TerminateSolNetworkInstanceOutputFilterSensitiveLog).ser(se_TerminateSolNetworkInstanceCommand).de(de_TerminateSolNetworkInstanceCommand).build() {
|
|
2245
|
+
static {
|
|
2246
|
+
__name(this, "TerminateSolNetworkInstanceCommand");
|
|
2247
|
+
}
|
|
2207
2248
|
};
|
|
2208
|
-
__name(_TerminateSolNetworkInstanceCommand, "TerminateSolNetworkInstanceCommand");
|
|
2209
|
-
var TerminateSolNetworkInstanceCommand = _TerminateSolNetworkInstanceCommand;
|
|
2210
2249
|
|
|
2211
2250
|
// src/commands/UntagResourceCommand.ts
|
|
2212
2251
|
|
|
2213
2252
|
|
|
2214
2253
|
|
|
2215
|
-
var
|
|
2254
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2216
2255
|
return [
|
|
2217
2256
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2218
2257
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2219
2258
|
];
|
|
2220
2259
|
}).s("TNB", "UntagResource", {}).n("TnbClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2260
|
+
static {
|
|
2261
|
+
__name(this, "UntagResourceCommand");
|
|
2262
|
+
}
|
|
2221
2263
|
};
|
|
2222
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2223
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2224
2264
|
|
|
2225
2265
|
// src/commands/UpdateSolFunctionPackageCommand.ts
|
|
2226
2266
|
|
|
2227
2267
|
|
|
2228
2268
|
|
|
2229
|
-
var
|
|
2269
|
+
var UpdateSolFunctionPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2230
2270
|
return [
|
|
2231
2271
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2232
2272
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2233
2273
|
];
|
|
2234
2274
|
}).s("TNB", "UpdateSolFunctionPackage", {}).n("TnbClient", "UpdateSolFunctionPackageCommand").f(void 0, void 0).ser(se_UpdateSolFunctionPackageCommand).de(de_UpdateSolFunctionPackageCommand).build() {
|
|
2275
|
+
static {
|
|
2276
|
+
__name(this, "UpdateSolFunctionPackageCommand");
|
|
2277
|
+
}
|
|
2235
2278
|
};
|
|
2236
|
-
__name(_UpdateSolFunctionPackageCommand, "UpdateSolFunctionPackageCommand");
|
|
2237
|
-
var UpdateSolFunctionPackageCommand = _UpdateSolFunctionPackageCommand;
|
|
2238
2279
|
|
|
2239
2280
|
// src/commands/UpdateSolNetworkInstanceCommand.ts
|
|
2240
2281
|
|
|
2241
2282
|
|
|
2242
2283
|
|
|
2243
|
-
var
|
|
2284
|
+
var UpdateSolNetworkInstanceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2244
2285
|
return [
|
|
2245
2286
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2246
2287
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2247
2288
|
];
|
|
2248
2289
|
}).s("TNB", "UpdateSolNetworkInstance", {}).n("TnbClient", "UpdateSolNetworkInstanceCommand").f(UpdateSolNetworkInstanceInputFilterSensitiveLog, UpdateSolNetworkInstanceOutputFilterSensitiveLog).ser(se_UpdateSolNetworkInstanceCommand).de(de_UpdateSolNetworkInstanceCommand).build() {
|
|
2290
|
+
static {
|
|
2291
|
+
__name(this, "UpdateSolNetworkInstanceCommand");
|
|
2292
|
+
}
|
|
2249
2293
|
};
|
|
2250
|
-
__name(_UpdateSolNetworkInstanceCommand, "UpdateSolNetworkInstanceCommand");
|
|
2251
|
-
var UpdateSolNetworkInstanceCommand = _UpdateSolNetworkInstanceCommand;
|
|
2252
2294
|
|
|
2253
2295
|
// src/commands/UpdateSolNetworkPackageCommand.ts
|
|
2254
2296
|
|
|
2255
2297
|
|
|
2256
2298
|
|
|
2257
|
-
var
|
|
2299
|
+
var UpdateSolNetworkPackageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2258
2300
|
return [
|
|
2259
2301
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2260
2302
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2261
2303
|
];
|
|
2262
2304
|
}).s("TNB", "UpdateSolNetworkPackage", {}).n("TnbClient", "UpdateSolNetworkPackageCommand").f(void 0, void 0).ser(se_UpdateSolNetworkPackageCommand).de(de_UpdateSolNetworkPackageCommand).build() {
|
|
2305
|
+
static {
|
|
2306
|
+
__name(this, "UpdateSolNetworkPackageCommand");
|
|
2307
|
+
}
|
|
2263
2308
|
};
|
|
2264
|
-
__name(_UpdateSolNetworkPackageCommand, "UpdateSolNetworkPackageCommand");
|
|
2265
|
-
var UpdateSolNetworkPackageCommand = _UpdateSolNetworkPackageCommand;
|
|
2266
2309
|
|
|
2267
2310
|
// src/commands/ValidateSolFunctionPackageContentCommand.ts
|
|
2268
2311
|
|
|
2269
2312
|
|
|
2270
2313
|
|
|
2271
|
-
var
|
|
2314
|
+
var ValidateSolFunctionPackageContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2272
2315
|
return [
|
|
2273
2316
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2274
2317
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2275
2318
|
];
|
|
2276
2319
|
}).s("TNB", "ValidateSolFunctionPackageContent", {}).n("TnbClient", "ValidateSolFunctionPackageContentCommand").f(ValidateSolFunctionPackageContentInputFilterSensitiveLog, void 0).ser(se_ValidateSolFunctionPackageContentCommand).de(de_ValidateSolFunctionPackageContentCommand).build() {
|
|
2320
|
+
static {
|
|
2321
|
+
__name(this, "ValidateSolFunctionPackageContentCommand");
|
|
2322
|
+
}
|
|
2277
2323
|
};
|
|
2278
|
-
__name(_ValidateSolFunctionPackageContentCommand, "ValidateSolFunctionPackageContentCommand");
|
|
2279
|
-
var ValidateSolFunctionPackageContentCommand = _ValidateSolFunctionPackageContentCommand;
|
|
2280
2324
|
|
|
2281
2325
|
// src/commands/ValidateSolNetworkPackageContentCommand.ts
|
|
2282
2326
|
|
|
2283
2327
|
|
|
2284
2328
|
|
|
2285
|
-
var
|
|
2329
|
+
var ValidateSolNetworkPackageContentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2286
2330
|
return [
|
|
2287
2331
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2288
2332
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2289
2333
|
];
|
|
2290
2334
|
}).s("TNB", "ValidateSolNetworkPackageContent", {}).n("TnbClient", "ValidateSolNetworkPackageContentCommand").f(ValidateSolNetworkPackageContentInputFilterSensitiveLog, void 0).ser(se_ValidateSolNetworkPackageContentCommand).de(de_ValidateSolNetworkPackageContentCommand).build() {
|
|
2335
|
+
static {
|
|
2336
|
+
__name(this, "ValidateSolNetworkPackageContentCommand");
|
|
2337
|
+
}
|
|
2291
2338
|
};
|
|
2292
|
-
__name(_ValidateSolNetworkPackageContentCommand, "ValidateSolNetworkPackageContentCommand");
|
|
2293
|
-
var ValidateSolNetworkPackageContentCommand = _ValidateSolNetworkPackageContentCommand;
|
|
2294
2339
|
|
|
2295
2340
|
// src/Tnb.ts
|
|
2296
2341
|
var commands = {
|
|
@@ -2328,10 +2373,11 @@ var commands = {
|
|
|
2328
2373
|
ValidateSolFunctionPackageContentCommand,
|
|
2329
2374
|
ValidateSolNetworkPackageContentCommand
|
|
2330
2375
|
};
|
|
2331
|
-
var
|
|
2376
|
+
var Tnb = class extends TnbClient {
|
|
2377
|
+
static {
|
|
2378
|
+
__name(this, "Tnb");
|
|
2379
|
+
}
|
|
2332
2380
|
};
|
|
2333
|
-
__name(_Tnb, "Tnb");
|
|
2334
|
-
var Tnb = _Tnb;
|
|
2335
2381
|
(0, import_smithy_client.createAggregatedClient)(commands, Tnb);
|
|
2336
2382
|
|
|
2337
2383
|
// src/pagination/ListSolFunctionInstancesPaginator.ts
|
package/dist-es/TnbClient.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 TnbClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,62 +1,62 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { TnbServiceException as __BaseException } from "./TnbServiceException";
|
|
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 InternalServerException extends __BaseException {
|
|
16
|
+
name = "InternalServerException";
|
|
17
|
+
$fault = "server";
|
|
16
18
|
constructor(opts) {
|
|
17
19
|
super({
|
|
18
20
|
name: "InternalServerException",
|
|
19
21
|
$fault: "server",
|
|
20
22
|
...opts,
|
|
21
23
|
});
|
|
22
|
-
this.name = "InternalServerException";
|
|
23
|
-
this.$fault = "server";
|
|
24
24
|
Object.setPrototypeOf(this, InternalServerException.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 ThrottlingException extends __BaseException {
|
|
40
|
+
name = "ThrottlingException";
|
|
41
|
+
$fault = "client";
|
|
40
42
|
constructor(opts) {
|
|
41
43
|
super({
|
|
42
44
|
name: "ThrottlingException",
|
|
43
45
|
$fault: "client",
|
|
44
46
|
...opts,
|
|
45
47
|
});
|
|
46
|
-
this.name = "ThrottlingException";
|
|
47
|
-
this.$fault = "client";
|
|
48
48
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
49
49
|
}
|
|
50
50
|
}
|
|
51
51
|
export class ValidationException extends __BaseException {
|
|
52
|
+
name = "ValidationException";
|
|
53
|
+
$fault = "client";
|
|
52
54
|
constructor(opts) {
|
|
53
55
|
super({
|
|
54
56
|
name: "ValidationException",
|
|
55
57
|
$fault: "client",
|
|
56
58
|
...opts,
|
|
57
59
|
});
|
|
58
|
-
this.name = "ValidationException";
|
|
59
|
-
this.$fault = "client";
|
|
60
60
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
61
61
|
}
|
|
62
62
|
}
|
|
@@ -74,14 +74,14 @@ export const UsageState = {
|
|
|
74
74
|
NOT_IN_USE: "NOT_IN_USE",
|
|
75
75
|
};
|
|
76
76
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
77
|
+
name = "ServiceQuotaExceededException";
|
|
78
|
+
$fault = "client";
|
|
77
79
|
constructor(opts) {
|
|
78
80
|
super({
|
|
79
81
|
name: "ServiceQuotaExceededException",
|
|
80
82
|
$fault: "client",
|
|
81
83
|
...opts,
|
|
82
84
|
});
|
|
83
|
-
this.name = "ServiceQuotaExceededException";
|
|
84
|
-
this.$fault = "client";
|
|
85
85
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
86
86
|
}
|
|
87
87
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: TnbClientConfig) => {
|
|
|
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: TnbClientConfig) => {
|
|
|
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: TnbClientConfig) => {
|
|
|
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: TnbClientConfig) => {
|
|
|
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: TnbClientConfig) => {
|
|
|
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: TnbClientConfig) => {
|
|
|
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: TnbClientConfig) => {
|
|
|
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: TnbClientConfig) => {
|
|
|
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-tnb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Tnb 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-tnb",
|
|
@@ -20,57 +20,57 @@
|
|
|
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-stream": "^
|
|
61
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.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.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.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-stream": "^4.0.0",
|
|
61
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@tsconfig/
|
|
66
|
-
"@types/node": "^
|
|
65
|
+
"@tsconfig/node18": "18.2.4",
|
|
66
|
+
"@types/node": "^18.19.69",
|
|
67
67
|
"concurrently": "7.0.0",
|
|
68
68
|
"downlevel-dts": "0.10.1",
|
|
69
69
|
"rimraf": "3.0.2",
|
|
70
|
-
"typescript": "~
|
|
70
|
+
"typescript": "~5.2.2"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": ">=18.0.0"
|
|
74
74
|
},
|
|
75
75
|
"typesVersions": {
|
|
76
76
|
"<4.0": {
|