@aws-sdk/client-dsql 3.1044.0 → 3.1046.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/README.md +28 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +4 -4
- package/dist-cjs/endpoint/bdd.js +2 -2
- package/dist-cjs/endpoint/endpointResolver.js +4 -4
- package/dist-cjs/index.js +202 -56
- package/dist-cjs/models/DSQLServiceException.js +3 -3
- package/dist-cjs/runtimeConfig.browser.js +12 -14
- package/dist-cjs/runtimeConfig.js +18 -22
- package/dist-cjs/runtimeConfig.shared.js +9 -10
- package/dist-cjs/schemas/schemas_0.js +109 -5
- package/dist-es/DSQL.js +15 -1
- package/dist-es/DSQLClient.js +5 -5
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/CreateClusterCommand.js +2 -2
- package/dist-es/commands/CreateStreamCommand.js +16 -0
- package/dist-es/commands/DeleteClusterCommand.js +2 -2
- package/dist-es/commands/DeleteClusterPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteStreamCommand.js +16 -0
- package/dist-es/commands/GetClusterCommand.js +2 -2
- package/dist-es/commands/GetClusterPolicyCommand.js +2 -2
- package/dist-es/commands/GetStreamCommand.js +16 -0
- package/dist-es/commands/GetVpcEndpointServiceNameCommand.js +2 -2
- package/dist-es/commands/ListClustersCommand.js +2 -2
- package/dist-es/commands/ListStreamsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutClusterPolicyCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateClusterCommand.js +2 -2
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/bdd.js +1 -1
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/DSQLServiceException.js +1 -1
- package/dist-es/models/enums.js +24 -0
- package/dist-es/pagination/ListStreamsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/runtimeConfig.browser.js +4 -6
- package/dist-es/runtimeConfig.js +4 -8
- package/dist-es/runtimeConfig.shared.js +3 -4
- package/dist-es/runtimeExtensions.js +2 -2
- package/dist-es/schemas/schemas_0.js +107 -4
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForClusterActive.js +1 -1
- package/dist-es/waiters/waitForClusterNotExists.js +1 -1
- package/dist-es/waiters/waitForStreamActive.js +31 -0
- package/dist-es/waiters/waitForStreamNotExists.js +25 -0
- package/dist-types/DSQL.d.ts +48 -1
- package/dist-types/DSQLClient.d.ts +11 -7
- package/dist-types/commands/CreateClusterCommand.d.ts +6 -4
- package/dist-types/commands/CreateStreamCommand.d.ts +115 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +6 -4
- package/dist-types/commands/DeleteClusterPolicyCommand.d.ts +6 -4
- package/dist-types/commands/DeleteStreamCommand.d.ts +100 -0
- package/dist-types/commands/GetClusterCommand.d.ts +6 -4
- package/dist-types/commands/GetClusterPolicyCommand.d.ts +6 -4
- package/dist-types/commands/GetStreamCommand.d.ts +111 -0
- package/dist-types/commands/GetVpcEndpointServiceNameCommand.d.ts +6 -4
- package/dist-types/commands/ListClustersCommand.d.ts +6 -4
- package/dist-types/commands/ListStreamsCommand.d.ts +102 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/commands/PutClusterPolicyCommand.d.ts +6 -4
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UpdateClusterCommand.d.ts +6 -4
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/bdd.d.ts +1 -1
- package/dist-types/extensionConfiguration.d.ts +1 -1
- package/dist-types/models/DSQLServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +56 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +330 -1
- package/dist-types/pagination/ListStreamsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/schemas/schemas_0.d.ts +17 -1
- package/dist-types/ts3.4/DSQL.d.ts +94 -1
- package/dist-types/ts3.4/DSQLClient.d.ts +32 -14
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/CreateStreamCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteClusterPolicyCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/DeleteStreamCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/GetClusterCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetClusterPolicyCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/GetStreamCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetVpcEndpointServiceNameCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/ListStreamsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/PutClusterPolicyCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +6 -4
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/models/DSQLServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +30 -0
- package/dist-types/ts3.4/models/errors.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +95 -1
- package/dist-types/ts3.4/pagination/ListStreamsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForClusterActive.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForClusterNotExists.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForStreamActive.d.ts +15 -0
- package/dist-types/ts3.4/waiters/waitForStreamNotExists.d.ts +16 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForClusterActive.d.ts +1 -1
- package/dist-types/waiters/waitForClusterNotExists.d.ts +1 -1
- package/dist-types/waiters/waitForStreamActive.d.ts +15 -0
- package/dist-types/waiters/waitForStreamNotExists.d.ts +16 -0
- package/package.json +13 -35
|
@@ -6,25 +6,19 @@ import {
|
|
|
6
6
|
UserAgentInputConfig,
|
|
7
7
|
UserAgentResolvedConfig,
|
|
8
8
|
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
-
import {
|
|
10
|
-
RegionInputConfig,
|
|
11
|
-
RegionResolvedConfig,
|
|
12
|
-
} from "@smithy/config-resolver";
|
|
13
|
-
import {
|
|
14
|
-
EndpointInputConfig,
|
|
15
|
-
EndpointResolvedConfig,
|
|
16
|
-
} from "@smithy/middleware-endpoint";
|
|
17
|
-
import {
|
|
18
|
-
RetryInputConfig,
|
|
19
|
-
RetryResolvedConfig,
|
|
20
|
-
} from "@smithy/middleware-retry";
|
|
21
|
-
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
9
|
import {
|
|
23
10
|
DefaultsMode as __DefaultsMode,
|
|
24
11
|
SmithyConfiguration as __SmithyConfiguration,
|
|
25
12
|
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
26
13
|
Client as __Client,
|
|
27
|
-
} from "@smithy/
|
|
14
|
+
} from "@smithy/core/client";
|
|
15
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
16
|
+
import {
|
|
17
|
+
EndpointInputConfig,
|
|
18
|
+
EndpointResolvedConfig,
|
|
19
|
+
} from "@smithy/core/endpoints";
|
|
20
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
21
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
28
22
|
import {
|
|
29
23
|
AwsCredentialIdentityProvider,
|
|
30
24
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
@@ -48,6 +42,10 @@ import {
|
|
|
48
42
|
CreateClusterCommandInput,
|
|
49
43
|
CreateClusterCommandOutput,
|
|
50
44
|
} from "./commands/CreateClusterCommand";
|
|
45
|
+
import {
|
|
46
|
+
CreateStreamCommandInput,
|
|
47
|
+
CreateStreamCommandOutput,
|
|
48
|
+
} from "./commands/CreateStreamCommand";
|
|
51
49
|
import {
|
|
52
50
|
DeleteClusterCommandInput,
|
|
53
51
|
DeleteClusterCommandOutput,
|
|
@@ -56,6 +54,10 @@ import {
|
|
|
56
54
|
DeleteClusterPolicyCommandInput,
|
|
57
55
|
DeleteClusterPolicyCommandOutput,
|
|
58
56
|
} from "./commands/DeleteClusterPolicyCommand";
|
|
57
|
+
import {
|
|
58
|
+
DeleteStreamCommandInput,
|
|
59
|
+
DeleteStreamCommandOutput,
|
|
60
|
+
} from "./commands/DeleteStreamCommand";
|
|
59
61
|
import {
|
|
60
62
|
GetClusterCommandInput,
|
|
61
63
|
GetClusterCommandOutput,
|
|
@@ -64,6 +66,10 @@ import {
|
|
|
64
66
|
GetClusterPolicyCommandInput,
|
|
65
67
|
GetClusterPolicyCommandOutput,
|
|
66
68
|
} from "./commands/GetClusterPolicyCommand";
|
|
69
|
+
import {
|
|
70
|
+
GetStreamCommandInput,
|
|
71
|
+
GetStreamCommandOutput,
|
|
72
|
+
} from "./commands/GetStreamCommand";
|
|
67
73
|
import {
|
|
68
74
|
GetVpcEndpointServiceNameCommandInput,
|
|
69
75
|
GetVpcEndpointServiceNameCommandOutput,
|
|
@@ -72,6 +78,10 @@ import {
|
|
|
72
78
|
ListClustersCommandInput,
|
|
73
79
|
ListClustersCommandOutput,
|
|
74
80
|
} from "./commands/ListClustersCommand";
|
|
81
|
+
import {
|
|
82
|
+
ListStreamsCommandInput,
|
|
83
|
+
ListStreamsCommandOutput,
|
|
84
|
+
} from "./commands/ListStreamsCommand";
|
|
75
85
|
import {
|
|
76
86
|
ListTagsForResourceCommandInput,
|
|
77
87
|
ListTagsForResourceCommandOutput,
|
|
@@ -101,12 +111,16 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
101
111
|
export { __Client };
|
|
102
112
|
export type ServiceInputTypes =
|
|
103
113
|
| CreateClusterCommandInput
|
|
114
|
+
| CreateStreamCommandInput
|
|
104
115
|
| DeleteClusterCommandInput
|
|
105
116
|
| DeleteClusterPolicyCommandInput
|
|
117
|
+
| DeleteStreamCommandInput
|
|
106
118
|
| GetClusterCommandInput
|
|
107
119
|
| GetClusterPolicyCommandInput
|
|
120
|
+
| GetStreamCommandInput
|
|
108
121
|
| GetVpcEndpointServiceNameCommandInput
|
|
109
122
|
| ListClustersCommandInput
|
|
123
|
+
| ListStreamsCommandInput
|
|
110
124
|
| ListTagsForResourceCommandInput
|
|
111
125
|
| PutClusterPolicyCommandInput
|
|
112
126
|
| TagResourceCommandInput
|
|
@@ -114,12 +128,16 @@ export type ServiceInputTypes =
|
|
|
114
128
|
| UpdateClusterCommandInput;
|
|
115
129
|
export type ServiceOutputTypes =
|
|
116
130
|
| CreateClusterCommandOutput
|
|
131
|
+
| CreateStreamCommandOutput
|
|
117
132
|
| DeleteClusterCommandOutput
|
|
118
133
|
| DeleteClusterPolicyCommandOutput
|
|
134
|
+
| DeleteStreamCommandOutput
|
|
119
135
|
| GetClusterCommandOutput
|
|
120
136
|
| GetClusterPolicyCommandOutput
|
|
137
|
+
| GetStreamCommandOutput
|
|
121
138
|
| GetVpcEndpointServiceNameCommandOutput
|
|
122
139
|
| ListClustersCommandOutput
|
|
140
|
+
| ListStreamsCommandOutput
|
|
123
141
|
| ListTagsForResourceCommandOutput
|
|
124
142
|
| PutClusterPolicyCommandOutput
|
|
125
143
|
| TagResourceCommandOutput
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -15,7 +15,7 @@ export interface CreateClusterCommandOutput
|
|
|
15
15
|
declare const CreateClusterCommand_base: {
|
|
16
16
|
new (
|
|
17
17
|
input: CreateClusterCommandInput
|
|
18
|
-
): import("@smithy/
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
CreateClusterCommandInput,
|
|
20
20
|
CreateClusterCommandOutput,
|
|
21
21
|
DSQLClientResolvedConfig,
|
|
@@ -24,14 +24,16 @@ declare const CreateClusterCommand_base: {
|
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
26
|
...[input]: [] | [CreateClusterCommandInput]
|
|
27
|
-
): import("@smithy/
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
28
|
CreateClusterCommandInput,
|
|
29
29
|
CreateClusterCommandOutput,
|
|
30
30
|
DSQLClientResolvedConfig,
|
|
31
31
|
ServiceInputTypes,
|
|
32
32
|
ServiceOutputTypes
|
|
33
33
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
35
37
|
};
|
|
36
38
|
export declare class CreateClusterCommand extends CreateClusterCommand_base {
|
|
37
39
|
protected static __types: {
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DSQLClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DSQLClient";
|
|
8
|
+
import { CreateStreamInput, CreateStreamOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateStreamCommandInput extends CreateStreamInput {}
|
|
12
|
+
export interface CreateStreamCommandOutput
|
|
13
|
+
extends CreateStreamOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateStreamCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateStreamCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreateStreamCommandInput,
|
|
20
|
+
CreateStreamCommandOutput,
|
|
21
|
+
DSQLClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: CreateStreamCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
CreateStreamCommandInput,
|
|
29
|
+
CreateStreamCommandOutput,
|
|
30
|
+
DSQLClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class CreateStreamCommand extends CreateStreamCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: CreateStreamInput;
|
|
42
|
+
output: CreateStreamOutput;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: CreateStreamCommandInput;
|
|
46
|
+
output: CreateStreamCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -15,7 +15,7 @@ export interface DeleteClusterCommandOutput
|
|
|
15
15
|
declare const DeleteClusterCommand_base: {
|
|
16
16
|
new (
|
|
17
17
|
input: DeleteClusterCommandInput
|
|
18
|
-
): import("@smithy/
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
DeleteClusterCommandInput,
|
|
20
20
|
DeleteClusterCommandOutput,
|
|
21
21
|
DSQLClientResolvedConfig,
|
|
@@ -24,14 +24,16 @@ declare const DeleteClusterCommand_base: {
|
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
26
|
input: DeleteClusterCommandInput
|
|
27
|
-
): import("@smithy/
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
28
|
DeleteClusterCommandInput,
|
|
29
29
|
DeleteClusterCommandOutput,
|
|
30
30
|
DSQLClientResolvedConfig,
|
|
31
31
|
ServiceInputTypes,
|
|
32
32
|
ServiceOutputTypes
|
|
33
33
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
35
37
|
};
|
|
36
38
|
export declare class DeleteClusterCommand extends DeleteClusterCommand_base {
|
|
37
39
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -19,7 +19,7 @@ export interface DeleteClusterPolicyCommandOutput
|
|
|
19
19
|
declare const DeleteClusterPolicyCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: DeleteClusterPolicyCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
DeleteClusterPolicyCommandInput,
|
|
24
24
|
DeleteClusterPolicyCommandOutput,
|
|
25
25
|
DSQLClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const DeleteClusterPolicyCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: DeleteClusterPolicyCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
DeleteClusterPolicyCommandInput,
|
|
33
33
|
DeleteClusterPolicyCommandOutput,
|
|
34
34
|
DSQLClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class DeleteClusterPolicyCommand extends DeleteClusterPolicyCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DSQLClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DSQLClient";
|
|
8
|
+
import { DeleteStreamInput, DeleteStreamOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteStreamCommandInput extends DeleteStreamInput {}
|
|
12
|
+
export interface DeleteStreamCommandOutput
|
|
13
|
+
extends DeleteStreamOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteStreamCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteStreamCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteStreamCommandInput,
|
|
20
|
+
DeleteStreamCommandOutput,
|
|
21
|
+
DSQLClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteStreamCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
DeleteStreamCommandInput,
|
|
29
|
+
DeleteStreamCommandOutput,
|
|
30
|
+
DSQLClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class DeleteStreamCommand extends DeleteStreamCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: DeleteStreamInput;
|
|
42
|
+
output: DeleteStreamOutput;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: DeleteStreamCommandInput;
|
|
46
|
+
output: DeleteStreamCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -15,7 +15,7 @@ export interface GetClusterCommandOutput
|
|
|
15
15
|
declare const GetClusterCommand_base: {
|
|
16
16
|
new (
|
|
17
17
|
input: GetClusterCommandInput
|
|
18
|
-
): import("@smithy/
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
GetClusterCommandInput,
|
|
20
20
|
GetClusterCommandOutput,
|
|
21
21
|
DSQLClientResolvedConfig,
|
|
@@ -24,14 +24,16 @@ declare const GetClusterCommand_base: {
|
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
26
|
input: GetClusterCommandInput
|
|
27
|
-
): import("@smithy/
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
28
|
GetClusterCommandInput,
|
|
29
29
|
GetClusterCommandOutput,
|
|
30
30
|
DSQLClientResolvedConfig,
|
|
31
31
|
ServiceInputTypes,
|
|
32
32
|
ServiceOutputTypes
|
|
33
33
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
35
37
|
};
|
|
36
38
|
export declare class GetClusterCommand extends GetClusterCommand_base {
|
|
37
39
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -18,7 +18,7 @@ export interface GetClusterPolicyCommandOutput
|
|
|
18
18
|
declare const GetClusterPolicyCommand_base: {
|
|
19
19
|
new (
|
|
20
20
|
input: GetClusterPolicyCommandInput
|
|
21
|
-
): import("@smithy/
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
22
|
GetClusterPolicyCommandInput,
|
|
23
23
|
GetClusterPolicyCommandOutput,
|
|
24
24
|
DSQLClientResolvedConfig,
|
|
@@ -27,14 +27,16 @@ declare const GetClusterPolicyCommand_base: {
|
|
|
27
27
|
>;
|
|
28
28
|
new (
|
|
29
29
|
input: GetClusterPolicyCommandInput
|
|
30
|
-
): import("@smithy/
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
31
|
GetClusterPolicyCommandInput,
|
|
32
32
|
GetClusterPolicyCommandOutput,
|
|
33
33
|
DSQLClientResolvedConfig,
|
|
34
34
|
ServiceInputTypes,
|
|
35
35
|
ServiceOutputTypes
|
|
36
36
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
38
40
|
};
|
|
39
41
|
export declare class GetClusterPolicyCommand extends GetClusterPolicyCommand_base {
|
|
40
42
|
protected static __types: {
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DSQLClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DSQLClient";
|
|
8
|
+
import { GetStreamInput, GetStreamOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetStreamCommandInput extends GetStreamInput {}
|
|
12
|
+
export interface GetStreamCommandOutput
|
|
13
|
+
extends GetStreamOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetStreamCommand_base: {
|
|
16
|
+
new (input: GetStreamCommandInput): import("@smithy/core/client").CommandImpl<
|
|
17
|
+
GetStreamCommandInput,
|
|
18
|
+
GetStreamCommandOutput,
|
|
19
|
+
DSQLClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (input: GetStreamCommandInput): import("@smithy/core/client").CommandImpl<
|
|
24
|
+
GetStreamCommandInput,
|
|
25
|
+
GetStreamCommandOutput,
|
|
26
|
+
DSQLClientResolvedConfig,
|
|
27
|
+
ServiceInputTypes,
|
|
28
|
+
ServiceOutputTypes
|
|
29
|
+
>;
|
|
30
|
+
getEndpointParameterInstructions(): {
|
|
31
|
+
[x: string]: unknown;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
export declare class GetStreamCommand extends GetStreamCommand_base {
|
|
35
|
+
protected static __types: {
|
|
36
|
+
api: {
|
|
37
|
+
input: GetStreamInput;
|
|
38
|
+
output: GetStreamOutput;
|
|
39
|
+
};
|
|
40
|
+
sdk: {
|
|
41
|
+
input: GetStreamCommandInput;
|
|
42
|
+
output: GetStreamCommandOutput;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -19,7 +19,7 @@ export interface GetVpcEndpointServiceNameCommandOutput
|
|
|
19
19
|
declare const GetVpcEndpointServiceNameCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: GetVpcEndpointServiceNameCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
GetVpcEndpointServiceNameCommandInput,
|
|
24
24
|
GetVpcEndpointServiceNameCommandOutput,
|
|
25
25
|
DSQLClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const GetVpcEndpointServiceNameCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: GetVpcEndpointServiceNameCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
GetVpcEndpointServiceNameCommandInput,
|
|
33
33
|
GetVpcEndpointServiceNameCommandOutput,
|
|
34
34
|
DSQLClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class GetVpcEndpointServiceNameCommand extends GetVpcEndpointServiceNameCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -15,7 +15,7 @@ export interface ListClustersCommandOutput
|
|
|
15
15
|
declare const ListClustersCommand_base: {
|
|
16
16
|
new (
|
|
17
17
|
input: ListClustersCommandInput
|
|
18
|
-
): import("@smithy/
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
ListClustersCommandInput,
|
|
20
20
|
ListClustersCommandOutput,
|
|
21
21
|
DSQLClientResolvedConfig,
|
|
@@ -24,14 +24,16 @@ declare const ListClustersCommand_base: {
|
|
|
24
24
|
>;
|
|
25
25
|
new (
|
|
26
26
|
...[input]: [] | [ListClustersCommandInput]
|
|
27
|
-
): import("@smithy/
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
28
|
ListClustersCommandInput,
|
|
29
29
|
ListClustersCommandOutput,
|
|
30
30
|
DSQLClientResolvedConfig,
|
|
31
31
|
ServiceInputTypes,
|
|
32
32
|
ServiceOutputTypes
|
|
33
33
|
>;
|
|
34
|
-
getEndpointParameterInstructions():
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
35
37
|
};
|
|
36
38
|
export declare class ListClustersCommand extends ListClustersCommand_base {
|
|
37
39
|
protected static __types: {
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DSQLClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DSQLClient";
|
|
8
|
+
import { ListStreamsInput, ListStreamsOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListStreamsCommandInput extends ListStreamsInput {}
|
|
12
|
+
export interface ListStreamsCommandOutput
|
|
13
|
+
extends ListStreamsOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListStreamsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListStreamsCommandInput
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
ListStreamsCommandInput,
|
|
20
|
+
ListStreamsCommandOutput,
|
|
21
|
+
DSQLClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: ListStreamsCommandInput
|
|
27
|
+
): import("@smithy/core/client").CommandImpl<
|
|
28
|
+
ListStreamsCommandInput,
|
|
29
|
+
ListStreamsCommandOutput,
|
|
30
|
+
DSQLClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): {
|
|
35
|
+
[x: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
export declare class ListStreamsCommand extends ListStreamsCommand_base {
|
|
39
|
+
protected static __types: {
|
|
40
|
+
api: {
|
|
41
|
+
input: ListStreamsInput;
|
|
42
|
+
output: ListStreamsOutput;
|
|
43
|
+
};
|
|
44
|
+
sdk: {
|
|
45
|
+
input: ListStreamsCommandInput;
|
|
46
|
+
output: ListStreamsCommandOutput;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -19,7 +19,7 @@ export interface ListTagsForResourceCommandOutput
|
|
|
19
19
|
declare const ListTagsForResourceCommand_base: {
|
|
20
20
|
new (
|
|
21
21
|
input: ListTagsForResourceCommandInput
|
|
22
|
-
): import("@smithy/
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
23
|
ListTagsForResourceCommandInput,
|
|
24
24
|
ListTagsForResourceCommandOutput,
|
|
25
25
|
DSQLClientResolvedConfig,
|
|
@@ -28,14 +28,16 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
28
28
|
>;
|
|
29
29
|
new (
|
|
30
30
|
input: ListTagsForResourceCommandInput
|
|
31
|
-
): import("@smithy/
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
32
|
ListTagsForResourceCommandInput,
|
|
33
33
|
ListTagsForResourceCommandOutput,
|
|
34
34
|
DSQLClientResolvedConfig,
|
|
35
35
|
ServiceInputTypes,
|
|
36
36
|
ServiceOutputTypes
|
|
37
37
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
39
41
|
};
|
|
40
42
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
43
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -18,7 +18,7 @@ export interface PutClusterPolicyCommandOutput
|
|
|
18
18
|
declare const PutClusterPolicyCommand_base: {
|
|
19
19
|
new (
|
|
20
20
|
input: PutClusterPolicyCommandInput
|
|
21
|
-
): import("@smithy/
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
22
22
|
PutClusterPolicyCommandInput,
|
|
23
23
|
PutClusterPolicyCommandOutput,
|
|
24
24
|
DSQLClientResolvedConfig,
|
|
@@ -27,14 +27,16 @@ declare const PutClusterPolicyCommand_base: {
|
|
|
27
27
|
>;
|
|
28
28
|
new (
|
|
29
29
|
input: PutClusterPolicyCommandInput
|
|
30
|
-
): import("@smithy/
|
|
30
|
+
): import("@smithy/core/client").CommandImpl<
|
|
31
31
|
PutClusterPolicyCommandInput,
|
|
32
32
|
PutClusterPolicyCommandOutput,
|
|
33
33
|
DSQLClientResolvedConfig,
|
|
34
34
|
ServiceInputTypes,
|
|
35
35
|
ServiceOutputTypes
|
|
36
36
|
>;
|
|
37
|
-
getEndpointParameterInstructions():
|
|
37
|
+
getEndpointParameterInstructions(): {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
38
40
|
};
|
|
39
41
|
export declare class PutClusterPolicyCommand extends PutClusterPolicyCommand_base {
|
|
40
42
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -13,7 +13,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
|
13
13
|
declare const TagResourceCommand_base: {
|
|
14
14
|
new (
|
|
15
15
|
input: TagResourceCommandInput
|
|
16
|
-
): import("@smithy/
|
|
16
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
17
|
TagResourceCommandInput,
|
|
18
18
|
TagResourceCommandOutput,
|
|
19
19
|
DSQLClientResolvedConfig,
|
|
@@ -22,14 +22,16 @@ declare const TagResourceCommand_base: {
|
|
|
22
22
|
>;
|
|
23
23
|
new (
|
|
24
24
|
input: TagResourceCommandInput
|
|
25
|
-
): import("@smithy/
|
|
25
|
+
): import("@smithy/core/client").CommandImpl<
|
|
26
26
|
TagResourceCommandInput,
|
|
27
27
|
TagResourceCommandOutput,
|
|
28
28
|
DSQLClientResolvedConfig,
|
|
29
29
|
ServiceInputTypes,
|
|
30
30
|
ServiceOutputTypes
|
|
31
31
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
32
|
+
getEndpointParameterInstructions(): {
|
|
33
|
+
[x: string]: unknown;
|
|
34
|
+
};
|
|
33
35
|
};
|
|
34
36
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
35
37
|
protected static __types: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import {
|
|
4
4
|
DSQLClientResolvedConfig,
|
|
@@ -13,7 +13,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
|
13
13
|
declare const UntagResourceCommand_base: {
|
|
14
14
|
new (
|
|
15
15
|
input: UntagResourceCommandInput
|
|
16
|
-
): import("@smithy/
|
|
16
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
17
|
UntagResourceCommandInput,
|
|
18
18
|
UntagResourceCommandOutput,
|
|
19
19
|
DSQLClientResolvedConfig,
|
|
@@ -22,14 +22,16 @@ declare const UntagResourceCommand_base: {
|
|
|
22
22
|
>;
|
|
23
23
|
new (
|
|
24
24
|
input: UntagResourceCommandInput
|
|
25
|
-
): import("@smithy/
|
|
25
|
+
): import("@smithy/core/client").CommandImpl<
|
|
26
26
|
UntagResourceCommandInput,
|
|
27
27
|
UntagResourceCommandOutput,
|
|
28
28
|
DSQLClientResolvedConfig,
|
|
29
29
|
ServiceInputTypes,
|
|
30
30
|
ServiceOutputTypes
|
|
31
31
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
32
|
+
getEndpointParameterInstructions(): {
|
|
33
|
+
[x: string]: unknown;
|
|
34
|
+
};
|
|
33
35
|
};
|
|
34
36
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
35
37
|
protected static __types: {
|