@aws-sdk/client-dsql 3.928.0 → 3.930.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 +497 -598
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/DSQLClient.js +2 -0
- package/dist-es/commands/CreateClusterCommand.js +3 -9
- package/dist-es/commands/DeleteClusterCommand.js +3 -9
- package/dist-es/commands/DeleteClusterPolicyCommand.js +3 -9
- package/dist-es/commands/GetClusterCommand.js +3 -9
- package/dist-es/commands/GetClusterPolicyCommand.js +3 -9
- package/dist-es/commands/GetVpcEndpointServiceNameCommand.js +3 -9
- package/dist-es/commands/ListClustersCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutClusterPolicyCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateClusterCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +463 -0
- package/dist-types/DSQLClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +53 -0
- package/dist-types/ts3.4/DSQLClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +58 -0
- package/package.json +34 -35
- package/dist-es/protocols/Aws_restJson1.js +0 -504
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -110
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -149
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
|
|
4
|
-
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
|
|
5
|
-
import { DeleteClusterPolicyCommandInput, DeleteClusterPolicyCommandOutput } from "../commands/DeleteClusterPolicyCommand";
|
|
6
|
-
import { GetClusterCommandInput, GetClusterCommandOutput } from "../commands/GetClusterCommand";
|
|
7
|
-
import { GetClusterPolicyCommandInput, GetClusterPolicyCommandOutput } from "../commands/GetClusterPolicyCommand";
|
|
8
|
-
import { GetVpcEndpointServiceNameCommandInput, GetVpcEndpointServiceNameCommandOutput } from "../commands/GetVpcEndpointServiceNameCommand";
|
|
9
|
-
import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
|
|
10
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
11
|
-
import { PutClusterPolicyCommandInput, PutClusterPolicyCommandOutput } from "../commands/PutClusterPolicyCommand";
|
|
12
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
13
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
14
|
-
import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "../commands/UpdateClusterCommand";
|
|
15
|
-
/**
|
|
16
|
-
* serializeAws_restJson1CreateClusterCommand
|
|
17
|
-
*/
|
|
18
|
-
export declare const se_CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
19
|
-
/**
|
|
20
|
-
* serializeAws_restJson1DeleteClusterCommand
|
|
21
|
-
*/
|
|
22
|
-
export declare const se_DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
-
/**
|
|
24
|
-
* serializeAws_restJson1DeleteClusterPolicyCommand
|
|
25
|
-
*/
|
|
26
|
-
export declare const se_DeleteClusterPolicyCommand: (input: DeleteClusterPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
-
/**
|
|
28
|
-
* serializeAws_restJson1GetClusterCommand
|
|
29
|
-
*/
|
|
30
|
-
export declare const se_GetClusterCommand: (input: GetClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
-
/**
|
|
32
|
-
* serializeAws_restJson1GetClusterPolicyCommand
|
|
33
|
-
*/
|
|
34
|
-
export declare const se_GetClusterPolicyCommand: (input: GetClusterPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
-
/**
|
|
36
|
-
* serializeAws_restJson1GetVpcEndpointServiceNameCommand
|
|
37
|
-
*/
|
|
38
|
-
export declare const se_GetVpcEndpointServiceNameCommand: (input: GetVpcEndpointServiceNameCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
-
/**
|
|
40
|
-
* serializeAws_restJson1ListClustersCommand
|
|
41
|
-
*/
|
|
42
|
-
export declare const se_ListClustersCommand: (input: ListClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
-
/**
|
|
44
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
45
|
-
*/
|
|
46
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
|
-
/**
|
|
48
|
-
* serializeAws_restJson1PutClusterPolicyCommand
|
|
49
|
-
*/
|
|
50
|
-
export declare const se_PutClusterPolicyCommand: (input: PutClusterPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
|
-
/**
|
|
52
|
-
* serializeAws_restJson1TagResourceCommand
|
|
53
|
-
*/
|
|
54
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
|
-
/**
|
|
56
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
57
|
-
*/
|
|
58
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
59
|
-
/**
|
|
60
|
-
* serializeAws_restJson1UpdateClusterCommand
|
|
61
|
-
*/
|
|
62
|
-
export declare const se_UpdateClusterCommand: (input: UpdateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
|
-
/**
|
|
64
|
-
* deserializeAws_restJson1CreateClusterCommand
|
|
65
|
-
*/
|
|
66
|
-
export declare const de_CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
|
|
67
|
-
/**
|
|
68
|
-
* deserializeAws_restJson1DeleteClusterCommand
|
|
69
|
-
*/
|
|
70
|
-
export declare const de_DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
|
|
71
|
-
/**
|
|
72
|
-
* deserializeAws_restJson1DeleteClusterPolicyCommand
|
|
73
|
-
*/
|
|
74
|
-
export declare const de_DeleteClusterPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterPolicyCommandOutput>;
|
|
75
|
-
/**
|
|
76
|
-
* deserializeAws_restJson1GetClusterCommand
|
|
77
|
-
*/
|
|
78
|
-
export declare const de_GetClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterCommandOutput>;
|
|
79
|
-
/**
|
|
80
|
-
* deserializeAws_restJson1GetClusterPolicyCommand
|
|
81
|
-
*/
|
|
82
|
-
export declare const de_GetClusterPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetClusterPolicyCommandOutput>;
|
|
83
|
-
/**
|
|
84
|
-
* deserializeAws_restJson1GetVpcEndpointServiceNameCommand
|
|
85
|
-
*/
|
|
86
|
-
export declare const de_GetVpcEndpointServiceNameCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVpcEndpointServiceNameCommandOutput>;
|
|
87
|
-
/**
|
|
88
|
-
* deserializeAws_restJson1ListClustersCommand
|
|
89
|
-
*/
|
|
90
|
-
export declare const de_ListClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListClustersCommandOutput>;
|
|
91
|
-
/**
|
|
92
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
93
|
-
*/
|
|
94
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
95
|
-
/**
|
|
96
|
-
* deserializeAws_restJson1PutClusterPolicyCommand
|
|
97
|
-
*/
|
|
98
|
-
export declare const de_PutClusterPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutClusterPolicyCommandOutput>;
|
|
99
|
-
/**
|
|
100
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
101
|
-
*/
|
|
102
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
103
|
-
/**
|
|
104
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
105
|
-
*/
|
|
106
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
107
|
-
/**
|
|
108
|
-
* deserializeAws_restJson1UpdateClusterCommand
|
|
109
|
-
*/
|
|
110
|
-
export declare const de_UpdateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterCommandOutput>;
|
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateClusterCommandInput,
|
|
8
|
-
CreateClusterCommandOutput,
|
|
9
|
-
} from "../commands/CreateClusterCommand";
|
|
10
|
-
import {
|
|
11
|
-
DeleteClusterCommandInput,
|
|
12
|
-
DeleteClusterCommandOutput,
|
|
13
|
-
} from "../commands/DeleteClusterCommand";
|
|
14
|
-
import {
|
|
15
|
-
DeleteClusterPolicyCommandInput,
|
|
16
|
-
DeleteClusterPolicyCommandOutput,
|
|
17
|
-
} from "../commands/DeleteClusterPolicyCommand";
|
|
18
|
-
import {
|
|
19
|
-
GetClusterCommandInput,
|
|
20
|
-
GetClusterCommandOutput,
|
|
21
|
-
} from "../commands/GetClusterCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetClusterPolicyCommandInput,
|
|
24
|
-
GetClusterPolicyCommandOutput,
|
|
25
|
-
} from "../commands/GetClusterPolicyCommand";
|
|
26
|
-
import {
|
|
27
|
-
GetVpcEndpointServiceNameCommandInput,
|
|
28
|
-
GetVpcEndpointServiceNameCommandOutput,
|
|
29
|
-
} from "../commands/GetVpcEndpointServiceNameCommand";
|
|
30
|
-
import {
|
|
31
|
-
ListClustersCommandInput,
|
|
32
|
-
ListClustersCommandOutput,
|
|
33
|
-
} from "../commands/ListClustersCommand";
|
|
34
|
-
import {
|
|
35
|
-
ListTagsForResourceCommandInput,
|
|
36
|
-
ListTagsForResourceCommandOutput,
|
|
37
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
38
|
-
import {
|
|
39
|
-
PutClusterPolicyCommandInput,
|
|
40
|
-
PutClusterPolicyCommandOutput,
|
|
41
|
-
} from "../commands/PutClusterPolicyCommand";
|
|
42
|
-
import {
|
|
43
|
-
TagResourceCommandInput,
|
|
44
|
-
TagResourceCommandOutput,
|
|
45
|
-
} from "../commands/TagResourceCommand";
|
|
46
|
-
import {
|
|
47
|
-
UntagResourceCommandInput,
|
|
48
|
-
UntagResourceCommandOutput,
|
|
49
|
-
} from "../commands/UntagResourceCommand";
|
|
50
|
-
import {
|
|
51
|
-
UpdateClusterCommandInput,
|
|
52
|
-
UpdateClusterCommandOutput,
|
|
53
|
-
} from "../commands/UpdateClusterCommand";
|
|
54
|
-
export declare const se_CreateClusterCommand: (
|
|
55
|
-
input: CreateClusterCommandInput,
|
|
56
|
-
context: __SerdeContext
|
|
57
|
-
) => Promise<__HttpRequest>;
|
|
58
|
-
export declare const se_DeleteClusterCommand: (
|
|
59
|
-
input: DeleteClusterCommandInput,
|
|
60
|
-
context: __SerdeContext
|
|
61
|
-
) => Promise<__HttpRequest>;
|
|
62
|
-
export declare const se_DeleteClusterPolicyCommand: (
|
|
63
|
-
input: DeleteClusterPolicyCommandInput,
|
|
64
|
-
context: __SerdeContext
|
|
65
|
-
) => Promise<__HttpRequest>;
|
|
66
|
-
export declare const se_GetClusterCommand: (
|
|
67
|
-
input: GetClusterCommandInput,
|
|
68
|
-
context: __SerdeContext
|
|
69
|
-
) => Promise<__HttpRequest>;
|
|
70
|
-
export declare const se_GetClusterPolicyCommand: (
|
|
71
|
-
input: GetClusterPolicyCommandInput,
|
|
72
|
-
context: __SerdeContext
|
|
73
|
-
) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const se_GetVpcEndpointServiceNameCommand: (
|
|
75
|
-
input: GetVpcEndpointServiceNameCommandInput,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const se_ListClustersCommand: (
|
|
79
|
-
input: ListClustersCommandInput,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
83
|
-
input: ListTagsForResourceCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_PutClusterPolicyCommand: (
|
|
87
|
-
input: PutClusterPolicyCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_TagResourceCommand: (
|
|
91
|
-
input: TagResourceCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_UntagResourceCommand: (
|
|
95
|
-
input: UntagResourceCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_UpdateClusterCommand: (
|
|
99
|
-
input: UpdateClusterCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const de_CreateClusterCommand: (
|
|
103
|
-
output: __HttpResponse,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<CreateClusterCommandOutput>;
|
|
106
|
-
export declare const de_DeleteClusterCommand: (
|
|
107
|
-
output: __HttpResponse,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<DeleteClusterCommandOutput>;
|
|
110
|
-
export declare const de_DeleteClusterPolicyCommand: (
|
|
111
|
-
output: __HttpResponse,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<DeleteClusterPolicyCommandOutput>;
|
|
114
|
-
export declare const de_GetClusterCommand: (
|
|
115
|
-
output: __HttpResponse,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<GetClusterCommandOutput>;
|
|
118
|
-
export declare const de_GetClusterPolicyCommand: (
|
|
119
|
-
output: __HttpResponse,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<GetClusterPolicyCommandOutput>;
|
|
122
|
-
export declare const de_GetVpcEndpointServiceNameCommand: (
|
|
123
|
-
output: __HttpResponse,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<GetVpcEndpointServiceNameCommandOutput>;
|
|
126
|
-
export declare const de_ListClustersCommand: (
|
|
127
|
-
output: __HttpResponse,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<ListClustersCommandOutput>;
|
|
130
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
131
|
-
output: __HttpResponse,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
134
|
-
export declare const de_PutClusterPolicyCommand: (
|
|
135
|
-
output: __HttpResponse,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<PutClusterPolicyCommandOutput>;
|
|
138
|
-
export declare const de_TagResourceCommand: (
|
|
139
|
-
output: __HttpResponse,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<TagResourceCommandOutput>;
|
|
142
|
-
export declare const de_UntagResourceCommand: (
|
|
143
|
-
output: __HttpResponse,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
146
|
-
export declare const de_UpdateClusterCommand: (
|
|
147
|
-
output: __HttpResponse,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<UpdateClusterCommandOutput>;
|