@aws-sdk/client-redshift-serverless 3.312.0 → 3.316.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/RedshiftServerless.js +44 -560
- package/dist-cjs/protocols/Aws_json1_1.js +339 -1052
- package/dist-es/RedshiftServerless.js +44 -560
- package/dist-es/protocols/Aws_json1_1.js +340 -1053
- package/dist-types/RedshiftServerless.d.ts +58 -116
- package/dist-types/ts3.4/RedshiftServerless.d.ts +4 -1
- package/package.json +6 -6
|
@@ -40,320 +40,262 @@ import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./comma
|
|
|
40
40
|
import { UpdateUsageLimitCommandInput, UpdateUsageLimitCommandOutput } from "./commands/UpdateUsageLimitCommand";
|
|
41
41
|
import { UpdateWorkgroupCommandInput, UpdateWorkgroupCommandOutput } from "./commands/UpdateWorkgroupCommand";
|
|
42
42
|
import { RedshiftServerlessClient } from "./RedshiftServerlessClient";
|
|
43
|
-
|
|
44
|
-
* @public
|
|
45
|
-
* <p>This is an interface reference for Amazon Redshift Serverless.
|
|
46
|
-
* It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift Serverless.
|
|
47
|
-
* </p>
|
|
48
|
-
* <p>Amazon Redshift Serverless automatically provisions data warehouse capacity and intelligently scales the
|
|
49
|
-
* underlying resources based on workload demands. Amazon Redshift Serverless adjusts capacity in seconds to deliver consistently high
|
|
50
|
-
* performance and simplified operations for even the most demanding and volatile workloads. Amazon Redshift Serverless lets you
|
|
51
|
-
* focus on using your data to acquire new insights for your business and customers.
|
|
52
|
-
* </p>
|
|
53
|
-
* <p>
|
|
54
|
-
* To learn more about Amazon Redshift Serverless,
|
|
55
|
-
* see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-whatis.html">What is Amazon Redshift Serverless</a>.
|
|
56
|
-
* </p>
|
|
57
|
-
*/
|
|
58
|
-
export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
43
|
+
export interface RedshiftServerless {
|
|
59
44
|
/**
|
|
60
|
-
* @
|
|
61
|
-
* <p>Converts a recovery point to a snapshot. For more information about recovery points and snapshots,
|
|
62
|
-
* see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-snapshots-recovery.html">Working with snapshots and recovery points</a>.</p>
|
|
45
|
+
* @see {@link ConvertRecoveryPointToSnapshotCommand}
|
|
63
46
|
*/
|
|
64
47
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<ConvertRecoveryPointToSnapshotCommandOutput>;
|
|
65
48
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, cb: (err: any, data?: ConvertRecoveryPointToSnapshotCommandOutput) => void): void;
|
|
66
49
|
convertRecoveryPointToSnapshot(args: ConvertRecoveryPointToSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ConvertRecoveryPointToSnapshotCommandOutput) => void): void;
|
|
67
50
|
/**
|
|
68
|
-
* @
|
|
69
|
-
* <p>Creates an Amazon Redshift Serverless managed VPC endpoint.</p>
|
|
51
|
+
* @see {@link CreateEndpointAccessCommand}
|
|
70
52
|
*/
|
|
71
53
|
createEndpointAccess(args: CreateEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<CreateEndpointAccessCommandOutput>;
|
|
72
54
|
createEndpointAccess(args: CreateEndpointAccessCommandInput, cb: (err: any, data?: CreateEndpointAccessCommandOutput) => void): void;
|
|
73
55
|
createEndpointAccess(args: CreateEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEndpointAccessCommandOutput) => void): void;
|
|
74
56
|
/**
|
|
75
|
-
* @
|
|
76
|
-
* <p>Creates a namespace in Amazon Redshift Serverless.</p>
|
|
57
|
+
* @see {@link CreateNamespaceCommand}
|
|
77
58
|
*/
|
|
78
59
|
createNamespace(args: CreateNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<CreateNamespaceCommandOutput>;
|
|
79
60
|
createNamespace(args: CreateNamespaceCommandInput, cb: (err: any, data?: CreateNamespaceCommandOutput) => void): void;
|
|
80
61
|
createNamespace(args: CreateNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNamespaceCommandOutput) => void): void;
|
|
81
62
|
/**
|
|
82
|
-
* @
|
|
83
|
-
* <p>Creates a snapshot of all databases in a namespace.
|
|
84
|
-
* For more information about snapshots, see
|
|
85
|
-
* <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-snapshots-recovery.html">
|
|
86
|
-
* Working with snapshots and recovery points</a>.</p>
|
|
63
|
+
* @see {@link CreateSnapshotCommand}
|
|
87
64
|
*/
|
|
88
65
|
createSnapshot(args: CreateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotCommandOutput>;
|
|
89
66
|
createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
90
67
|
createSnapshot(args: CreateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
|
|
91
68
|
/**
|
|
92
|
-
* @
|
|
93
|
-
* <p>Creates a usage limit for a specified Amazon Redshift Serverless usage type. The usage limit is identified by the returned usage limit identifier.
|
|
94
|
-
* </p>
|
|
69
|
+
* @see {@link CreateUsageLimitCommand}
|
|
95
70
|
*/
|
|
96
71
|
createUsageLimit(args: CreateUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<CreateUsageLimitCommandOutput>;
|
|
97
72
|
createUsageLimit(args: CreateUsageLimitCommandInput, cb: (err: any, data?: CreateUsageLimitCommandOutput) => void): void;
|
|
98
73
|
createUsageLimit(args: CreateUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUsageLimitCommandOutput) => void): void;
|
|
99
74
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>Creates an workgroup in Amazon Redshift Serverless.</p>
|
|
75
|
+
* @see {@link CreateWorkgroupCommand}
|
|
102
76
|
*/
|
|
103
77
|
createWorkgroup(args: CreateWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateWorkgroupCommandOutput>;
|
|
104
78
|
createWorkgroup(args: CreateWorkgroupCommandInput, cb: (err: any, data?: CreateWorkgroupCommandOutput) => void): void;
|
|
105
79
|
createWorkgroup(args: CreateWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateWorkgroupCommandOutput) => void): void;
|
|
106
80
|
/**
|
|
107
|
-
* @
|
|
108
|
-
* <p>Deletes an Amazon Redshift Serverless managed VPC endpoint.</p>
|
|
81
|
+
* @see {@link DeleteEndpointAccessCommand}
|
|
109
82
|
*/
|
|
110
83
|
deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEndpointAccessCommandOutput>;
|
|
111
84
|
deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, cb: (err: any, data?: DeleteEndpointAccessCommandOutput) => void): void;
|
|
112
85
|
deleteEndpointAccess(args: DeleteEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEndpointAccessCommandOutput) => void): void;
|
|
113
86
|
/**
|
|
114
|
-
* @
|
|
115
|
-
* <p>Deletes a namespace from Amazon Redshift Serverless.
|
|
116
|
-
* Before you delete the namespace, you can create a final snapshot that has all of the data within the namespace.</p>
|
|
87
|
+
* @see {@link DeleteNamespaceCommand}
|
|
117
88
|
*/
|
|
118
89
|
deleteNamespace(args: DeleteNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNamespaceCommandOutput>;
|
|
119
90
|
deleteNamespace(args: DeleteNamespaceCommandInput, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
120
91
|
deleteNamespace(args: DeleteNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNamespaceCommandOutput) => void): void;
|
|
121
92
|
/**
|
|
122
|
-
* @
|
|
123
|
-
* <p>Deletes the specified resource policy.</p>
|
|
93
|
+
* @see {@link DeleteResourcePolicyCommand}
|
|
124
94
|
*/
|
|
125
95
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourcePolicyCommandOutput>;
|
|
126
96
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
127
97
|
deleteResourcePolicy(args: DeleteResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void): void;
|
|
128
98
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* <p>Deletes a snapshot from Amazon Redshift Serverless.</p>
|
|
99
|
+
* @see {@link DeleteSnapshotCommand}
|
|
131
100
|
*/
|
|
132
101
|
deleteSnapshot(args: DeleteSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotCommandOutput>;
|
|
133
102
|
deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
134
103
|
deleteSnapshot(args: DeleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
|
|
135
104
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* <p>Deletes a usage limit from Amazon Redshift Serverless.</p>
|
|
105
|
+
* @see {@link DeleteUsageLimitCommand}
|
|
138
106
|
*/
|
|
139
107
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUsageLimitCommandOutput>;
|
|
140
108
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
|
|
141
109
|
deleteUsageLimit(args: DeleteUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUsageLimitCommandOutput) => void): void;
|
|
142
110
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* <p>Deletes a workgroup.</p>
|
|
111
|
+
* @see {@link DeleteWorkgroupCommand}
|
|
145
112
|
*/
|
|
146
113
|
deleteWorkgroup(args: DeleteWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteWorkgroupCommandOutput>;
|
|
147
114
|
deleteWorkgroup(args: DeleteWorkgroupCommandInput, cb: (err: any, data?: DeleteWorkgroupCommandOutput) => void): void;
|
|
148
115
|
deleteWorkgroup(args: DeleteWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWorkgroupCommandOutput) => void): void;
|
|
149
116
|
/**
|
|
150
|
-
* @
|
|
151
|
-
* <p>Returns a database user name and temporary password with
|
|
152
|
-
* temporary authorization to log in to Amazon Redshift Serverless.</p>
|
|
153
|
-
* <p>By default, the temporary credentials expire in 900 seconds.
|
|
154
|
-
* You can optionally specify a duration between 900 seconds (15 minutes) and 3600 seconds (60 minutes).</p>
|
|
155
|
-
*
|
|
156
|
-
* <p>The Identity and Access Management (IAM) user or role that runs
|
|
157
|
-
* GetCredentials must have an IAM policy attached that allows access to all
|
|
158
|
-
* necessary actions and resources.</p>
|
|
159
|
-
*
|
|
160
|
-
* <p>If the <code>DbName</code> parameter is specified, the IAM policy must
|
|
161
|
-
* allow access to the resource dbname for the specified database name.</p>
|
|
117
|
+
* @see {@link GetCredentialsCommand}
|
|
162
118
|
*/
|
|
163
119
|
getCredentials(args: GetCredentialsCommandInput, options?: __HttpHandlerOptions): Promise<GetCredentialsCommandOutput>;
|
|
164
120
|
getCredentials(args: GetCredentialsCommandInput, cb: (err: any, data?: GetCredentialsCommandOutput) => void): void;
|
|
165
121
|
getCredentials(args: GetCredentialsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCredentialsCommandOutput) => void): void;
|
|
166
122
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>Returns information, such as the name, about a VPC endpoint.</p>
|
|
123
|
+
* @see {@link GetEndpointAccessCommand}
|
|
169
124
|
*/
|
|
170
125
|
getEndpointAccess(args: GetEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<GetEndpointAccessCommandOutput>;
|
|
171
126
|
getEndpointAccess(args: GetEndpointAccessCommandInput, cb: (err: any, data?: GetEndpointAccessCommandOutput) => void): void;
|
|
172
127
|
getEndpointAccess(args: GetEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEndpointAccessCommandOutput) => void): void;
|
|
173
128
|
/**
|
|
174
|
-
* @
|
|
175
|
-
* <p>Returns information about a namespace in Amazon Redshift Serverless.</p>
|
|
129
|
+
* @see {@link GetNamespaceCommand}
|
|
176
130
|
*/
|
|
177
131
|
getNamespace(args: GetNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<GetNamespaceCommandOutput>;
|
|
178
132
|
getNamespace(args: GetNamespaceCommandInput, cb: (err: any, data?: GetNamespaceCommandOutput) => void): void;
|
|
179
133
|
getNamespace(args: GetNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNamespaceCommandOutput) => void): void;
|
|
180
134
|
/**
|
|
181
|
-
* @
|
|
182
|
-
* <p>Returns information about a recovery point.</p>
|
|
135
|
+
* @see {@link GetRecoveryPointCommand}
|
|
183
136
|
*/
|
|
184
137
|
getRecoveryPoint(args: GetRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<GetRecoveryPointCommandOutput>;
|
|
185
138
|
getRecoveryPoint(args: GetRecoveryPointCommandInput, cb: (err: any, data?: GetRecoveryPointCommandOutput) => void): void;
|
|
186
139
|
getRecoveryPoint(args: GetRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecoveryPointCommandOutput) => void): void;
|
|
187
140
|
/**
|
|
188
|
-
* @
|
|
189
|
-
* <p>Returns a resource policy.</p>
|
|
141
|
+
* @see {@link GetResourcePolicyCommand}
|
|
190
142
|
*/
|
|
191
143
|
getResourcePolicy(args: GetResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetResourcePolicyCommandOutput>;
|
|
192
144
|
getResourcePolicy(args: GetResourcePolicyCommandInput, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
193
145
|
getResourcePolicy(args: GetResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourcePolicyCommandOutput) => void): void;
|
|
194
146
|
/**
|
|
195
|
-
* @
|
|
196
|
-
* <p>Returns information about a specific snapshot.</p>
|
|
147
|
+
* @see {@link GetSnapshotCommand}
|
|
197
148
|
*/
|
|
198
149
|
getSnapshot(args: GetSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<GetSnapshotCommandOutput>;
|
|
199
150
|
getSnapshot(args: GetSnapshotCommandInput, cb: (err: any, data?: GetSnapshotCommandOutput) => void): void;
|
|
200
151
|
getSnapshot(args: GetSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSnapshotCommandOutput) => void): void;
|
|
201
152
|
/**
|
|
202
|
-
* @
|
|
203
|
-
* <p>Returns information about a <code>TableRestoreStatus</code> object.</p>
|
|
153
|
+
* @see {@link GetTableRestoreStatusCommand}
|
|
204
154
|
*/
|
|
205
155
|
getTableRestoreStatus(args: GetTableRestoreStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetTableRestoreStatusCommandOutput>;
|
|
206
156
|
getTableRestoreStatus(args: GetTableRestoreStatusCommandInput, cb: (err: any, data?: GetTableRestoreStatusCommandOutput) => void): void;
|
|
207
157
|
getTableRestoreStatus(args: GetTableRestoreStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableRestoreStatusCommandOutput) => void): void;
|
|
208
158
|
/**
|
|
209
|
-
* @
|
|
210
|
-
* <p>Returns information about a usage limit.</p>
|
|
159
|
+
* @see {@link GetUsageLimitCommand}
|
|
211
160
|
*/
|
|
212
161
|
getUsageLimit(args: GetUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<GetUsageLimitCommandOutput>;
|
|
213
162
|
getUsageLimit(args: GetUsageLimitCommandInput, cb: (err: any, data?: GetUsageLimitCommandOutput) => void): void;
|
|
214
163
|
getUsageLimit(args: GetUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUsageLimitCommandOutput) => void): void;
|
|
215
164
|
/**
|
|
216
|
-
* @
|
|
217
|
-
* <p>Returns information about a specific workgroup.</p>
|
|
165
|
+
* @see {@link GetWorkgroupCommand}
|
|
218
166
|
*/
|
|
219
167
|
getWorkgroup(args: GetWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<GetWorkgroupCommandOutput>;
|
|
220
168
|
getWorkgroup(args: GetWorkgroupCommandInput, cb: (err: any, data?: GetWorkgroupCommandOutput) => void): void;
|
|
221
169
|
getWorkgroup(args: GetWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetWorkgroupCommandOutput) => void): void;
|
|
222
170
|
/**
|
|
223
|
-
* @
|
|
224
|
-
* <p>Returns an array of <code>EndpointAccess</code> objects and relevant information.</p>
|
|
171
|
+
* @see {@link ListEndpointAccessCommand}
|
|
225
172
|
*/
|
|
226
173
|
listEndpointAccess(args: ListEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<ListEndpointAccessCommandOutput>;
|
|
227
174
|
listEndpointAccess(args: ListEndpointAccessCommandInput, cb: (err: any, data?: ListEndpointAccessCommandOutput) => void): void;
|
|
228
175
|
listEndpointAccess(args: ListEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEndpointAccessCommandOutput) => void): void;
|
|
229
176
|
/**
|
|
230
|
-
* @
|
|
231
|
-
* <p>Returns information about a list of specified namespaces.</p>
|
|
177
|
+
* @see {@link ListNamespacesCommand}
|
|
232
178
|
*/
|
|
233
179
|
listNamespaces(args: ListNamespacesCommandInput, options?: __HttpHandlerOptions): Promise<ListNamespacesCommandOutput>;
|
|
234
180
|
listNamespaces(args: ListNamespacesCommandInput, cb: (err: any, data?: ListNamespacesCommandOutput) => void): void;
|
|
235
181
|
listNamespaces(args: ListNamespacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNamespacesCommandOutput) => void): void;
|
|
236
182
|
/**
|
|
237
|
-
* @
|
|
238
|
-
* <p>Returns an array of recovery points.</p>
|
|
183
|
+
* @see {@link ListRecoveryPointsCommand}
|
|
239
184
|
*/
|
|
240
185
|
listRecoveryPoints(args: ListRecoveryPointsCommandInput, options?: __HttpHandlerOptions): Promise<ListRecoveryPointsCommandOutput>;
|
|
241
186
|
listRecoveryPoints(args: ListRecoveryPointsCommandInput, cb: (err: any, data?: ListRecoveryPointsCommandOutput) => void): void;
|
|
242
187
|
listRecoveryPoints(args: ListRecoveryPointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecoveryPointsCommandOutput) => void): void;
|
|
243
188
|
/**
|
|
244
|
-
* @
|
|
245
|
-
* <p>Returns a list of snapshots.</p>
|
|
189
|
+
* @see {@link ListSnapshotsCommand}
|
|
246
190
|
*/
|
|
247
191
|
listSnapshots(args: ListSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<ListSnapshotsCommandOutput>;
|
|
248
192
|
listSnapshots(args: ListSnapshotsCommandInput, cb: (err: any, data?: ListSnapshotsCommandOutput) => void): void;
|
|
249
193
|
listSnapshots(args: ListSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSnapshotsCommandOutput) => void): void;
|
|
250
194
|
/**
|
|
251
|
-
* @
|
|
252
|
-
* <p>Returns information about an array of <code>TableRestoreStatus</code> objects.</p>
|
|
195
|
+
* @see {@link ListTableRestoreStatusCommand}
|
|
253
196
|
*/
|
|
254
197
|
listTableRestoreStatus(args: ListTableRestoreStatusCommandInput, options?: __HttpHandlerOptions): Promise<ListTableRestoreStatusCommandOutput>;
|
|
255
198
|
listTableRestoreStatus(args: ListTableRestoreStatusCommandInput, cb: (err: any, data?: ListTableRestoreStatusCommandOutput) => void): void;
|
|
256
199
|
listTableRestoreStatus(args: ListTableRestoreStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTableRestoreStatusCommandOutput) => void): void;
|
|
257
200
|
/**
|
|
258
|
-
* @
|
|
259
|
-
* <p>Lists the tags assigned to a resource.</p>
|
|
201
|
+
* @see {@link ListTagsForResourceCommand}
|
|
260
202
|
*/
|
|
261
203
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
262
204
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
263
205
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
264
206
|
/**
|
|
265
|
-
* @
|
|
266
|
-
* <p>Lists all usage limits within Amazon Redshift Serverless.</p>
|
|
207
|
+
* @see {@link ListUsageLimitsCommand}
|
|
267
208
|
*/
|
|
268
209
|
listUsageLimits(args: ListUsageLimitsCommandInput, options?: __HttpHandlerOptions): Promise<ListUsageLimitsCommandOutput>;
|
|
269
210
|
listUsageLimits(args: ListUsageLimitsCommandInput, cb: (err: any, data?: ListUsageLimitsCommandOutput) => void): void;
|
|
270
211
|
listUsageLimits(args: ListUsageLimitsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUsageLimitsCommandOutput) => void): void;
|
|
271
212
|
/**
|
|
272
|
-
* @
|
|
273
|
-
* <p>Returns information about a list of specified workgroups.</p>
|
|
213
|
+
* @see {@link ListWorkgroupsCommand}
|
|
274
214
|
*/
|
|
275
215
|
listWorkgroups(args: ListWorkgroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListWorkgroupsCommandOutput>;
|
|
276
216
|
listWorkgroups(args: ListWorkgroupsCommandInput, cb: (err: any, data?: ListWorkgroupsCommandOutput) => void): void;
|
|
277
217
|
listWorkgroups(args: ListWorkgroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWorkgroupsCommandOutput) => void): void;
|
|
278
218
|
/**
|
|
279
|
-
* @
|
|
280
|
-
* <p>Creates or updates a resource policy. Currently, you can use policies to share snapshots across Amazon Web Services accounts.</p>
|
|
219
|
+
* @see {@link PutResourcePolicyCommand}
|
|
281
220
|
*/
|
|
282
221
|
putResourcePolicy(args: PutResourcePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutResourcePolicyCommandOutput>;
|
|
283
222
|
putResourcePolicy(args: PutResourcePolicyCommandInput, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
284
223
|
putResourcePolicy(args: PutResourcePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutResourcePolicyCommandOutput) => void): void;
|
|
285
224
|
/**
|
|
286
|
-
* @
|
|
287
|
-
* <p>Restore the data from a recovery point.</p>
|
|
225
|
+
* @see {@link RestoreFromRecoveryPointCommand}
|
|
288
226
|
*/
|
|
289
227
|
restoreFromRecoveryPoint(args: RestoreFromRecoveryPointCommandInput, options?: __HttpHandlerOptions): Promise<RestoreFromRecoveryPointCommandOutput>;
|
|
290
228
|
restoreFromRecoveryPoint(args: RestoreFromRecoveryPointCommandInput, cb: (err: any, data?: RestoreFromRecoveryPointCommandOutput) => void): void;
|
|
291
229
|
restoreFromRecoveryPoint(args: RestoreFromRecoveryPointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreFromRecoveryPointCommandOutput) => void): void;
|
|
292
230
|
/**
|
|
293
|
-
* @
|
|
294
|
-
* <p>Restores a namespace from a snapshot.</p>
|
|
231
|
+
* @see {@link RestoreFromSnapshotCommand}
|
|
295
232
|
*/
|
|
296
233
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreFromSnapshotCommandOutput>;
|
|
297
234
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
298
235
|
restoreFromSnapshot(args: RestoreFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreFromSnapshotCommandOutput) => void): void;
|
|
299
236
|
/**
|
|
300
|
-
* @
|
|
301
|
-
* <p>Restores a table from a snapshot to your Amazon Redshift Serverless instance. You can't use this operation to
|
|
302
|
-
* restore tables with <a href="https://docs.aws.amazon.com/redshift/latest/dg/t_Sorting_data.html#t_Sorting_data-interleaved">interleaved sort keys</a>.</p>
|
|
237
|
+
* @see {@link RestoreTableFromSnapshotCommand}
|
|
303
238
|
*/
|
|
304
239
|
restoreTableFromSnapshot(args: RestoreTableFromSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreTableFromSnapshotCommandOutput>;
|
|
305
240
|
restoreTableFromSnapshot(args: RestoreTableFromSnapshotCommandInput, cb: (err: any, data?: RestoreTableFromSnapshotCommandOutput) => void): void;
|
|
306
241
|
restoreTableFromSnapshot(args: RestoreTableFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreTableFromSnapshotCommandOutput) => void): void;
|
|
307
242
|
/**
|
|
308
|
-
* @
|
|
309
|
-
* <p>Assigns one or more tags to a resource.</p>
|
|
243
|
+
* @see {@link TagResourceCommand}
|
|
310
244
|
*/
|
|
311
245
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
312
246
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
313
247
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
314
248
|
/**
|
|
315
|
-
* @
|
|
316
|
-
* <p>Removes a tag or set of tags from a resource.</p>
|
|
249
|
+
* @see {@link UntagResourceCommand}
|
|
317
250
|
*/
|
|
318
251
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
319
252
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
320
253
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
321
254
|
/**
|
|
322
|
-
* @
|
|
323
|
-
* <p>Updates an Amazon Redshift Serverless managed endpoint.</p>
|
|
255
|
+
* @see {@link UpdateEndpointAccessCommand}
|
|
324
256
|
*/
|
|
325
257
|
updateEndpointAccess(args: UpdateEndpointAccessCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEndpointAccessCommandOutput>;
|
|
326
258
|
updateEndpointAccess(args: UpdateEndpointAccessCommandInput, cb: (err: any, data?: UpdateEndpointAccessCommandOutput) => void): void;
|
|
327
259
|
updateEndpointAccess(args: UpdateEndpointAccessCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEndpointAccessCommandOutput) => void): void;
|
|
328
260
|
/**
|
|
329
|
-
* @
|
|
330
|
-
* <p>Updates a namespace with the specified settings. Unless required, you can't update multiple parameters in one request. For example,
|
|
331
|
-
* you must specify both <code>adminUsername</code> and <code>adminUserPassword</code> to update either field, but you can't update both <code>kmsKeyId</code>
|
|
332
|
-
* and <code>logExports</code> in a single request.</p>
|
|
261
|
+
* @see {@link UpdateNamespaceCommand}
|
|
333
262
|
*/
|
|
334
263
|
updateNamespace(args: UpdateNamespaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNamespaceCommandOutput>;
|
|
335
264
|
updateNamespace(args: UpdateNamespaceCommandInput, cb: (err: any, data?: UpdateNamespaceCommandOutput) => void): void;
|
|
336
265
|
updateNamespace(args: UpdateNamespaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNamespaceCommandOutput) => void): void;
|
|
337
266
|
/**
|
|
338
|
-
* @
|
|
339
|
-
* <p>Updates a snapshot.</p>
|
|
267
|
+
* @see {@link UpdateSnapshotCommand}
|
|
340
268
|
*/
|
|
341
269
|
updateSnapshot(args: UpdateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSnapshotCommandOutput>;
|
|
342
270
|
updateSnapshot(args: UpdateSnapshotCommandInput, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
|
|
343
271
|
updateSnapshot(args: UpdateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
|
|
344
272
|
/**
|
|
345
|
-
* @
|
|
346
|
-
* <p>Update a usage limit in Amazon Redshift Serverless. You can't update the usage type or period of a usage limit.</p>
|
|
273
|
+
* @see {@link UpdateUsageLimitCommand}
|
|
347
274
|
*/
|
|
348
275
|
updateUsageLimit(args: UpdateUsageLimitCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUsageLimitCommandOutput>;
|
|
349
276
|
updateUsageLimit(args: UpdateUsageLimitCommandInput, cb: (err: any, data?: UpdateUsageLimitCommandOutput) => void): void;
|
|
350
277
|
updateUsageLimit(args: UpdateUsageLimitCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUsageLimitCommandOutput) => void): void;
|
|
351
278
|
/**
|
|
352
|
-
* @
|
|
353
|
-
* <p>Updates a workgroup with the specified configuration settings. You can't update multiple parameters in one request. For example,
|
|
354
|
-
* you can update <code>baseCapacity</code> or <code>port</code> in a single request, but you can't update both in the same request.</p>
|
|
279
|
+
* @see {@link UpdateWorkgroupCommand}
|
|
355
280
|
*/
|
|
356
281
|
updateWorkgroup(args: UpdateWorkgroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateWorkgroupCommandOutput>;
|
|
357
282
|
updateWorkgroup(args: UpdateWorkgroupCommandInput, cb: (err: any, data?: UpdateWorkgroupCommandOutput) => void): void;
|
|
358
283
|
updateWorkgroup(args: UpdateWorkgroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateWorkgroupCommandOutput) => void): void;
|
|
359
284
|
}
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
* <p>This is an interface reference for Amazon Redshift Serverless.
|
|
288
|
+
* It contains documentation for one of the programming or command line interfaces you can use to manage Amazon Redshift Serverless.
|
|
289
|
+
* </p>
|
|
290
|
+
* <p>Amazon Redshift Serverless automatically provisions data warehouse capacity and intelligently scales the
|
|
291
|
+
* underlying resources based on workload demands. Amazon Redshift Serverless adjusts capacity in seconds to deliver consistently high
|
|
292
|
+
* performance and simplified operations for even the most demanding and volatile workloads. Amazon Redshift Serverless lets you
|
|
293
|
+
* focus on using your data to acquire new insights for your business and customers.
|
|
294
|
+
* </p>
|
|
295
|
+
* <p>
|
|
296
|
+
* To learn more about Amazon Redshift Serverless,
|
|
297
|
+
* see <a href="https://docs.aws.amazon.com/redshift/latest/mgmt/serverless-whatis.html">What is Amazon Redshift Serverless</a>.
|
|
298
|
+
* </p>
|
|
299
|
+
*/
|
|
300
|
+
export declare class RedshiftServerless extends RedshiftServerlessClient implements RedshiftServerless {
|
|
301
|
+
}
|
|
@@ -160,7 +160,7 @@ import {
|
|
|
160
160
|
UpdateWorkgroupCommandOutput,
|
|
161
161
|
} from "./commands/UpdateWorkgroupCommand";
|
|
162
162
|
import { RedshiftServerlessClient } from "./RedshiftServerlessClient";
|
|
163
|
-
export
|
|
163
|
+
export interface RedshiftServerless {
|
|
164
164
|
convertRecoveryPointToSnapshot(
|
|
165
165
|
args: ConvertRecoveryPointToSnapshotCommandInput,
|
|
166
166
|
options?: __HttpHandlerOptions
|
|
@@ -682,3 +682,6 @@ export declare class RedshiftServerless extends RedshiftServerlessClient {
|
|
|
682
682
|
cb: (err: any, data?: UpdateWorkgroupCommandOutput) => void
|
|
683
683
|
): void;
|
|
684
684
|
}
|
|
685
|
+
export declare class RedshiftServerless
|
|
686
|
+
extends RedshiftServerlessClient
|
|
687
|
+
implements RedshiftServerless {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-redshift-serverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Redshift Serverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.316.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.316.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.316.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -40,14 +40,14 @@
|
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.310.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|