@aws-sdk/client-tnb 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/Tnb.d.ts +105 -114
- package/dist-types/ts3.4/TnbClient.d.ts +14 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/CancelSolNetworkOperationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateSolFunctionPackageCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateSolNetworkInstanceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSolNetworkPackageCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteSolFunctionPackageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteSolNetworkInstanceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteSolNetworkPackageCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetSolFunctionInstanceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSolFunctionPackageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSolFunctionPackageContentCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetSolFunctionPackageDescriptorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetSolNetworkInstanceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSolNetworkOperationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSolNetworkPackageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetSolNetworkPackageContentCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetSolNetworkPackageDescriptorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/InstantiateSolNetworkInstanceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListSolFunctionInstancesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSolFunctionPackagesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSolNetworkInstancesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSolNetworkOperationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListSolNetworkPackagesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutSolFunctionPackageContentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutSolNetworkPackageContentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TerminateSolNetworkInstanceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateSolFunctionPackageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSolNetworkInstanceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSolNetworkPackageCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ValidateSolFunctionPackageContentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ValidateSolNetworkPackageContentCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +9 -18
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -5,8 +5,7 @@ import {
|
|
|
5
5
|
GetSolNetworkPackageDescriptorOutput,
|
|
6
6
|
} from "../models/models_0";
|
|
7
7
|
export { __MetadataBearer };
|
|
8
|
-
export interface GetSolNetworkPackageDescriptorCommandInput
|
|
9
|
-
extends GetSolNetworkPackageDescriptorInput {}
|
|
8
|
+
export interface GetSolNetworkPackageDescriptorCommandInput extends GetSolNetworkPackageDescriptorInput {}
|
|
10
9
|
export type GetSolNetworkPackageDescriptorCommandOutputType = Pick<
|
|
11
10
|
GetSolNetworkPackageDescriptorOutput,
|
|
12
11
|
Exclude<keyof GetSolNetworkPackageDescriptorOutput, "nsd">
|
|
@@ -14,11 +13,10 @@ export type GetSolNetworkPackageDescriptorCommandOutputType = Pick<
|
|
|
14
13
|
nsd?: Uint8ArrayBlobAdapter;
|
|
15
14
|
};
|
|
16
15
|
export interface GetSolNetworkPackageDescriptorCommandOutput
|
|
17
|
-
extends GetSolNetworkPackageDescriptorCommandOutputType,
|
|
18
|
-
__MetadataBearer {}
|
|
16
|
+
extends GetSolNetworkPackageDescriptorCommandOutputType, __MetadataBearer {}
|
|
19
17
|
declare const GetSolNetworkPackageDescriptorCommand_base: {
|
|
20
18
|
new (
|
|
21
|
-
input: GetSolNetworkPackageDescriptorCommandInput
|
|
19
|
+
input: GetSolNetworkPackageDescriptorCommandInput,
|
|
22
20
|
): import("@smithy/core/client").CommandImpl<
|
|
23
21
|
GetSolNetworkPackageDescriptorCommandInput,
|
|
24
22
|
GetSolNetworkPackageDescriptorCommandOutput,
|
|
@@ -27,7 +25,7 @@ declare const GetSolNetworkPackageDescriptorCommand_base: {
|
|
|
27
25
|
import("..").ServiceOutputTypes
|
|
28
26
|
>;
|
|
29
27
|
new (
|
|
30
|
-
input: GetSolNetworkPackageDescriptorCommandInput
|
|
28
|
+
input: GetSolNetworkPackageDescriptorCommandInput,
|
|
31
29
|
): import("@smithy/core/client").CommandImpl<
|
|
32
30
|
GetSolNetworkPackageDescriptorCommandInput,
|
|
33
31
|
GetSolNetworkPackageDescriptorCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
InstantiateSolNetworkInstanceOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface InstantiateSolNetworkInstanceCommandInput
|
|
8
|
-
extends InstantiateSolNetworkInstanceInput {}
|
|
7
|
+
export interface InstantiateSolNetworkInstanceCommandInput extends InstantiateSolNetworkInstanceInput {}
|
|
9
8
|
export interface InstantiateSolNetworkInstanceCommandOutput
|
|
10
|
-
extends InstantiateSolNetworkInstanceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends InstantiateSolNetworkInstanceOutput, __MetadataBearer {}
|
|
12
10
|
declare const InstantiateSolNetworkInstanceCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: InstantiateSolNetworkInstanceCommandInput
|
|
12
|
+
input: InstantiateSolNetworkInstanceCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
InstantiateSolNetworkInstanceCommandInput,
|
|
17
15
|
InstantiateSolNetworkInstanceCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const InstantiateSolNetworkInstanceCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: InstantiateSolNetworkInstanceCommandInput
|
|
21
|
+
input: InstantiateSolNetworkInstanceCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
InstantiateSolNetworkInstanceCommandInput,
|
|
26
24
|
InstantiateSolNetworkInstanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSolFunctionInstancesInput,
|
|
4
|
-
ListSolFunctionInstancesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSolFunctionInstancesInput, ListSolFunctionInstancesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSolFunctionInstancesCommandInput
|
|
8
|
-
extends ListSolFunctionInstancesInput {}
|
|
4
|
+
export interface ListSolFunctionInstancesCommandInput extends ListSolFunctionInstancesInput {}
|
|
9
5
|
export interface ListSolFunctionInstancesCommandOutput
|
|
10
|
-
extends ListSolFunctionInstancesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSolFunctionInstancesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListSolFunctionInstancesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSolFunctionInstancesCommandInput
|
|
9
|
+
input: ListSolFunctionInstancesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSolFunctionInstancesCommandInput,
|
|
17
12
|
ListSolFunctionInstancesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSolFunctionPackagesInput,
|
|
4
|
-
ListSolFunctionPackagesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSolFunctionPackagesInput, ListSolFunctionPackagesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSolFunctionPackagesCommandInput
|
|
8
|
-
extends ListSolFunctionPackagesInput {}
|
|
4
|
+
export interface ListSolFunctionPackagesCommandInput extends ListSolFunctionPackagesInput {}
|
|
9
5
|
export interface ListSolFunctionPackagesCommandOutput
|
|
10
|
-
extends ListSolFunctionPackagesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSolFunctionPackagesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListSolFunctionPackagesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSolFunctionPackagesCommandInput
|
|
9
|
+
input: ListSolFunctionPackagesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSolFunctionPackagesCommandInput,
|
|
17
12
|
ListSolFunctionPackagesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSolNetworkInstancesInput,
|
|
4
|
-
ListSolNetworkInstancesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSolNetworkInstancesInput, ListSolNetworkInstancesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSolNetworkInstancesCommandInput
|
|
8
|
-
extends ListSolNetworkInstancesInput {}
|
|
4
|
+
export interface ListSolNetworkInstancesCommandInput extends ListSolNetworkInstancesInput {}
|
|
9
5
|
export interface ListSolNetworkInstancesCommandOutput
|
|
10
|
-
extends ListSolNetworkInstancesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSolNetworkInstancesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListSolNetworkInstancesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSolNetworkInstancesCommandInput
|
|
9
|
+
input: ListSolNetworkInstancesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSolNetworkInstancesCommandInput,
|
|
17
12
|
ListSolNetworkInstancesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSolNetworkOperationsInput,
|
|
4
|
-
ListSolNetworkOperationsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSolNetworkOperationsInput, ListSolNetworkOperationsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSolNetworkOperationsCommandInput
|
|
8
|
-
extends ListSolNetworkOperationsInput {}
|
|
4
|
+
export interface ListSolNetworkOperationsCommandInput extends ListSolNetworkOperationsInput {}
|
|
9
5
|
export interface ListSolNetworkOperationsCommandOutput
|
|
10
|
-
extends ListSolNetworkOperationsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSolNetworkOperationsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListSolNetworkOperationsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSolNetworkOperationsCommandInput
|
|
9
|
+
input: ListSolNetworkOperationsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSolNetworkOperationsCommandInput,
|
|
17
12
|
ListSolNetworkOperationsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListSolNetworkPackagesInput,
|
|
4
|
-
ListSolNetworkPackagesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListSolNetworkPackagesInput, ListSolNetworkPackagesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListSolNetworkPackagesCommandInput
|
|
8
|
-
extends ListSolNetworkPackagesInput {}
|
|
4
|
+
export interface ListSolNetworkPackagesCommandInput extends ListSolNetworkPackagesInput {}
|
|
9
5
|
export interface ListSolNetworkPackagesCommandOutput
|
|
10
|
-
extends ListSolNetworkPackagesOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListSolNetworkPackagesOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListSolNetworkPackagesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListSolNetworkPackagesCommandInput
|
|
9
|
+
input: ListSolNetworkPackagesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListSolNetworkPackagesCommandInput,
|
|
17
12
|
ListSolNetworkPackagesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
BlobPayloadInputTypes,
|
|
3
|
-
MetadataBearer as __MetadataBearer,
|
|
4
|
-
} from "@smithy/types";
|
|
1
|
+
import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
2
|
import {
|
|
6
3
|
PutSolFunctionPackageContentInput,
|
|
7
4
|
PutSolFunctionPackageContentOutput,
|
|
@@ -13,14 +10,12 @@ export type PutSolFunctionPackageContentCommandInputType = Pick<
|
|
|
13
10
|
> & {
|
|
14
11
|
file: BlobPayloadInputTypes;
|
|
15
12
|
};
|
|
16
|
-
export interface PutSolFunctionPackageContentCommandInput
|
|
17
|
-
extends PutSolFunctionPackageContentCommandInputType {}
|
|
13
|
+
export interface PutSolFunctionPackageContentCommandInput extends PutSolFunctionPackageContentCommandInputType {}
|
|
18
14
|
export interface PutSolFunctionPackageContentCommandOutput
|
|
19
|
-
extends PutSolFunctionPackageContentOutput,
|
|
20
|
-
__MetadataBearer {}
|
|
15
|
+
extends PutSolFunctionPackageContentOutput, __MetadataBearer {}
|
|
21
16
|
declare const PutSolFunctionPackageContentCommand_base: {
|
|
22
17
|
new (
|
|
23
|
-
input: PutSolFunctionPackageContentCommandInput
|
|
18
|
+
input: PutSolFunctionPackageContentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutSolFunctionPackageContentCommandInput,
|
|
26
21
|
PutSolFunctionPackageContentCommandOutput,
|
|
@@ -29,7 +24,7 @@ declare const PutSolFunctionPackageContentCommand_base: {
|
|
|
29
24
|
import("..").ServiceOutputTypes
|
|
30
25
|
>;
|
|
31
26
|
new (
|
|
32
|
-
input: PutSolFunctionPackageContentCommandInput
|
|
27
|
+
input: PutSolFunctionPackageContentCommandInput,
|
|
33
28
|
): import("@smithy/core/client").CommandImpl<
|
|
34
29
|
PutSolFunctionPackageContentCommandInput,
|
|
35
30
|
PutSolFunctionPackageContentCommandOutput,
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
BlobPayloadInputTypes,
|
|
3
|
-
MetadataBearer as __MetadataBearer,
|
|
4
|
-
} from "@smithy/types";
|
|
1
|
+
import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
2
|
import {
|
|
6
3
|
PutSolNetworkPackageContentInput,
|
|
7
4
|
PutSolNetworkPackageContentOutput,
|
|
@@ -13,14 +10,12 @@ export type PutSolNetworkPackageContentCommandInputType = Pick<
|
|
|
13
10
|
> & {
|
|
14
11
|
file: BlobPayloadInputTypes;
|
|
15
12
|
};
|
|
16
|
-
export interface PutSolNetworkPackageContentCommandInput
|
|
17
|
-
extends PutSolNetworkPackageContentCommandInputType {}
|
|
13
|
+
export interface PutSolNetworkPackageContentCommandInput extends PutSolNetworkPackageContentCommandInputType {}
|
|
18
14
|
export interface PutSolNetworkPackageContentCommandOutput
|
|
19
|
-
extends PutSolNetworkPackageContentOutput,
|
|
20
|
-
__MetadataBearer {}
|
|
15
|
+
extends PutSolNetworkPackageContentOutput, __MetadataBearer {}
|
|
21
16
|
declare const PutSolNetworkPackageContentCommand_base: {
|
|
22
17
|
new (
|
|
23
|
-
input: PutSolNetworkPackageContentCommandInput
|
|
18
|
+
input: PutSolNetworkPackageContentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PutSolNetworkPackageContentCommandInput,
|
|
26
21
|
PutSolNetworkPackageContentCommandOutput,
|
|
@@ -29,7 +24,7 @@ declare const PutSolNetworkPackageContentCommand_base: {
|
|
|
29
24
|
import("..").ServiceOutputTypes
|
|
30
25
|
>;
|
|
31
26
|
new (
|
|
32
|
-
input: PutSolNetworkPackageContentCommandInput
|
|
27
|
+
input: PutSolNetworkPackageContentCommandInput,
|
|
33
28
|
): import("@smithy/core/client").CommandImpl<
|
|
34
29
|
PutSolNetworkPackageContentCommandInput,
|
|
35
30
|
PutSolNetworkPackageContentCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
TerminateSolNetworkInstanceOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface TerminateSolNetworkInstanceCommandInput
|
|
8
|
-
extends TerminateSolNetworkInstanceInput {}
|
|
7
|
+
export interface TerminateSolNetworkInstanceCommandInput extends TerminateSolNetworkInstanceInput {}
|
|
9
8
|
export interface TerminateSolNetworkInstanceCommandOutput
|
|
10
|
-
extends TerminateSolNetworkInstanceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends TerminateSolNetworkInstanceOutput, __MetadataBearer {}
|
|
12
10
|
declare const TerminateSolNetworkInstanceCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: TerminateSolNetworkInstanceCommandInput
|
|
12
|
+
input: TerminateSolNetworkInstanceCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
TerminateSolNetworkInstanceCommandInput,
|
|
17
15
|
TerminateSolNetworkInstanceCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const TerminateSolNetworkInstanceCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: TerminateSolNetworkInstanceCommandInput
|
|
21
|
+
input: TerminateSolNetworkInstanceCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
TerminateSolNetworkInstanceCommandInput,
|
|
26
24
|
TerminateSolNetworkInstanceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UntagResourceCommandInput extends UntagResourceInput {}
|
|
5
|
-
export interface UntagResourceCommandOutput
|
|
6
|
-
extends UntagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const UntagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UntagResourceCommandInput,
|
|
13
11
|
UntagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UntagResourceCommandInput,
|
|
22
20
|
UntagResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSolFunctionPackageInput,
|
|
4
|
-
UpdateSolFunctionPackageOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSolFunctionPackageInput, UpdateSolFunctionPackageOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSolFunctionPackageCommandInput
|
|
8
|
-
extends UpdateSolFunctionPackageInput {}
|
|
4
|
+
export interface UpdateSolFunctionPackageCommandInput extends UpdateSolFunctionPackageInput {}
|
|
9
5
|
export interface UpdateSolFunctionPackageCommandOutput
|
|
10
|
-
extends UpdateSolFunctionPackageOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateSolFunctionPackageOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateSolFunctionPackageCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateSolFunctionPackageCommandInput
|
|
9
|
+
input: UpdateSolFunctionPackageCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateSolFunctionPackageCommandInput,
|
|
17
12
|
UpdateSolFunctionPackageCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateSolFunctionPackageCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateSolFunctionPackageCommandInput
|
|
18
|
+
input: UpdateSolFunctionPackageCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateSolFunctionPackageCommandInput,
|
|
26
21
|
UpdateSolFunctionPackageCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSolNetworkInstanceInput,
|
|
4
|
-
UpdateSolNetworkInstanceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSolNetworkInstanceInput, UpdateSolNetworkInstanceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSolNetworkInstanceCommandInput
|
|
8
|
-
extends UpdateSolNetworkInstanceInput {}
|
|
4
|
+
export interface UpdateSolNetworkInstanceCommandInput extends UpdateSolNetworkInstanceInput {}
|
|
9
5
|
export interface UpdateSolNetworkInstanceCommandOutput
|
|
10
|
-
extends UpdateSolNetworkInstanceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateSolNetworkInstanceOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateSolNetworkInstanceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateSolNetworkInstanceCommandInput
|
|
9
|
+
input: UpdateSolNetworkInstanceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateSolNetworkInstanceCommandInput,
|
|
17
12
|
UpdateSolNetworkInstanceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateSolNetworkInstanceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateSolNetworkInstanceCommandInput
|
|
18
|
+
input: UpdateSolNetworkInstanceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateSolNetworkInstanceCommandInput,
|
|
26
21
|
UpdateSolNetworkInstanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSolNetworkPackageInput,
|
|
4
|
-
UpdateSolNetworkPackageOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSolNetworkPackageInput, UpdateSolNetworkPackageOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSolNetworkPackageCommandInput
|
|
8
|
-
extends UpdateSolNetworkPackageInput {}
|
|
4
|
+
export interface UpdateSolNetworkPackageCommandInput extends UpdateSolNetworkPackageInput {}
|
|
9
5
|
export interface UpdateSolNetworkPackageCommandOutput
|
|
10
|
-
extends UpdateSolNetworkPackageOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateSolNetworkPackageOutput, __MetadataBearer {}
|
|
12
7
|
declare const UpdateSolNetworkPackageCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateSolNetworkPackageCommandInput
|
|
9
|
+
input: UpdateSolNetworkPackageCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateSolNetworkPackageCommandInput,
|
|
17
12
|
UpdateSolNetworkPackageCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateSolNetworkPackageCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateSolNetworkPackageCommandInput
|
|
18
|
+
input: UpdateSolNetworkPackageCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateSolNetworkPackageCommandInput,
|
|
26
21
|
UpdateSolNetworkPackageCommandOutput,
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
BlobPayloadInputTypes,
|
|
3
|
-
MetadataBearer as __MetadataBearer,
|
|
4
|
-
} from "@smithy/types";
|
|
1
|
+
import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
2
|
import {
|
|
6
3
|
ValidateSolFunctionPackageContentInput,
|
|
7
4
|
ValidateSolFunctionPackageContentOutput,
|
|
@@ -13,14 +10,12 @@ export type ValidateSolFunctionPackageContentCommandInputType = Pick<
|
|
|
13
10
|
> & {
|
|
14
11
|
file: BlobPayloadInputTypes;
|
|
15
12
|
};
|
|
16
|
-
export interface ValidateSolFunctionPackageContentCommandInput
|
|
17
|
-
extends ValidateSolFunctionPackageContentCommandInputType {}
|
|
13
|
+
export interface ValidateSolFunctionPackageContentCommandInput extends ValidateSolFunctionPackageContentCommandInputType {}
|
|
18
14
|
export interface ValidateSolFunctionPackageContentCommandOutput
|
|
19
|
-
extends ValidateSolFunctionPackageContentOutput,
|
|
20
|
-
__MetadataBearer {}
|
|
15
|
+
extends ValidateSolFunctionPackageContentOutput, __MetadataBearer {}
|
|
21
16
|
declare const ValidateSolFunctionPackageContentCommand_base: {
|
|
22
17
|
new (
|
|
23
|
-
input: ValidateSolFunctionPackageContentCommandInput
|
|
18
|
+
input: ValidateSolFunctionPackageContentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ValidateSolFunctionPackageContentCommandInput,
|
|
26
21
|
ValidateSolFunctionPackageContentCommandOutput,
|
|
@@ -29,7 +24,7 @@ declare const ValidateSolFunctionPackageContentCommand_base: {
|
|
|
29
24
|
import("..").ServiceOutputTypes
|
|
30
25
|
>;
|
|
31
26
|
new (
|
|
32
|
-
input: ValidateSolFunctionPackageContentCommandInput
|
|
27
|
+
input: ValidateSolFunctionPackageContentCommandInput,
|
|
33
28
|
): import("@smithy/core/client").CommandImpl<
|
|
34
29
|
ValidateSolFunctionPackageContentCommandInput,
|
|
35
30
|
ValidateSolFunctionPackageContentCommandOutput,
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
BlobPayloadInputTypes,
|
|
3
|
-
MetadataBearer as __MetadataBearer,
|
|
4
|
-
} from "@smithy/types";
|
|
1
|
+
import { BlobPayloadInputTypes, MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
5
2
|
import {
|
|
6
3
|
ValidateSolNetworkPackageContentInput,
|
|
7
4
|
ValidateSolNetworkPackageContentOutput,
|
|
@@ -13,14 +10,12 @@ export type ValidateSolNetworkPackageContentCommandInputType = Pick<
|
|
|
13
10
|
> & {
|
|
14
11
|
file: BlobPayloadInputTypes;
|
|
15
12
|
};
|
|
16
|
-
export interface ValidateSolNetworkPackageContentCommandInput
|
|
17
|
-
extends ValidateSolNetworkPackageContentCommandInputType {}
|
|
13
|
+
export interface ValidateSolNetworkPackageContentCommandInput extends ValidateSolNetworkPackageContentCommandInputType {}
|
|
18
14
|
export interface ValidateSolNetworkPackageContentCommandOutput
|
|
19
|
-
extends ValidateSolNetworkPackageContentOutput,
|
|
20
|
-
__MetadataBearer {}
|
|
15
|
+
extends ValidateSolNetworkPackageContentOutput, __MetadataBearer {}
|
|
21
16
|
declare const ValidateSolNetworkPackageContentCommand_base: {
|
|
22
17
|
new (
|
|
23
|
-
input: ValidateSolNetworkPackageContentCommandInput
|
|
18
|
+
input: ValidateSolNetworkPackageContentCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ValidateSolNetworkPackageContentCommandInput,
|
|
26
21
|
ValidateSolNetworkPackageContentCommandOutput,
|
|
@@ -29,7 +24,7 @@ declare const ValidateSolNetworkPackageContentCommand_base: {
|
|
|
29
24
|
import("..").ServiceOutputTypes
|
|
30
25
|
>;
|
|
31
26
|
new (
|
|
32
|
-
input: ValidateSolNetworkPackageContentCommandInput
|
|
27
|
+
input: ValidateSolNetworkPackageContentCommandInput,
|
|
33
28
|
): import("@smithy/core/client").CommandImpl<
|
|
34
29
|
ValidateSolNetworkPackageContentCommandInput,
|
|
35
30
|
ValidateSolNetworkPackageContentCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface TnbExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -3,14 +3,12 @@ export declare const OnboardingState: {
|
|
|
3
3
|
readonly ERROR: "ERROR";
|
|
4
4
|
readonly ONBOARDED: "ONBOARDED";
|
|
5
5
|
};
|
|
6
|
-
export type OnboardingState =
|
|
7
|
-
(typeof OnboardingState)[keyof typeof OnboardingState];
|
|
6
|
+
export type OnboardingState = (typeof OnboardingState)[keyof typeof OnboardingState];
|
|
8
7
|
export declare const OperationalState: {
|
|
9
8
|
readonly DISABLED: "DISABLED";
|
|
10
9
|
readonly ENABLED: "ENABLED";
|
|
11
10
|
};
|
|
12
|
-
export type OperationalState =
|
|
13
|
-
(typeof OperationalState)[keyof typeof OperationalState];
|
|
11
|
+
export type OperationalState = (typeof OperationalState)[keyof typeof OperationalState];
|
|
14
12
|
export declare const UsageState: {
|
|
15
13
|
readonly IN_USE: "IN_USE";
|
|
16
14
|
readonly NOT_IN_USE: "NOT_IN_USE";
|
|
@@ -21,14 +19,12 @@ export declare const NsdOnboardingState: {
|
|
|
21
19
|
readonly ERROR: "ERROR";
|
|
22
20
|
readonly ONBOARDED: "ONBOARDED";
|
|
23
21
|
};
|
|
24
|
-
export type NsdOnboardingState =
|
|
25
|
-
(typeof NsdOnboardingState)[keyof typeof NsdOnboardingState];
|
|
22
|
+
export type NsdOnboardingState = (typeof NsdOnboardingState)[keyof typeof NsdOnboardingState];
|
|
26
23
|
export declare const NsdOperationalState: {
|
|
27
24
|
readonly DISABLED: "DISABLED";
|
|
28
25
|
readonly ENABLED: "ENABLED";
|
|
29
26
|
};
|
|
30
|
-
export type NsdOperationalState =
|
|
31
|
-
(typeof NsdOperationalState)[keyof typeof NsdOperationalState];
|
|
27
|
+
export type NsdOperationalState = (typeof NsdOperationalState)[keyof typeof NsdOperationalState];
|
|
32
28
|
export declare const NsdUsageState: {
|
|
33
29
|
readonly IN_USE: "IN_USE";
|
|
34
30
|
readonly NOT_IN_USE: "NOT_IN_USE";
|
|
@@ -43,8 +39,7 @@ export declare const VnfOperationalState: {
|
|
|
43
39
|
readonly STARTED: "STARTED";
|
|
44
40
|
readonly STOPPED: "STOPPED";
|
|
45
41
|
};
|
|
46
|
-
export type VnfOperationalState =
|
|
47
|
-
(typeof VnfOperationalState)[keyof typeof VnfOperationalState];
|
|
42
|
+
export type VnfOperationalState = (typeof VnfOperationalState)[keyof typeof VnfOperationalState];
|
|
48
43
|
export declare const VnfInstantiationState: {
|
|
49
44
|
readonly INSTANTIATED: "INSTANTIATED";
|
|
50
45
|
readonly NOT_INSTANTIATED: "NOT_INSTANTIATED";
|
|
@@ -54,8 +49,7 @@ export type VnfInstantiationState =
|
|
|
54
49
|
export declare const PackageContentType: {
|
|
55
50
|
readonly APPLICATION_ZIP: "application/zip";
|
|
56
51
|
};
|
|
57
|
-
export type PackageContentType =
|
|
58
|
-
(typeof PackageContentType)[keyof typeof PackageContentType];
|
|
52
|
+
export type PackageContentType = (typeof PackageContentType)[keyof typeof PackageContentType];
|
|
59
53
|
export declare const NsState: {
|
|
60
54
|
readonly DELETED: "DELETED";
|
|
61
55
|
readonly IMPAIRED: "IMPAIRED";
|
|
@@ -75,8 +69,7 @@ export declare const LcmOperationType: {
|
|
|
75
69
|
readonly TERMINATE: "TERMINATE";
|
|
76
70
|
readonly UPDATE: "UPDATE";
|
|
77
71
|
};
|
|
78
|
-
export type LcmOperationType =
|
|
79
|
-
(typeof LcmOperationType)[keyof typeof LcmOperationType];
|
|
72
|
+
export type LcmOperationType = (typeof LcmOperationType)[keyof typeof LcmOperationType];
|
|
80
73
|
export declare const NsLcmOperationState: {
|
|
81
74
|
readonly CANCELLED: "CANCELLED";
|
|
82
75
|
readonly CANCELLING: "CANCELLING";
|
|
@@ -84,8 +77,7 @@ export declare const NsLcmOperationState: {
|
|
|
84
77
|
readonly FAILED: "FAILED";
|
|
85
78
|
readonly PROCESSING: "PROCESSING";
|
|
86
79
|
};
|
|
87
|
-
export type NsLcmOperationState =
|
|
88
|
-
(typeof NsLcmOperationState)[keyof typeof NsLcmOperationState];
|
|
80
|
+
export type NsLcmOperationState = (typeof NsLcmOperationState)[keyof typeof NsLcmOperationState];
|
|
89
81
|
export declare const TaskStatus: {
|
|
90
82
|
readonly CANCELLED: "CANCELLED";
|
|
91
83
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -100,5 +92,4 @@ export declare const UpdateSolNetworkType: {
|
|
|
100
92
|
readonly MODIFY_VNF_INFORMATION: "MODIFY_VNF_INFORMATION";
|
|
101
93
|
readonly UPDATE_NS: "UPDATE_NS";
|
|
102
94
|
};
|
|
103
|
-
export type UpdateSolNetworkType =
|
|
104
|
-
(typeof UpdateSolNetworkType)[keyof typeof UpdateSolNetworkType];
|
|
95
|
+
export type UpdateSolNetworkType = (typeof UpdateSolNetworkType)[keyof typeof UpdateSolNetworkType];
|