@aws-sdk/client-datazone 3.696.0 → 3.697.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 (64) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +478 -45
  3. package/dist-es/DataZone.js +10 -0
  4. package/dist-es/commands/CreateRuleCommand.js +23 -0
  5. package/dist-es/commands/DeleteRuleCommand.js +22 -0
  6. package/dist-es/commands/GetDomainUnitCommand.js +1 -1
  7. package/dist-es/commands/GetRuleCommand.js +23 -0
  8. package/dist-es/commands/ListDomainsCommand.js +1 -1
  9. package/dist-es/commands/ListRulesCommand.js +23 -0
  10. package/dist-es/commands/UpdateDomainUnitCommand.js +1 -1
  11. package/dist-es/commands/UpdateRuleCommand.js +23 -0
  12. package/dist-es/commands/index.js +5 -0
  13. package/dist-es/models/models_0.js +50 -30
  14. package/dist-es/models/models_1.js +65 -0
  15. package/dist-es/pagination/ListRulesPaginator.js +4 -0
  16. package/dist-es/pagination/index.js +1 -0
  17. package/dist-es/protocols/Aws_restJson1.js +227 -0
  18. package/dist-types/DataZone.d.ts +35 -0
  19. package/dist-types/DataZoneClient.d.ts +7 -2
  20. package/dist-types/commands/AcceptSubscriptionRequestCommand.d.ts +9 -0
  21. package/dist-types/commands/CreateRuleCommand.d.ts +174 -0
  22. package/dist-types/commands/CreateSubscriptionRequestCommand.d.ts +17 -0
  23. package/dist-types/commands/DeleteDomainUnitCommand.d.ts +1 -1
  24. package/dist-types/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +1 -2
  25. package/dist-types/commands/DeleteRuleCommand.d.ts +97 -0
  26. package/dist-types/commands/GetDomainUnitCommand.d.ts +1 -1
  27. package/dist-types/commands/GetRuleCommand.d.ts +138 -0
  28. package/dist-types/commands/GetSubscriptionRequestDetailsCommand.d.ts +9 -0
  29. package/dist-types/commands/ListDomainUnitsForParentCommand.d.ts +1 -1
  30. package/dist-types/commands/ListDomainsCommand.d.ts +2 -1
  31. package/dist-types/commands/ListRulesCommand.d.ts +142 -0
  32. package/dist-types/commands/ListSubscriptionRequestsCommand.d.ts +8 -0
  33. package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +9 -0
  34. package/dist-types/commands/UpdateDomainCommand.d.ts +1 -1
  35. package/dist-types/commands/UpdateDomainUnitCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateRuleCommand.d.ts +170 -0
  37. package/dist-types/commands/UpdateSubscriptionRequestCommand.d.ts +9 -0
  38. package/dist-types/commands/index.d.ts +5 -0
  39. package/dist-types/models/models_0.d.ts +741 -824
  40. package/dist-types/models/models_1.d.ts +3458 -2583
  41. package/dist-types/pagination/ListRulesPaginator.d.ts +7 -0
  42. package/dist-types/pagination/index.d.ts +1 -0
  43. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  44. package/dist-types/ts3.4/DataZone.d.ts +85 -0
  45. package/dist-types/ts3.4/DataZoneClient.d.ts +30 -0
  46. package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +47 -0
  47. package/dist-types/ts3.4/commands/DeleteDomainUnitCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/DeleteEnvironmentBlueprintConfigurationCommand.d.ts +4 -2
  49. package/dist-types/ts3.4/commands/DeleteRuleCommand.d.ts +47 -0
  50. package/dist-types/ts3.4/commands/GetDomainUnitCommand.d.ts +1 -1
  51. package/dist-types/ts3.4/commands/GetRuleCommand.d.ts +41 -0
  52. package/dist-types/ts3.4/commands/ListDomainUnitsForParentCommand.d.ts +1 -1
  53. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +2 -1
  54. package/dist-types/ts3.4/commands/ListRulesCommand.d.ts +47 -0
  55. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
  56. package/dist-types/ts3.4/commands/UpdateDomainUnitCommand.d.ts +1 -1
  57. package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +47 -0
  58. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  59. package/dist-types/ts3.4/models/models_0.d.ts +120 -111
  60. package/dist-types/ts3.4/models/models_1.d.ts +221 -0
  61. package/dist-types/ts3.4/pagination/ListRulesPaginator.d.ts +11 -0
  62. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  63. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  64. package/package.json +1 -1
@@ -18,6 +18,8 @@ import {
18
18
  DataZoneEntityType,
19
19
  Deployment,
20
20
  DeploymentProperties,
21
+ DomainStatus,
22
+ DomainUnitOwnerProperties,
21
23
  EnvironmentParameter,
22
24
  EnvironmentStatus,
23
25
  FailureCause,
@@ -40,6 +42,13 @@ import {
40
42
  ProvisioningProperties,
41
43
  Resource,
42
44
  RowFilterExpression,
45
+ RuleAction,
46
+ RuleDetail,
47
+ RuleScope,
48
+ RuleTarget,
49
+ RuleTargetType,
50
+ RuleType,
51
+ SingleSignOn,
43
52
  SubscribedAsset,
44
53
  SubscribedListing,
45
54
  SubscribedPrincipal,
@@ -57,6 +66,95 @@ import {
57
66
  UserProfileStatus,
58
67
  UserProfileType,
59
68
  } from "./models_0";
69
+ export interface DomainSummary {
70
+ id: string | undefined;
71
+ name: string | undefined;
72
+ description?: string | undefined;
73
+ arn: string | undefined;
74
+ managedAccountId: string | undefined;
75
+ status: DomainStatus | undefined;
76
+ portalUrl?: string | undefined;
77
+ createdAt: Date | undefined;
78
+ lastUpdatedAt?: Date | undefined;
79
+ }
80
+ export interface ListDomainsOutput {
81
+ items: DomainSummary[] | undefined;
82
+ nextToken?: string | undefined;
83
+ }
84
+ export interface UpdateDomainInput {
85
+ identifier: string | undefined;
86
+ description?: string | undefined;
87
+ singleSignOn?: SingleSignOn | undefined;
88
+ domainExecutionRole?: string | undefined;
89
+ name?: string | undefined;
90
+ clientToken?: string | undefined;
91
+ }
92
+ export interface UpdateDomainOutput {
93
+ id: string | undefined;
94
+ rootDomainUnitId?: string | undefined;
95
+ description?: string | undefined;
96
+ singleSignOn?: SingleSignOn | undefined;
97
+ domainExecutionRole?: string | undefined;
98
+ name?: string | undefined;
99
+ lastUpdatedAt?: Date | undefined;
100
+ }
101
+ export interface DeleteDomainUnitInput {
102
+ domainIdentifier: string | undefined;
103
+ identifier: string | undefined;
104
+ }
105
+ export interface DeleteDomainUnitOutput {}
106
+ export interface GetDomainUnitInput {
107
+ domainIdentifier: string | undefined;
108
+ identifier: string | undefined;
109
+ }
110
+ export interface GetDomainUnitOutput {
111
+ id: string | undefined;
112
+ domainId: string | undefined;
113
+ name: string | undefined;
114
+ parentDomainUnitId?: string | undefined;
115
+ description?: string | undefined;
116
+ owners: DomainUnitOwnerProperties[] | undefined;
117
+ createdAt?: Date | undefined;
118
+ lastUpdatedAt?: Date | undefined;
119
+ createdBy?: string | undefined;
120
+ lastUpdatedBy?: string | undefined;
121
+ }
122
+ export interface ListDomainUnitsForParentInput {
123
+ domainIdentifier: string | undefined;
124
+ parentDomainUnitIdentifier: string | undefined;
125
+ maxResults?: number | undefined;
126
+ nextToken?: string | undefined;
127
+ }
128
+ export interface DomainUnitSummary {
129
+ name: string | undefined;
130
+ id: string | undefined;
131
+ }
132
+ export interface ListDomainUnitsForParentOutput {
133
+ items: DomainUnitSummary[] | undefined;
134
+ nextToken?: string | undefined;
135
+ }
136
+ export interface UpdateDomainUnitInput {
137
+ domainIdentifier: string | undefined;
138
+ identifier: string | undefined;
139
+ description?: string | undefined;
140
+ name?: string | undefined;
141
+ }
142
+ export interface UpdateDomainUnitOutput {
143
+ id: string | undefined;
144
+ domainId: string | undefined;
145
+ name: string | undefined;
146
+ owners: DomainUnitOwnerProperties[] | undefined;
147
+ description?: string | undefined;
148
+ parentDomainUnitId?: string | undefined;
149
+ createdAt?: Date | undefined;
150
+ lastUpdatedAt?: Date | undefined;
151
+ createdBy?: string | undefined;
152
+ lastUpdatedBy?: string | undefined;
153
+ }
154
+ export interface DeleteEnvironmentBlueprintConfigurationInput {
155
+ domainIdentifier: string | undefined;
156
+ environmentBlueprintIdentifier: string | undefined;
157
+ }
60
158
  export interface DeleteEnvironmentBlueprintConfigurationOutput {}
61
159
  export interface GetEnvironmentBlueprintConfigurationInput {
62
160
  domainIdentifier: string | undefined;
@@ -363,6 +461,8 @@ export interface GetSubscriptionRequestDetailsOutput {
363
461
  subscribedListings: SubscribedListing[] | undefined;
364
462
  reviewerId?: string | undefined;
365
463
  decisionComment?: string | undefined;
464
+ existingSubscriptionId?: string | undefined;
465
+ metadataForms?: FormOutput[] | undefined;
366
466
  }
367
467
  export interface GetSubscriptionTargetInput {
368
468
  domainIdentifier: string | undefined;
@@ -974,6 +1074,11 @@ export interface ListSubscriptionRequestsInput {
974
1074
  maxResults?: number | undefined;
975
1075
  nextToken?: string | undefined;
976
1076
  }
1077
+ export interface MetadataFormSummary {
1078
+ formName?: string | undefined;
1079
+ typeName: string | undefined;
1080
+ typeRevision: string | undefined;
1081
+ }
977
1082
  export interface SubscriptionRequestSummary {
978
1083
  id: string | undefined;
979
1084
  createdBy: string | undefined;
@@ -987,6 +1092,8 @@ export interface SubscriptionRequestSummary {
987
1092
  subscribedListings: SubscribedListing[] | undefined;
988
1093
  reviewerId?: string | undefined;
989
1094
  decisionComment?: string | undefined;
1095
+ existingSubscriptionId?: string | undefined;
1096
+ metadataFormsSummary?: MetadataFormSummary[] | undefined;
990
1097
  }
991
1098
  export interface ListSubscriptionRequestsOutput {
992
1099
  items: SubscriptionRequestSummary[] | undefined;
@@ -1216,6 +1323,8 @@ export interface RejectSubscriptionRequestOutput {
1216
1323
  subscribedListings: SubscribedListing[] | undefined;
1217
1324
  reviewerId?: string | undefined;
1218
1325
  decisionComment?: string | undefined;
1326
+ existingSubscriptionId?: string | undefined;
1327
+ metadataForms?: FormOutput[] | undefined;
1219
1328
  }
1220
1329
  export interface RemoveEntityOwnerInput {
1221
1330
  domainIdentifier: string | undefined;
@@ -1252,6 +1361,85 @@ export interface RevokeSubscriptionOutput {
1252
1361
  subscriptionRequestId?: string | undefined;
1253
1362
  retainPermissions?: boolean | undefined;
1254
1363
  }
1364
+ export interface DeleteRuleInput {
1365
+ domainIdentifier: string | undefined;
1366
+ identifier: string | undefined;
1367
+ }
1368
+ export interface DeleteRuleOutput {}
1369
+ export interface GetRuleInput {
1370
+ domainIdentifier: string | undefined;
1371
+ identifier: string | undefined;
1372
+ revision?: string | undefined;
1373
+ }
1374
+ export interface GetRuleOutput {
1375
+ identifier: string | undefined;
1376
+ revision: string | undefined;
1377
+ name: string | undefined;
1378
+ ruleType: RuleType | undefined;
1379
+ target: RuleTarget | undefined;
1380
+ action: RuleAction | undefined;
1381
+ scope: RuleScope | undefined;
1382
+ detail: RuleDetail | undefined;
1383
+ targetType?: RuleTargetType | undefined;
1384
+ description?: string | undefined;
1385
+ createdAt: Date | undefined;
1386
+ updatedAt: Date | undefined;
1387
+ createdBy: string | undefined;
1388
+ lastUpdatedBy: string | undefined;
1389
+ }
1390
+ export interface ListRulesInput {
1391
+ domainIdentifier: string | undefined;
1392
+ targetType: RuleTargetType | undefined;
1393
+ targetIdentifier: string | undefined;
1394
+ ruleType?: RuleType | undefined;
1395
+ action?: RuleAction | undefined;
1396
+ projectIds?: string[] | undefined;
1397
+ assetTypes?: string[] | undefined;
1398
+ dataProduct?: boolean | undefined;
1399
+ includeCascaded?: boolean | undefined;
1400
+ maxResults?: number | undefined;
1401
+ nextToken?: string | undefined;
1402
+ }
1403
+ export interface RuleSummary {
1404
+ identifier?: string | undefined;
1405
+ revision?: string | undefined;
1406
+ ruleType?: RuleType | undefined;
1407
+ name?: string | undefined;
1408
+ targetType?: RuleTargetType | undefined;
1409
+ target?: RuleTarget | undefined;
1410
+ action?: RuleAction | undefined;
1411
+ scope?: RuleScope | undefined;
1412
+ updatedAt?: Date | undefined;
1413
+ lastUpdatedBy?: string | undefined;
1414
+ }
1415
+ export interface ListRulesOutput {
1416
+ items: RuleSummary[] | undefined;
1417
+ nextToken?: string | undefined;
1418
+ }
1419
+ export interface UpdateRuleInput {
1420
+ domainIdentifier: string | undefined;
1421
+ identifier: string | undefined;
1422
+ name?: string | undefined;
1423
+ description?: string | undefined;
1424
+ scope?: RuleScope | undefined;
1425
+ detail?: RuleDetail | undefined;
1426
+ includeChildDomainUnits?: boolean | undefined;
1427
+ }
1428
+ export interface UpdateRuleOutput {
1429
+ identifier: string | undefined;
1430
+ revision: string | undefined;
1431
+ name: string | undefined;
1432
+ ruleType: RuleType | undefined;
1433
+ target: RuleTarget | undefined;
1434
+ action: RuleAction | undefined;
1435
+ scope: RuleScope | undefined;
1436
+ detail: RuleDetail | undefined;
1437
+ description?: string | undefined;
1438
+ createdAt: Date | undefined;
1439
+ updatedAt: Date | undefined;
1440
+ createdBy: string | undefined;
1441
+ lastUpdatedBy: string | undefined;
1442
+ }
1255
1443
  export declare const SearchOutputAdditionalAttribute: {
1256
1444
  readonly FORMS: "FORMS";
1257
1445
  readonly TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS";
@@ -1664,6 +1852,8 @@ export interface UpdateSubscriptionRequestOutput {
1664
1852
  subscribedListings: SubscribedListing[] | undefined;
1665
1853
  reviewerId?: string | undefined;
1666
1854
  decisionComment?: string | undefined;
1855
+ existingSubscriptionId?: string | undefined;
1856
+ metadataForms?: FormOutput[] | undefined;
1667
1857
  }
1668
1858
  export interface UpdateSubscriptionTargetInput {
1669
1859
  domainIdentifier: string | undefined;
@@ -1901,6 +2091,21 @@ export interface UpdateAssetFilterOutput {
1901
2091
  effectiveColumnNames?: string[] | undefined;
1902
2092
  effectiveRowFilter?: string | undefined;
1903
2093
  }
2094
+ export declare const DomainSummaryFilterSensitiveLog: (
2095
+ obj: DomainSummary
2096
+ ) => any;
2097
+ export declare const ListDomainsOutputFilterSensitiveLog: (
2098
+ obj: ListDomainsOutput
2099
+ ) => any;
2100
+ export declare const GetDomainUnitOutputFilterSensitiveLog: (
2101
+ obj: GetDomainUnitOutput
2102
+ ) => any;
2103
+ export declare const UpdateDomainUnitInputFilterSensitiveLog: (
2104
+ obj: UpdateDomainUnitInput
2105
+ ) => any;
2106
+ export declare const UpdateDomainUnitOutputFilterSensitiveLog: (
2107
+ obj: UpdateDomainUnitOutput
2108
+ ) => any;
1904
2109
  export declare const ImportFilterSensitiveLog: (obj: Import) => any;
1905
2110
  export declare const GetFormTypeOutputFilterSensitiveLog: (
1906
2111
  obj: GetFormTypeOutput
@@ -2002,6 +2207,9 @@ export declare const ProjectSummaryFilterSensitiveLog: (
2002
2207
  export declare const ListProjectsOutputFilterSensitiveLog: (
2003
2208
  obj: ListProjectsOutput
2004
2209
  ) => any;
2210
+ export declare const MetadataFormSummaryFilterSensitiveLog: (
2211
+ obj: MetadataFormSummary
2212
+ ) => any;
2005
2213
  export declare const SubscriptionRequestSummaryFilterSensitiveLog: (
2006
2214
  obj: SubscriptionRequestSummary
2007
2215
  ) => any;
@@ -2032,6 +2240,19 @@ export declare const RejectSubscriptionRequestOutputFilterSensitiveLog: (
2032
2240
  export declare const RevokeSubscriptionOutputFilterSensitiveLog: (
2033
2241
  obj: RevokeSubscriptionOutput
2034
2242
  ) => any;
2243
+ export declare const GetRuleOutputFilterSensitiveLog: (
2244
+ obj: GetRuleOutput
2245
+ ) => any;
2246
+ export declare const RuleSummaryFilterSensitiveLog: (obj: RuleSummary) => any;
2247
+ export declare const ListRulesOutputFilterSensitiveLog: (
2248
+ obj: ListRulesOutput
2249
+ ) => any;
2250
+ export declare const UpdateRuleInputFilterSensitiveLog: (
2251
+ obj: UpdateRuleInput
2252
+ ) => any;
2253
+ export declare const UpdateRuleOutputFilterSensitiveLog: (
2254
+ obj: UpdateRuleOutput
2255
+ ) => any;
2035
2256
  export declare const GlossaryItemFilterSensitiveLog: (obj: GlossaryItem) => any;
2036
2257
  export declare const GlossaryTermItemFilterSensitiveLog: (
2037
2258
  obj: GlossaryTermItem
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListRulesCommandInput,
4
+ ListRulesCommandOutput,
5
+ } from "../commands/ListRulesCommand";
6
+ import { DataZonePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListRules: (
8
+ config: DataZonePaginationConfiguration,
9
+ input: ListRulesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListRulesCommandOutput>;
@@ -19,6 +19,7 @@ export * from "./ListNotificationsPaginator";
19
19
  export * from "./ListPolicyGrantsPaginator";
20
20
  export * from "./ListProjectMembershipsPaginator";
21
21
  export * from "./ListProjectsPaginator";
22
+ export * from "./ListRulesPaginator";
22
23
  export * from "./ListSubscriptionGrantsPaginator";
23
24
  export * from "./ListSubscriptionRequestsPaginator";
24
25
  export * from "./ListSubscriptionTargetsPaginator";
@@ -107,6 +107,10 @@ import {
107
107
  CreateProjectMembershipCommandInput,
108
108
  CreateProjectMembershipCommandOutput,
109
109
  } from "../commands/CreateProjectMembershipCommand";
110
+ import {
111
+ CreateRuleCommandInput,
112
+ CreateRuleCommandOutput,
113
+ } from "../commands/CreateRuleCommand";
110
114
  import {
111
115
  CreateSubscriptionGrantCommandInput,
112
116
  CreateSubscriptionGrantCommandOutput,
@@ -191,6 +195,10 @@ import {
191
195
  DeleteProjectMembershipCommandInput,
192
196
  DeleteProjectMembershipCommandOutput,
193
197
  } from "../commands/DeleteProjectMembershipCommand";
198
+ import {
199
+ DeleteRuleCommandInput,
200
+ DeleteRuleCommandOutput,
201
+ } from "../commands/DeleteRuleCommand";
194
202
  import {
195
203
  DeleteSubscriptionGrantCommandInput,
196
204
  DeleteSubscriptionGrantCommandOutput,
@@ -303,6 +311,10 @@ import {
303
311
  GetProjectCommandInput,
304
312
  GetProjectCommandOutput,
305
313
  } from "../commands/GetProjectCommand";
314
+ import {
315
+ GetRuleCommandInput,
316
+ GetRuleCommandOutput,
317
+ } from "../commands/GetRuleCommand";
306
318
  import {
307
319
  GetSubscriptionCommandInput,
308
320
  GetSubscriptionCommandOutput,
@@ -407,6 +419,10 @@ import {
407
419
  ListProjectsCommandInput,
408
420
  ListProjectsCommandOutput,
409
421
  } from "../commands/ListProjectsCommand";
422
+ import {
423
+ ListRulesCommandInput,
424
+ ListRulesCommandOutput,
425
+ } from "../commands/ListRulesCommand";
410
426
  import {
411
427
  ListSubscriptionGrantsCommandInput,
412
428
  ListSubscriptionGrantsCommandOutput,
@@ -543,6 +559,10 @@ import {
543
559
  UpdateProjectCommandInput,
544
560
  UpdateProjectCommandOutput,
545
561
  } from "../commands/UpdateProjectCommand";
562
+ import {
563
+ UpdateRuleCommandInput,
564
+ UpdateRuleCommandOutput,
565
+ } from "../commands/UpdateRuleCommand";
546
566
  import {
547
567
  UpdateSubscriptionGrantStatusCommandInput,
548
568
  UpdateSubscriptionGrantStatusCommandOutput,
@@ -663,6 +683,10 @@ export declare const se_CreateProjectMembershipCommand: (
663
683
  input: CreateProjectMembershipCommandInput,
664
684
  context: __SerdeContext
665
685
  ) => Promise<__HttpRequest>;
686
+ export declare const se_CreateRuleCommand: (
687
+ input: CreateRuleCommandInput,
688
+ context: __SerdeContext
689
+ ) => Promise<__HttpRequest>;
666
690
  export declare const se_CreateSubscriptionGrantCommand: (
667
691
  input: CreateSubscriptionGrantCommandInput,
668
692
  context: __SerdeContext
@@ -747,6 +771,10 @@ export declare const se_DeleteProjectMembershipCommand: (
747
771
  input: DeleteProjectMembershipCommandInput,
748
772
  context: __SerdeContext
749
773
  ) => Promise<__HttpRequest>;
774
+ export declare const se_DeleteRuleCommand: (
775
+ input: DeleteRuleCommandInput,
776
+ context: __SerdeContext
777
+ ) => Promise<__HttpRequest>;
750
778
  export declare const se_DeleteSubscriptionGrantCommand: (
751
779
  input: DeleteSubscriptionGrantCommandInput,
752
780
  context: __SerdeContext
@@ -859,6 +887,10 @@ export declare const se_GetProjectCommand: (
859
887
  input: GetProjectCommandInput,
860
888
  context: __SerdeContext
861
889
  ) => Promise<__HttpRequest>;
890
+ export declare const se_GetRuleCommand: (
891
+ input: GetRuleCommandInput,
892
+ context: __SerdeContext
893
+ ) => Promise<__HttpRequest>;
862
894
  export declare const se_GetSubscriptionCommand: (
863
895
  input: GetSubscriptionCommandInput,
864
896
  context: __SerdeContext
@@ -963,6 +995,10 @@ export declare const se_ListProjectsCommand: (
963
995
  input: ListProjectsCommandInput,
964
996
  context: __SerdeContext
965
997
  ) => Promise<__HttpRequest>;
998
+ export declare const se_ListRulesCommand: (
999
+ input: ListRulesCommandInput,
1000
+ context: __SerdeContext
1001
+ ) => Promise<__HttpRequest>;
966
1002
  export declare const se_ListSubscriptionGrantsCommand: (
967
1003
  input: ListSubscriptionGrantsCommandInput,
968
1004
  context: __SerdeContext
@@ -1099,6 +1135,10 @@ export declare const se_UpdateProjectCommand: (
1099
1135
  input: UpdateProjectCommandInput,
1100
1136
  context: __SerdeContext
1101
1137
  ) => Promise<__HttpRequest>;
1138
+ export declare const se_UpdateRuleCommand: (
1139
+ input: UpdateRuleCommandInput,
1140
+ context: __SerdeContext
1141
+ ) => Promise<__HttpRequest>;
1102
1142
  export declare const se_UpdateSubscriptionGrantStatusCommand: (
1103
1143
  input: UpdateSubscriptionGrantStatusCommandInput,
1104
1144
  context: __SerdeContext
@@ -1219,6 +1259,10 @@ export declare const de_CreateProjectMembershipCommand: (
1219
1259
  output: __HttpResponse,
1220
1260
  context: __SerdeContext
1221
1261
  ) => Promise<CreateProjectMembershipCommandOutput>;
1262
+ export declare const de_CreateRuleCommand: (
1263
+ output: __HttpResponse,
1264
+ context: __SerdeContext
1265
+ ) => Promise<CreateRuleCommandOutput>;
1222
1266
  export declare const de_CreateSubscriptionGrantCommand: (
1223
1267
  output: __HttpResponse,
1224
1268
  context: __SerdeContext
@@ -1303,6 +1347,10 @@ export declare const de_DeleteProjectMembershipCommand: (
1303
1347
  output: __HttpResponse,
1304
1348
  context: __SerdeContext
1305
1349
  ) => Promise<DeleteProjectMembershipCommandOutput>;
1350
+ export declare const de_DeleteRuleCommand: (
1351
+ output: __HttpResponse,
1352
+ context: __SerdeContext
1353
+ ) => Promise<DeleteRuleCommandOutput>;
1306
1354
  export declare const de_DeleteSubscriptionGrantCommand: (
1307
1355
  output: __HttpResponse,
1308
1356
  context: __SerdeContext
@@ -1415,6 +1463,10 @@ export declare const de_GetProjectCommand: (
1415
1463
  output: __HttpResponse,
1416
1464
  context: __SerdeContext
1417
1465
  ) => Promise<GetProjectCommandOutput>;
1466
+ export declare const de_GetRuleCommand: (
1467
+ output: __HttpResponse,
1468
+ context: __SerdeContext
1469
+ ) => Promise<GetRuleCommandOutput>;
1418
1470
  export declare const de_GetSubscriptionCommand: (
1419
1471
  output: __HttpResponse,
1420
1472
  context: __SerdeContext
@@ -1519,6 +1571,10 @@ export declare const de_ListProjectsCommand: (
1519
1571
  output: __HttpResponse,
1520
1572
  context: __SerdeContext
1521
1573
  ) => Promise<ListProjectsCommandOutput>;
1574
+ export declare const de_ListRulesCommand: (
1575
+ output: __HttpResponse,
1576
+ context: __SerdeContext
1577
+ ) => Promise<ListRulesCommandOutput>;
1522
1578
  export declare const de_ListSubscriptionGrantsCommand: (
1523
1579
  output: __HttpResponse,
1524
1580
  context: __SerdeContext
@@ -1655,6 +1711,10 @@ export declare const de_UpdateProjectCommand: (
1655
1711
  output: __HttpResponse,
1656
1712
  context: __SerdeContext
1657
1713
  ) => Promise<UpdateProjectCommandOutput>;
1714
+ export declare const de_UpdateRuleCommand: (
1715
+ output: __HttpResponse,
1716
+ context: __SerdeContext
1717
+ ) => Promise<UpdateRuleCommandOutput>;
1658
1718
  export declare const de_UpdateSubscriptionGrantStatusCommand: (
1659
1719
  output: __HttpResponse,
1660
1720
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-datazone",
3
3
  "description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
4
- "version": "3.696.0",
4
+ "version": "3.697.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-datazone",