@aws-sdk/client-databrew 3.42.0 → 3.43.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 (48) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/DataBrew.js +75 -0
  3. package/dist-cjs/commands/CreateRulesetCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteRulesetCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeRulesetCommand.js +36 -0
  6. package/dist-cjs/commands/ListRulesetsCommand.js +36 -0
  7. package/dist-cjs/commands/UpdateRulesetCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +130 -3
  10. package/dist-cjs/pagination/ListRulesetsPaginator.js +35 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +727 -4
  13. package/dist-es/DataBrew.js +75 -0
  14. package/dist-es/commands/CreateRulesetCommand.js +39 -0
  15. package/dist-es/commands/DeleteRulesetCommand.js +39 -0
  16. package/dist-es/commands/DescribeRulesetCommand.js +39 -0
  17. package/dist-es/commands/ListRulesetsCommand.js +39 -0
  18. package/dist-es/commands/UpdateRulesetCommand.js +39 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +92 -2
  21. package/dist-es/pagination/ListRulesetsPaginator.js +74 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +818 -42
  24. package/dist-types/DataBrew.d.ts +37 -0
  25. package/dist-types/DataBrewClient.d.ts +7 -2
  26. package/dist-types/commands/CreateRulesetCommand.d.ts +36 -0
  27. package/dist-types/commands/DeleteRulesetCommand.d.ts +35 -0
  28. package/dist-types/commands/DescribeRulesetCommand.d.ts +35 -0
  29. package/dist-types/commands/ListRulesetsCommand.d.ts +36 -0
  30. package/dist-types/commands/UpdateRulesetCommand.d.ts +35 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/models/models_0.d.ts +577 -17
  33. package/dist-types/pagination/ListRulesetsPaginator.d.ts +4 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +15 -0
  36. package/dist-types/ts3.4/DataBrew.d.ts +25 -0
  37. package/dist-types/ts3.4/DataBrewClient.d.ts +7 -2
  38. package/dist-types/ts3.4/commands/CreateRulesetCommand.d.ts +17 -0
  39. package/dist-types/ts3.4/commands/DeleteRulesetCommand.d.ts +17 -0
  40. package/dist-types/ts3.4/commands/DescribeRulesetCommand.d.ts +17 -0
  41. package/dist-types/ts3.4/commands/ListRulesetsCommand.d.ts +17 -0
  42. package/dist-types/ts3.4/commands/UpdateRulesetCommand.d.ts +17 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +267 -1
  45. package/dist-types/ts3.4/pagination/ListRulesetsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +15 -0
  48. package/package.json +2 -2
@@ -9,6 +9,19 @@ export declare namespace AccessDeniedException {
9
9
 
10
10
  const filterSensitiveLog: (obj: AccessDeniedException) => any;
11
11
  }
12
+
13
+ export interface AllowedStatistics {
14
+
15
+ Statistics: string[] | undefined;
16
+ }
17
+ export declare namespace AllowedStatistics {
18
+
19
+ const filterSensitiveLog: (obj: AllowedStatistics) => any;
20
+ }
21
+ export declare enum AnalyticsMode {
22
+ DISABLE = "DISABLE",
23
+ ENABLE = "ENABLE"
24
+ }
12
25
  export interface BatchDeleteRecipeVersionRequest {
13
26
 
14
27
  Name: string | undefined;
@@ -140,9 +153,11 @@ export interface DatabaseInputDefinition {
140
153
 
141
154
  GlueConnectionName: string | undefined;
142
155
 
143
- DatabaseTableName: string | undefined;
156
+ DatabaseTableName?: string;
144
157
 
145
158
  TempDirectory?: S3Location;
159
+
160
+ QueryString?: string;
146
161
  }
147
162
  export declare namespace DatabaseInputDefinition {
148
163
 
@@ -164,6 +179,15 @@ export declare namespace DataCatalogInputDefinition {
164
179
  const filterSensitiveLog: (obj: DataCatalogInputDefinition) => any;
165
180
  }
166
181
 
182
+ export interface Metadata {
183
+
184
+ SourceArn?: string;
185
+ }
186
+ export declare namespace Metadata {
187
+
188
+ const filterSensitiveLog: (obj: Metadata) => any;
189
+ }
190
+
167
191
  export interface Input {
168
192
 
169
193
  S3InputDefinition?: S3Location;
@@ -171,6 +195,8 @@ export interface Input {
171
195
  DataCatalogInputDefinition?: DataCatalogInputDefinition;
172
196
 
173
197
  DatabaseInputDefinition?: DatabaseInputDefinition;
198
+
199
+ Metadata?: Metadata;
174
200
  }
175
201
  export declare namespace Input {
176
202
 
@@ -344,6 +370,17 @@ export declare namespace ColumnStatisticsConfiguration {
344
370
  const filterSensitiveLog: (obj: ColumnStatisticsConfiguration) => any;
345
371
  }
346
372
 
373
+ export interface EntityDetectorConfiguration {
374
+
375
+ EntityTypes: string[] | undefined;
376
+
377
+ AllowedStatistics?: AllowedStatistics[];
378
+ }
379
+ export declare namespace EntityDetectorConfiguration {
380
+
381
+ const filterSensitiveLog: (obj: EntityDetectorConfiguration) => any;
382
+ }
383
+
347
384
  export interface ProfileConfiguration {
348
385
 
349
386
  DatasetStatisticsConfiguration?: StatisticsConfiguration;
@@ -351,6 +388,8 @@ export interface ProfileConfiguration {
351
388
  ProfileColumns?: ColumnSelector[];
352
389
 
353
390
  ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[];
391
+
392
+ EntityDetectorConfiguration?: EntityDetectorConfiguration;
354
393
  }
355
394
  export declare namespace ProfileConfiguration {
356
395
 
@@ -379,6 +418,20 @@ export declare enum LogSubscription {
379
418
  DISABLE = "DISABLE",
380
419
  ENABLE = "ENABLE"
381
420
  }
421
+ export declare enum ValidationMode {
422
+ CHECK_ALL = "CHECK_ALL"
423
+ }
424
+
425
+ export interface ValidationConfiguration {
426
+
427
+ RulesetArn: string | undefined;
428
+
429
+ ValidationMode?: ValidationMode | string;
430
+ }
431
+ export declare namespace ValidationConfiguration {
432
+
433
+ const filterSensitiveLog: (obj: ValidationConfiguration) => any;
434
+ }
382
435
  export interface CreateProfileJobRequest {
383
436
 
384
437
  DatasetName: string | undefined;
@@ -399,6 +452,8 @@ export interface CreateProfileJobRequest {
399
452
 
400
453
  Configuration?: ProfileConfiguration;
401
454
 
455
+ ValidationConfigurations?: ValidationConfiguration[];
456
+
402
457
  RoleArn: string | undefined;
403
458
 
404
459
  Tags?: {
@@ -706,6 +761,76 @@ export declare namespace CreateRecipeJobResponse {
706
761
 
707
762
  const filterSensitiveLog: (obj: CreateRecipeJobResponse) => any;
708
763
  }
764
+ export declare enum ThresholdType {
765
+ GREATER_THAN = "GREATER_THAN",
766
+ GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
767
+ LESS_THAN = "LESS_THAN",
768
+ LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL"
769
+ }
770
+ export declare enum ThresholdUnit {
771
+ COUNT = "COUNT",
772
+ PERCENTAGE = "PERCENTAGE"
773
+ }
774
+
775
+ export interface Threshold {
776
+
777
+ Value: number | undefined;
778
+
779
+ Type?: ThresholdType | string;
780
+
781
+ Unit?: ThresholdUnit | string;
782
+ }
783
+ export declare namespace Threshold {
784
+
785
+ const filterSensitiveLog: (obj: Threshold) => any;
786
+ }
787
+
788
+ export interface Rule {
789
+
790
+ Name: string | undefined;
791
+
792
+ Disabled?: boolean;
793
+
794
+ CheckExpression: string | undefined;
795
+
796
+ SubstitutionMap?: {
797
+ [key: string]: string;
798
+ };
799
+
800
+ Threshold?: Threshold;
801
+
802
+ ColumnSelectors?: ColumnSelector[];
803
+ }
804
+ export declare namespace Rule {
805
+
806
+ const filterSensitiveLog: (obj: Rule) => any;
807
+ }
808
+ export interface CreateRulesetRequest {
809
+
810
+ Name: string | undefined;
811
+
812
+ Description?: string;
813
+
814
+ TargetArn: string | undefined;
815
+
816
+ Rules: Rule[] | undefined;
817
+
818
+ Tags?: {
819
+ [key: string]: string;
820
+ };
821
+ }
822
+ export declare namespace CreateRulesetRequest {
823
+
824
+ const filterSensitiveLog: (obj: CreateRulesetRequest) => any;
825
+ }
826
+ export interface CreateRulesetResponse {
827
+
828
+ Name: string | undefined;
829
+ }
830
+ export declare namespace CreateRulesetResponse {
831
+
832
+ const filterSensitiveLog: (obj: CreateRulesetResponse) => any;
833
+ }
709
834
  export interface CreateScheduleRequest {
710
835
 
711
836
  JobNames?: string[];
@@ -798,6 +923,22 @@ export declare namespace DeleteRecipeVersionResponse {
798
923
 
799
924
  const filterSensitiveLog: (obj: DeleteRecipeVersionResponse) => any;
800
925
  }
926
+ export interface DeleteRulesetRequest {
927
+
928
+ Name: string | undefined;
929
+ }
930
+ export declare namespace DeleteRulesetRequest {
931
+
932
+ const filterSensitiveLog: (obj: DeleteRulesetRequest) => any;
933
+ }
934
+ export interface DeleteRulesetResponse {
935
+
936
+ Name: string | undefined;
937
+ }
938
+ export declare namespace DeleteRulesetResponse {
939
+
940
+ const filterSensitiveLog: (obj: DeleteRulesetResponse) => any;
941
+ }
801
942
  export interface DeleteScheduleRequest {
802
943
 
803
944
  Name: string | undefined;
@@ -907,6 +1048,8 @@ export interface DescribeJobResponse {
907
1048
 
908
1049
  ProfileConfiguration?: ProfileConfiguration;
909
1050
 
1051
+ ValidationConfigurations?: ValidationConfiguration[];
1052
+
910
1053
  RecipeReference?: RecipeReference;
911
1054
 
912
1055
  ResourceArn?: string;
@@ -960,6 +1103,8 @@ export interface DescribeJobRunResponse {
960
1103
 
961
1104
  ProfileConfiguration?: ProfileConfiguration;
962
1105
 
1106
+ ValidationConfigurations?: ValidationConfiguration[];
1107
+
963
1108
  RunId?: string;
964
1109
 
965
1110
  State?: JobRunState | string;
@@ -1086,6 +1231,42 @@ export declare namespace DescribeRecipeResponse {
1086
1231
 
1087
1232
  const filterSensitiveLog: (obj: DescribeRecipeResponse) => any;
1088
1233
  }
1234
+ export interface DescribeRulesetRequest {
1235
+
1236
+ Name: string | undefined;
1237
+ }
1238
+ export declare namespace DescribeRulesetRequest {
1239
+
1240
+ const filterSensitiveLog: (obj: DescribeRulesetRequest) => any;
1241
+ }
1242
+ export interface DescribeRulesetResponse {
1243
+
1244
+ Name: string | undefined;
1245
+
1246
+ Description?: string;
1247
+
1248
+ TargetArn?: string;
1249
+
1250
+ Rules?: Rule[];
1251
+
1252
+ CreateDate?: Date;
1253
+
1254
+ CreatedBy?: string;
1255
+
1256
+ LastModifiedBy?: string;
1257
+
1258
+ LastModifiedDate?: Date;
1259
+
1260
+ ResourceArn?: string;
1261
+
1262
+ Tags?: {
1263
+ [key: string]: string;
1264
+ };
1265
+ }
1266
+ export declare namespace DescribeRulesetResponse {
1267
+
1268
+ const filterSensitiveLog: (obj: DescribeRulesetResponse) => any;
1269
+ }
1089
1270
  export interface DescribeScheduleRequest {
1090
1271
 
1091
1272
  Name: string | undefined;
@@ -1223,6 +1404,8 @@ export interface JobRun {
1223
1404
  StartedOn?: Date;
1224
1405
 
1225
1406
  JobSample?: JobSample;
1407
+
1408
+ ValidationConfigurations?: ValidationConfiguration[];
1226
1409
  }
1227
1410
  export declare namespace JobRun {
1228
1411
 
@@ -1302,6 +1485,8 @@ export interface Job {
1302
1485
  };
1303
1486
 
1304
1487
  JobSample?: JobSample;
1488
+
1489
+ ValidationConfigurations?: ValidationConfiguration[];
1305
1490
  }
1306
1491
  export declare namespace Job {
1307
1492
 
@@ -1453,6 +1638,59 @@ export declare namespace ListRecipeVersionsResponse {
1453
1638
 
1454
1639
  const filterSensitiveLog: (obj: ListRecipeVersionsResponse) => any;
1455
1640
  }
1641
+ export interface ListRulesetsRequest {
1642
+
1643
+ TargetArn?: string;
1644
+
1645
+ MaxResults?: number;
1646
+
1647
+ NextToken?: string;
1648
+ }
1649
+ export declare namespace ListRulesetsRequest {
1650
+
1651
+ const filterSensitiveLog: (obj: ListRulesetsRequest) => any;
1652
+ }
1653
+
1654
+ export interface RulesetItem {
1655
+
1656
+ AccountId?: string;
1657
+
1658
+ CreatedBy?: string;
1659
+
1660
+ CreateDate?: Date;
1661
+
1662
+ Description?: string;
1663
+
1664
+ LastModifiedBy?: string;
1665
+
1666
+ LastModifiedDate?: Date;
1667
+
1668
+ Name: string | undefined;
1669
+
1670
+ ResourceArn?: string;
1671
+
1672
+ RuleCount?: number;
1673
+
1674
+ Tags?: {
1675
+ [key: string]: string;
1676
+ };
1677
+
1678
+ TargetArn: string | undefined;
1679
+ }
1680
+ export declare namespace RulesetItem {
1681
+
1682
+ const filterSensitiveLog: (obj: RulesetItem) => any;
1683
+ }
1684
+ export interface ListRulesetsResponse {
1685
+
1686
+ Rulesets: RulesetItem[] | undefined;
1687
+
1688
+ NextToken?: string;
1689
+ }
1690
+ export declare namespace ListRulesetsResponse {
1691
+
1692
+ const filterSensitiveLog: (obj: ListRulesetsResponse) => any;
1693
+ }
1456
1694
  export interface ListSchedulesRequest {
1457
1695
 
1458
1696
  JobName?: string;
@@ -1548,6 +1786,12 @@ export interface ViewFrame {
1548
1786
  ColumnRange?: number;
1549
1787
 
1550
1788
  HiddenColumns?: string[];
1789
+
1790
+ StartRowIndex?: number;
1791
+
1792
+ RowRange?: number;
1793
+
1794
+ Analytics?: AnalyticsMode | string;
1551
1795
  }
1552
1796
  export declare namespace ViewFrame {
1553
1797
 
@@ -1713,6 +1957,8 @@ export interface UpdateProfileJobRequest {
1713
1957
 
1714
1958
  OutputLocation: S3Location | undefined;
1715
1959
 
1960
+ ValidationConfigurations?: ValidationConfiguration[];
1961
+
1716
1962
  RoleArn: string | undefined;
1717
1963
 
1718
1964
  Timeout?: number;
@@ -1809,6 +2055,26 @@ export declare namespace UpdateRecipeJobResponse {
1809
2055
 
1810
2056
  const filterSensitiveLog: (obj: UpdateRecipeJobResponse) => any;
1811
2057
  }
2058
+ export interface UpdateRulesetRequest {
2059
+
2060
+ Name: string | undefined;
2061
+
2062
+ Description?: string;
2063
+
2064
+ Rules: Rule[] | undefined;
2065
+ }
2066
+ export declare namespace UpdateRulesetRequest {
2067
+
2068
+ const filterSensitiveLog: (obj: UpdateRulesetRequest) => any;
2069
+ }
2070
+ export interface UpdateRulesetResponse {
2071
+
2072
+ Name: string | undefined;
2073
+ }
2074
+ export declare namespace UpdateRulesetResponse {
2075
+
2076
+ const filterSensitiveLog: (obj: UpdateRulesetResponse) => any;
2077
+ }
1812
2078
  export interface UpdateScheduleRequest {
1813
2079
 
1814
2080
  JobNames?: string[];
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListRulesetsCommandInput, ListRulesetsCommandOutput } from "../commands/ListRulesetsCommand";
3
+ import { DataBrewPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListRulesets(config: DataBrewPaginationConfiguration, input: ListRulesetsCommandInput, ...additionalArguments: any): Paginator<ListRulesetsCommandOutput>;
@@ -5,4 +5,5 @@ export * from "./ListJobsPaginator";
5
5
  export * from "./ListProjectsPaginator";
6
6
  export * from "./ListRecipeVersionsPaginator";
7
7
  export * from "./ListRecipesPaginator";
8
+ export * from "./ListRulesetsPaginator";
8
9
  export * from "./ListSchedulesPaginator";
@@ -6,17 +6,20 @@ import { CreateProfileJobCommandInput, CreateProfileJobCommandOutput } from "../
6
6
  import { CreateProjectCommandInput, CreateProjectCommandOutput } from "../commands/CreateProjectCommand";
7
7
  import { CreateRecipeCommandInput, CreateRecipeCommandOutput } from "../commands/CreateRecipeCommand";
8
8
  import { CreateRecipeJobCommandInput, CreateRecipeJobCommandOutput } from "../commands/CreateRecipeJobCommand";
9
+ import { CreateRulesetCommandInput, CreateRulesetCommandOutput } from "../commands/CreateRulesetCommand";
9
10
  import { CreateScheduleCommandInput, CreateScheduleCommandOutput } from "../commands/CreateScheduleCommand";
10
11
  import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
11
12
  import { DeleteJobCommandInput, DeleteJobCommandOutput } from "../commands/DeleteJobCommand";
12
13
  import { DeleteProjectCommandInput, DeleteProjectCommandOutput } from "../commands/DeleteProjectCommand";
13
14
  import { DeleteRecipeVersionCommandInput, DeleteRecipeVersionCommandOutput } from "../commands/DeleteRecipeVersionCommand";
15
+ import { DeleteRulesetCommandInput, DeleteRulesetCommandOutput } from "../commands/DeleteRulesetCommand";
14
16
  import { DeleteScheduleCommandInput, DeleteScheduleCommandOutput } from "../commands/DeleteScheduleCommand";
15
17
  import { DescribeDatasetCommandInput, DescribeDatasetCommandOutput } from "../commands/DescribeDatasetCommand";
16
18
  import { DescribeJobCommandInput, DescribeJobCommandOutput } from "../commands/DescribeJobCommand";
17
19
  import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "../commands/DescribeJobRunCommand";
18
20
  import { DescribeProjectCommandInput, DescribeProjectCommandOutput } from "../commands/DescribeProjectCommand";
19
21
  import { DescribeRecipeCommandInput, DescribeRecipeCommandOutput } from "../commands/DescribeRecipeCommand";
22
+ import { DescribeRulesetCommandInput, DescribeRulesetCommandOutput } from "../commands/DescribeRulesetCommand";
20
23
  import { DescribeScheduleCommandInput, DescribeScheduleCommandOutput } from "../commands/DescribeScheduleCommand";
21
24
  import { ListDatasetsCommandInput, ListDatasetsCommandOutput } from "../commands/ListDatasetsCommand";
22
25
  import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
@@ -24,6 +27,7 @@ import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJob
24
27
  import { ListProjectsCommandInput, ListProjectsCommandOutput } from "../commands/ListProjectsCommand";
25
28
  import { ListRecipesCommandInput, ListRecipesCommandOutput } from "../commands/ListRecipesCommand";
26
29
  import { ListRecipeVersionsCommandInput, ListRecipeVersionsCommandOutput } from "../commands/ListRecipeVersionsCommand";
30
+ import { ListRulesetsCommandInput, ListRulesetsCommandOutput } from "../commands/ListRulesetsCommand";
27
31
  import { ListSchedulesCommandInput, ListSchedulesCommandOutput } from "../commands/ListSchedulesCommand";
28
32
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
29
33
  import { PublishRecipeCommandInput, PublishRecipeCommandOutput } from "../commands/PublishRecipeCommand";
@@ -38,6 +42,7 @@ import { UpdateProfileJobCommandInput, UpdateProfileJobCommandOutput } from "../
38
42
  import { UpdateProjectCommandInput, UpdateProjectCommandOutput } from "../commands/UpdateProjectCommand";
39
43
  import { UpdateRecipeCommandInput, UpdateRecipeCommandOutput } from "../commands/UpdateRecipeCommand";
40
44
  import { UpdateRecipeJobCommandInput, UpdateRecipeJobCommandOutput } from "../commands/UpdateRecipeJobCommand";
45
+ import { UpdateRulesetCommandInput, UpdateRulesetCommandOutput } from "../commands/UpdateRulesetCommand";
41
46
  import { UpdateScheduleCommandInput, UpdateScheduleCommandOutput } from "../commands/UpdateScheduleCommand";
42
47
  export declare const serializeAws_restJson1BatchDeleteRecipeVersionCommand: (input: BatchDeleteRecipeVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
48
  export declare const serializeAws_restJson1CreateDatasetCommand: (input: CreateDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -45,17 +50,20 @@ export declare const serializeAws_restJson1CreateProfileJobCommand: (input: Crea
45
50
  export declare const serializeAws_restJson1CreateProjectCommand: (input: CreateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
51
  export declare const serializeAws_restJson1CreateRecipeCommand: (input: CreateRecipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
52
  export declare const serializeAws_restJson1CreateRecipeJobCommand: (input: CreateRecipeJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ export declare const serializeAws_restJson1CreateRulesetCommand: (input: CreateRulesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
54
  export declare const serializeAws_restJson1CreateScheduleCommand: (input: CreateScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
55
  export declare const serializeAws_restJson1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
56
  export declare const serializeAws_restJson1DeleteJobCommand: (input: DeleteJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
57
  export declare const serializeAws_restJson1DeleteProjectCommand: (input: DeleteProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
58
  export declare const serializeAws_restJson1DeleteRecipeVersionCommand: (input: DeleteRecipeVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ export declare const serializeAws_restJson1DeleteRulesetCommand: (input: DeleteRulesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
60
  export declare const serializeAws_restJson1DeleteScheduleCommand: (input: DeleteScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
61
  export declare const serializeAws_restJson1DescribeDatasetCommand: (input: DescribeDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
62
  export declare const serializeAws_restJson1DescribeJobCommand: (input: DescribeJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
63
  export declare const serializeAws_restJson1DescribeJobRunCommand: (input: DescribeJobRunCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
64
  export declare const serializeAws_restJson1DescribeProjectCommand: (input: DescribeProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
65
  export declare const serializeAws_restJson1DescribeRecipeCommand: (input: DescribeRecipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1DescribeRulesetCommand: (input: DescribeRulesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
67
  export declare const serializeAws_restJson1DescribeScheduleCommand: (input: DescribeScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
68
  export declare const serializeAws_restJson1ListDatasetsCommand: (input: ListDatasetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
69
  export declare const serializeAws_restJson1ListJobRunsCommand: (input: ListJobRunsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -63,6 +71,7 @@ export declare const serializeAws_restJson1ListJobsCommand: (input: ListJobsComm
63
71
  export declare const serializeAws_restJson1ListProjectsCommand: (input: ListProjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
72
  export declare const serializeAws_restJson1ListRecipesCommand: (input: ListRecipesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
73
  export declare const serializeAws_restJson1ListRecipeVersionsCommand: (input: ListRecipeVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1ListRulesetsCommand: (input: ListRulesetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
75
  export declare const serializeAws_restJson1ListSchedulesCommand: (input: ListSchedulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
76
  export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
77
  export declare const serializeAws_restJson1PublishRecipeCommand: (input: PublishRecipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -77,6 +86,7 @@ export declare const serializeAws_restJson1UpdateProfileJobCommand: (input: Upda
77
86
  export declare const serializeAws_restJson1UpdateProjectCommand: (input: UpdateProjectCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
87
  export declare const serializeAws_restJson1UpdateRecipeCommand: (input: UpdateRecipeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
88
  export declare const serializeAws_restJson1UpdateRecipeJobCommand: (input: UpdateRecipeJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
+ export declare const serializeAws_restJson1UpdateRulesetCommand: (input: UpdateRulesetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
90
  export declare const serializeAws_restJson1UpdateScheduleCommand: (input: UpdateScheduleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
81
91
  export declare const deserializeAws_restJson1BatchDeleteRecipeVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDeleteRecipeVersionCommandOutput>;
82
92
  export declare const deserializeAws_restJson1CreateDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDatasetCommandOutput>;
@@ -84,17 +94,20 @@ export declare const deserializeAws_restJson1CreateProfileJobCommand: (output: _
84
94
  export declare const deserializeAws_restJson1CreateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProjectCommandOutput>;
85
95
  export declare const deserializeAws_restJson1CreateRecipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRecipeCommandOutput>;
86
96
  export declare const deserializeAws_restJson1CreateRecipeJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRecipeJobCommandOutput>;
97
+ export declare const deserializeAws_restJson1CreateRulesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRulesetCommandOutput>;
87
98
  export declare const deserializeAws_restJson1CreateScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateScheduleCommandOutput>;
88
99
  export declare const deserializeAws_restJson1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
89
100
  export declare const deserializeAws_restJson1DeleteJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteJobCommandOutput>;
90
101
  export declare const deserializeAws_restJson1DeleteProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteProjectCommandOutput>;
91
102
  export declare const deserializeAws_restJson1DeleteRecipeVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRecipeVersionCommandOutput>;
103
+ export declare const deserializeAws_restJson1DeleteRulesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRulesetCommandOutput>;
92
104
  export declare const deserializeAws_restJson1DeleteScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteScheduleCommandOutput>;
93
105
  export declare const deserializeAws_restJson1DescribeDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDatasetCommandOutput>;
94
106
  export declare const deserializeAws_restJson1DescribeJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobCommandOutput>;
95
107
  export declare const deserializeAws_restJson1DescribeJobRunCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeJobRunCommandOutput>;
96
108
  export declare const deserializeAws_restJson1DescribeProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeProjectCommandOutput>;
97
109
  export declare const deserializeAws_restJson1DescribeRecipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRecipeCommandOutput>;
110
+ export declare const deserializeAws_restJson1DescribeRulesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRulesetCommandOutput>;
98
111
  export declare const deserializeAws_restJson1DescribeScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeScheduleCommandOutput>;
99
112
  export declare const deserializeAws_restJson1ListDatasetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDatasetsCommandOutput>;
100
113
  export declare const deserializeAws_restJson1ListJobRunsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListJobRunsCommandOutput>;
@@ -102,6 +115,7 @@ export declare const deserializeAws_restJson1ListJobsCommand: (output: __HttpRes
102
115
  export declare const deserializeAws_restJson1ListProjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListProjectsCommandOutput>;
103
116
  export declare const deserializeAws_restJson1ListRecipesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecipesCommandOutput>;
104
117
  export declare const deserializeAws_restJson1ListRecipeVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRecipeVersionsCommandOutput>;
118
+ export declare const deserializeAws_restJson1ListRulesetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRulesetsCommandOutput>;
105
119
  export declare const deserializeAws_restJson1ListSchedulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSchedulesCommandOutput>;
106
120
  export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
107
121
  export declare const deserializeAws_restJson1PublishRecipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PublishRecipeCommandOutput>;
@@ -116,4 +130,5 @@ export declare const deserializeAws_restJson1UpdateProfileJobCommand: (output: _
116
130
  export declare const deserializeAws_restJson1UpdateProjectCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateProjectCommandOutput>;
117
131
  export declare const deserializeAws_restJson1UpdateRecipeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRecipeCommandOutput>;
118
132
  export declare const deserializeAws_restJson1UpdateRecipeJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRecipeJobCommandOutput>;
133
+ export declare const deserializeAws_restJson1UpdateRulesetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRulesetCommandOutput>;
119
134
  export declare const deserializeAws_restJson1UpdateScheduleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateScheduleCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-databrew",
3
3
  "description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native",
4
- "version": "3.42.0",
4
+ "version": "3.43.0",
5
5
  "scripts": {
6
6
  "build": "yarn build:cjs && yarn build:es && yarn build:types",
7
7
  "build:cjs": "tsc -p tsconfig.json",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "2.0.0",
23
23
  "@aws-crypto/sha256-js": "2.0.0",
24
- "@aws-sdk/client-sts": "3.42.0",
24
+ "@aws-sdk/client-sts": "3.43.0",
25
25
  "@aws-sdk/config-resolver": "3.40.0",
26
26
  "@aws-sdk/credential-provider-node": "3.41.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.40.0",