@aws-sdk/client-redshift-serverless 3.438.0 → 3.439.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.
Files changed (54) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/RedshiftServerless.js +10 -0
  3. package/dist-cjs/commands/CreateCustomDomainAssociationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteCustomDomainAssociationCommand.js +51 -0
  5. package/dist-cjs/commands/GetCustomDomainAssociationCommand.js +51 -0
  6. package/dist-cjs/commands/ListCustomDomainAssociationsCommand.js +51 -0
  7. package/dist-cjs/commands/UpdateCustomDomainAssociationCommand.js +51 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +16 -16
  10. package/dist-cjs/pagination/ListCustomDomainAssociationsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_json1_1.js +323 -2
  13. package/dist-es/RedshiftServerless.js +10 -0
  14. package/dist-es/commands/CreateCustomDomainAssociationCommand.js +47 -0
  15. package/dist-es/commands/DeleteCustomDomainAssociationCommand.js +47 -0
  16. package/dist-es/commands/GetCustomDomainAssociationCommand.js +47 -0
  17. package/dist-es/commands/ListCustomDomainAssociationsCommand.js +47 -0
  18. package/dist-es/commands/UpdateCustomDomainAssociationCommand.js +47 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +14 -14
  21. package/dist-es/pagination/ListCustomDomainAssociationsPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_json1_1.js +311 -0
  24. package/dist-types/RedshiftServerless.d.ts +35 -0
  25. package/dist-types/RedshiftServerlessClient.d.ts +7 -2
  26. package/dist-types/commands/CreateCustomDomainAssociationCommand.d.ts +96 -0
  27. package/dist-types/commands/CreateWorkgroupCommand.d.ts +3 -0
  28. package/dist-types/commands/DeleteCustomDomainAssociationCommand.d.ts +90 -0
  29. package/dist-types/commands/DeleteWorkgroupCommand.d.ts +3 -0
  30. package/dist-types/commands/GetCredentialsCommand.d.ts +2 -1
  31. package/dist-types/commands/GetCustomDomainAssociationCommand.d.ts +95 -0
  32. package/dist-types/commands/GetWorkgroupCommand.d.ts +3 -0
  33. package/dist-types/commands/ListCustomDomainAssociationsCommand.d.ts +99 -0
  34. package/dist-types/commands/ListWorkgroupsCommand.d.ts +3 -0
  35. package/dist-types/commands/UpdateCustomDomainAssociationCommand.d.ts +96 -0
  36. package/dist-types/commands/UpdateWorkgroupCommand.d.ts +3 -0
  37. package/dist-types/commands/index.d.ts +5 -0
  38. package/dist-types/models/models_0.d.ts +261 -20
  39. package/dist-types/pagination/ListCustomDomainAssociationsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
  42. package/dist-types/ts3.4/RedshiftServerless.d.ts +85 -0
  43. package/dist-types/ts3.4/RedshiftServerlessClient.d.ts +30 -0
  44. package/dist-types/ts3.4/commands/CreateCustomDomainAssociationCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/DeleteCustomDomainAssociationCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/GetCustomDomainAssociationCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/ListCustomDomainAssociationsCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/UpdateCustomDomainAssociationCommand.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +67 -10
  51. package/dist-types/ts3.4/pagination/ListCustomDomainAssociationsPaginator.d.ts +11 -0
  52. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  53. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
  54. package/package.json +1 -1
@@ -7,6 +7,10 @@ import {
7
7
  ConvertRecoveryPointToSnapshotCommandInput,
8
8
  ConvertRecoveryPointToSnapshotCommandOutput,
9
9
  } from "../commands/ConvertRecoveryPointToSnapshotCommand";
10
+ import {
11
+ CreateCustomDomainAssociationCommandInput,
12
+ CreateCustomDomainAssociationCommandOutput,
13
+ } from "../commands/CreateCustomDomainAssociationCommand";
10
14
  import {
11
15
  CreateEndpointAccessCommandInput,
12
16
  CreateEndpointAccessCommandOutput,
@@ -27,6 +31,10 @@ import {
27
31
  CreateWorkgroupCommandInput,
28
32
  CreateWorkgroupCommandOutput,
29
33
  } from "../commands/CreateWorkgroupCommand";
34
+ import {
35
+ DeleteCustomDomainAssociationCommandInput,
36
+ DeleteCustomDomainAssociationCommandOutput,
37
+ } from "../commands/DeleteCustomDomainAssociationCommand";
30
38
  import {
31
39
  DeleteEndpointAccessCommandInput,
32
40
  DeleteEndpointAccessCommandOutput,
@@ -55,6 +63,10 @@ import {
55
63
  GetCredentialsCommandInput,
56
64
  GetCredentialsCommandOutput,
57
65
  } from "../commands/GetCredentialsCommand";
66
+ import {
67
+ GetCustomDomainAssociationCommandInput,
68
+ GetCustomDomainAssociationCommandOutput,
69
+ } from "../commands/GetCustomDomainAssociationCommand";
58
70
  import {
59
71
  GetEndpointAccessCommandInput,
60
72
  GetEndpointAccessCommandOutput,
@@ -87,6 +99,10 @@ import {
87
99
  GetWorkgroupCommandInput,
88
100
  GetWorkgroupCommandOutput,
89
101
  } from "../commands/GetWorkgroupCommand";
102
+ import {
103
+ ListCustomDomainAssociationsCommandInput,
104
+ ListCustomDomainAssociationsCommandOutput,
105
+ } from "../commands/ListCustomDomainAssociationsCommand";
90
106
  import {
91
107
  ListEndpointAccessCommandInput,
92
108
  ListEndpointAccessCommandOutput,
@@ -143,6 +159,10 @@ import {
143
159
  UntagResourceCommandInput,
144
160
  UntagResourceCommandOutput,
145
161
  } from "../commands/UntagResourceCommand";
162
+ import {
163
+ UpdateCustomDomainAssociationCommandInput,
164
+ UpdateCustomDomainAssociationCommandOutput,
165
+ } from "../commands/UpdateCustomDomainAssociationCommand";
146
166
  import {
147
167
  UpdateEndpointAccessCommandInput,
148
168
  UpdateEndpointAccessCommandOutput,
@@ -167,6 +187,10 @@ export declare const se_ConvertRecoveryPointToSnapshotCommand: (
167
187
  input: ConvertRecoveryPointToSnapshotCommandInput,
168
188
  context: __SerdeContext
169
189
  ) => Promise<__HttpRequest>;
190
+ export declare const se_CreateCustomDomainAssociationCommand: (
191
+ input: CreateCustomDomainAssociationCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
170
194
  export declare const se_CreateEndpointAccessCommand: (
171
195
  input: CreateEndpointAccessCommandInput,
172
196
  context: __SerdeContext
@@ -187,6 +211,10 @@ export declare const se_CreateWorkgroupCommand: (
187
211
  input: CreateWorkgroupCommandInput,
188
212
  context: __SerdeContext
189
213
  ) => Promise<__HttpRequest>;
214
+ export declare const se_DeleteCustomDomainAssociationCommand: (
215
+ input: DeleteCustomDomainAssociationCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
190
218
  export declare const se_DeleteEndpointAccessCommand: (
191
219
  input: DeleteEndpointAccessCommandInput,
192
220
  context: __SerdeContext
@@ -215,6 +243,10 @@ export declare const se_GetCredentialsCommand: (
215
243
  input: GetCredentialsCommandInput,
216
244
  context: __SerdeContext
217
245
  ) => Promise<__HttpRequest>;
246
+ export declare const se_GetCustomDomainAssociationCommand: (
247
+ input: GetCustomDomainAssociationCommandInput,
248
+ context: __SerdeContext
249
+ ) => Promise<__HttpRequest>;
218
250
  export declare const se_GetEndpointAccessCommand: (
219
251
  input: GetEndpointAccessCommandInput,
220
252
  context: __SerdeContext
@@ -247,6 +279,10 @@ export declare const se_GetWorkgroupCommand: (
247
279
  input: GetWorkgroupCommandInput,
248
280
  context: __SerdeContext
249
281
  ) => Promise<__HttpRequest>;
282
+ export declare const se_ListCustomDomainAssociationsCommand: (
283
+ input: ListCustomDomainAssociationsCommandInput,
284
+ context: __SerdeContext
285
+ ) => Promise<__HttpRequest>;
250
286
  export declare const se_ListEndpointAccessCommand: (
251
287
  input: ListEndpointAccessCommandInput,
252
288
  context: __SerdeContext
@@ -303,6 +339,10 @@ export declare const se_UntagResourceCommand: (
303
339
  input: UntagResourceCommandInput,
304
340
  context: __SerdeContext
305
341
  ) => Promise<__HttpRequest>;
342
+ export declare const se_UpdateCustomDomainAssociationCommand: (
343
+ input: UpdateCustomDomainAssociationCommandInput,
344
+ context: __SerdeContext
345
+ ) => Promise<__HttpRequest>;
306
346
  export declare const se_UpdateEndpointAccessCommand: (
307
347
  input: UpdateEndpointAccessCommandInput,
308
348
  context: __SerdeContext
@@ -327,6 +367,10 @@ export declare const de_ConvertRecoveryPointToSnapshotCommand: (
327
367
  output: __HttpResponse,
328
368
  context: __SerdeContext
329
369
  ) => Promise<ConvertRecoveryPointToSnapshotCommandOutput>;
370
+ export declare const de_CreateCustomDomainAssociationCommand: (
371
+ output: __HttpResponse,
372
+ context: __SerdeContext
373
+ ) => Promise<CreateCustomDomainAssociationCommandOutput>;
330
374
  export declare const de_CreateEndpointAccessCommand: (
331
375
  output: __HttpResponse,
332
376
  context: __SerdeContext
@@ -347,6 +391,10 @@ export declare const de_CreateWorkgroupCommand: (
347
391
  output: __HttpResponse,
348
392
  context: __SerdeContext
349
393
  ) => Promise<CreateWorkgroupCommandOutput>;
394
+ export declare const de_DeleteCustomDomainAssociationCommand: (
395
+ output: __HttpResponse,
396
+ context: __SerdeContext
397
+ ) => Promise<DeleteCustomDomainAssociationCommandOutput>;
350
398
  export declare const de_DeleteEndpointAccessCommand: (
351
399
  output: __HttpResponse,
352
400
  context: __SerdeContext
@@ -375,6 +423,10 @@ export declare const de_GetCredentialsCommand: (
375
423
  output: __HttpResponse,
376
424
  context: __SerdeContext
377
425
  ) => Promise<GetCredentialsCommandOutput>;
426
+ export declare const de_GetCustomDomainAssociationCommand: (
427
+ output: __HttpResponse,
428
+ context: __SerdeContext
429
+ ) => Promise<GetCustomDomainAssociationCommandOutput>;
378
430
  export declare const de_GetEndpointAccessCommand: (
379
431
  output: __HttpResponse,
380
432
  context: __SerdeContext
@@ -407,6 +459,10 @@ export declare const de_GetWorkgroupCommand: (
407
459
  output: __HttpResponse,
408
460
  context: __SerdeContext
409
461
  ) => Promise<GetWorkgroupCommandOutput>;
462
+ export declare const de_ListCustomDomainAssociationsCommand: (
463
+ output: __HttpResponse,
464
+ context: __SerdeContext
465
+ ) => Promise<ListCustomDomainAssociationsCommandOutput>;
410
466
  export declare const de_ListEndpointAccessCommand: (
411
467
  output: __HttpResponse,
412
468
  context: __SerdeContext
@@ -463,6 +519,10 @@ export declare const de_UntagResourceCommand: (
463
519
  output: __HttpResponse,
464
520
  context: __SerdeContext
465
521
  ) => Promise<UntagResourceCommandOutput>;
522
+ export declare const de_UpdateCustomDomainAssociationCommand: (
523
+ output: __HttpResponse,
524
+ context: __SerdeContext
525
+ ) => Promise<UpdateCustomDomainAssociationCommandOutput>;
466
526
  export declare const de_UpdateEndpointAccessCommand: (
467
527
  output: __HttpResponse,
468
528
  context: __SerdeContext
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.438.0",
4
+ "version": "3.439.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",