@aws-sdk/client-tnb 3.296.0 → 3.297.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-types/Tnb.d.ts +34 -0
- package/dist-types/TnbClient.d.ts +24 -4
- package/dist-types/commands/CancelSolNetworkOperationCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/GetSolFunctionPackageDescriptorCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkOperationCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/GetSolNetworkPackageDescriptorCommand.d.ts +16 -0
- package/dist-types/commands/InstantiateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/ListSolFunctionInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolFunctionPackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListSolNetworkPackagesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/PutSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/TerminateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolFunctionPackageCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolNetworkInstanceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSolNetworkPackageCommand.d.ts +16 -0
- package/dist-types/commands/ValidateSolFunctionPackageContentCommand.d.ts +16 -0
- package/dist-types/commands/ValidateSolNetworkPackageContentCommand.d.ts +16 -0
- package/dist-types/models/TnbServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +268 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListSolFunctionInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolFunctionPackagesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSolNetworkPackagesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSolFunctionInstancesCommandInput, ListSolFunctionInstancesCommandOutput } from "../commands/ListSolFunctionInstancesCommand";
|
|
3
3
|
import { TnbPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSolFunctionInstances(config: TnbPaginationConfiguration, input: ListSolFunctionInstancesCommandInput, ...additionalArguments: any): Paginator<ListSolFunctionInstancesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSolFunctionPackagesCommandInput, ListSolFunctionPackagesCommandOutput } from "../commands/ListSolFunctionPackagesCommand";
|
|
3
3
|
import { TnbPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSolFunctionPackages(config: TnbPaginationConfiguration, input: ListSolFunctionPackagesCommandInput, ...additionalArguments: any): Paginator<ListSolFunctionPackagesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSolNetworkInstancesCommandInput, ListSolNetworkInstancesCommandOutput } from "../commands/ListSolNetworkInstancesCommand";
|
|
3
3
|
import { TnbPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSolNetworkInstances(config: TnbPaginationConfiguration, input: ListSolNetworkInstancesCommandInput, ...additionalArguments: any): Paginator<ListSolNetworkInstancesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSolNetworkOperationsCommandInput, ListSolNetworkOperationsCommandOutput } from "../commands/ListSolNetworkOperationsCommand";
|
|
3
3
|
import { TnbPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSolNetworkOperations(config: TnbPaginationConfiguration, input: ListSolNetworkOperationsCommandInput, ...additionalArguments: any): Paginator<ListSolNetworkOperationsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListSolNetworkPackagesCommandInput, ListSolNetworkPackagesCommandOutput } from "../commands/ListSolNetworkPackagesCommand";
|
|
3
3
|
import { TnbPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListSolNetworkPackages(config: TnbPaginationConfiguration, input: ListSolNetworkPackagesCommandInput, ...additionalArguments: any): Paginator<ListSolNetworkPackagesCommandOutput>;
|
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.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|