@aws-sdk/client-datazone 3.873.0 → 3.875.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 (52) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +147 -23
  3. package/dist-es/DataZone.js +4 -0
  4. package/dist-es/commands/AssociateGovernedTermsCommand.js +22 -0
  5. package/dist-es/commands/DisassociateGovernedTermsCommand.js +22 -0
  6. package/dist-es/commands/PostLineageEventCommand.js +1 -1
  7. package/dist-es/commands/index.js +2 -0
  8. package/dist-es/models/models_0.js +13 -8
  9. package/dist-es/models/models_1.js +8 -4
  10. package/dist-es/models/models_2.js +4 -0
  11. package/dist-es/protocols/Aws_restJson1.js +67 -0
  12. package/dist-types/DataZone.d.ts +14 -0
  13. package/dist-types/DataZoneClient.d.ts +4 -2
  14. package/dist-types/commands/AssociateGovernedTermsCommand.d.ts +96 -0
  15. package/dist-types/commands/CreateAssetCommand.d.ts +3 -0
  16. package/dist-types/commands/CreateAssetRevisionCommand.d.ts +3 -0
  17. package/dist-types/commands/CreateGlossaryCommand.d.ts +6 -0
  18. package/dist-types/commands/CreateGlossaryTermCommand.d.ts +3 -0
  19. package/dist-types/commands/CreateProjectCommand.d.ts +1 -1
  20. package/dist-types/commands/DisassociateGovernedTermsCommand.d.ts +96 -0
  21. package/dist-types/commands/GetAssetCommand.d.ts +3 -0
  22. package/dist-types/commands/GetGlossaryCommand.d.ts +3 -0
  23. package/dist-types/commands/GetGlossaryTermCommand.d.ts +3 -0
  24. package/dist-types/commands/GetListingCommand.d.ts +6 -0
  25. package/dist-types/commands/GetProjectCommand.d.ts +1 -1
  26. package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +1 -1
  27. package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
  28. package/dist-types/commands/PostLineageEventCommand.d.ts +1 -2
  29. package/dist-types/commands/SearchCommand.d.ts +9 -0
  30. package/dist-types/commands/SearchListingsCommand.d.ts +6 -0
  31. package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +1 -1
  32. package/dist-types/commands/UpdateGlossaryCommand.d.ts +3 -0
  33. package/dist-types/commands/UpdateGlossaryTermCommand.d.ts +3 -0
  34. package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
  35. package/dist-types/commands/index.d.ts +2 -0
  36. package/dist-types/models/models_0.d.ts +98 -78
  37. package/dist-types/models/models_1.d.ts +129 -186
  38. package/dist-types/models/models_2.d.ts +197 -2
  39. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  40. package/dist-types/ts3.4/DataZone.d.ts +34 -0
  41. package/dist-types/ts3.4/DataZoneClient.d.ts +12 -0
  42. package/dist-types/ts3.4/commands/AssociateGovernedTermsCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/DisassociateGovernedTermsCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/ListMetadataGenerationRunsCommand.d.ts +1 -1
  45. package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +4 -2
  46. package/dist-types/ts3.4/commands/StartMetadataGenerationRunCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +27 -30
  49. package/dist-types/ts3.4/models/models_1.d.ts +46 -47
  50. package/dist-types/ts3.4/models/models_2.d.ts +53 -2
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  52. package/package.json +1 -1
@@ -19,6 +19,10 @@ import {
19
19
  AssociateEnvironmentRoleCommandInput,
20
20
  AssociateEnvironmentRoleCommandOutput,
21
21
  } from "./commands/AssociateEnvironmentRoleCommand";
22
+ import {
23
+ AssociateGovernedTermsCommandInput,
24
+ AssociateGovernedTermsCommandOutput,
25
+ } from "./commands/AssociateGovernedTermsCommand";
22
26
  import {
23
27
  CancelMetadataGenerationRunCommandInput,
24
28
  CancelMetadataGenerationRunCommandOutput,
@@ -239,6 +243,10 @@ import {
239
243
  DisassociateEnvironmentRoleCommandInput,
240
244
  DisassociateEnvironmentRoleCommandOutput,
241
245
  } from "./commands/DisassociateEnvironmentRoleCommand";
246
+ import {
247
+ DisassociateGovernedTermsCommandInput,
248
+ DisassociateGovernedTermsCommandOutput,
249
+ } from "./commands/DisassociateGovernedTermsCommand";
242
250
  import {
243
251
  GetAccountPoolCommandInput,
244
252
  GetAccountPoolCommandOutput,
@@ -722,6 +730,19 @@ export interface DataZone {
722
730
  options: __HttpHandlerOptions,
723
731
  cb: (err: any, data?: AssociateEnvironmentRoleCommandOutput) => void
724
732
  ): void;
733
+ associateGovernedTerms(
734
+ args: AssociateGovernedTermsCommandInput,
735
+ options?: __HttpHandlerOptions
736
+ ): Promise<AssociateGovernedTermsCommandOutput>;
737
+ associateGovernedTerms(
738
+ args: AssociateGovernedTermsCommandInput,
739
+ cb: (err: any, data?: AssociateGovernedTermsCommandOutput) => void
740
+ ): void;
741
+ associateGovernedTerms(
742
+ args: AssociateGovernedTermsCommandInput,
743
+ options: __HttpHandlerOptions,
744
+ cb: (err: any, data?: AssociateGovernedTermsCommandOutput) => void
745
+ ): void;
725
746
  cancelMetadataGenerationRun(
726
747
  args: CancelMetadataGenerationRunCommandInput,
727
748
  options?: __HttpHandlerOptions
@@ -1443,6 +1464,19 @@ export interface DataZone {
1443
1464
  options: __HttpHandlerOptions,
1444
1465
  cb: (err: any, data?: DisassociateEnvironmentRoleCommandOutput) => void
1445
1466
  ): void;
1467
+ disassociateGovernedTerms(
1468
+ args: DisassociateGovernedTermsCommandInput,
1469
+ options?: __HttpHandlerOptions
1470
+ ): Promise<DisassociateGovernedTermsCommandOutput>;
1471
+ disassociateGovernedTerms(
1472
+ args: DisassociateGovernedTermsCommandInput,
1473
+ cb: (err: any, data?: DisassociateGovernedTermsCommandOutput) => void
1474
+ ): void;
1475
+ disassociateGovernedTerms(
1476
+ args: DisassociateGovernedTermsCommandInput,
1477
+ options: __HttpHandlerOptions,
1478
+ cb: (err: any, data?: DisassociateGovernedTermsCommandOutput) => void
1479
+ ): void;
1446
1480
  getAccountPool(
1447
1481
  args: GetAccountPoolCommandInput,
1448
1482
  options?: __HttpHandlerOptions
@@ -65,6 +65,10 @@ import {
65
65
  AssociateEnvironmentRoleCommandInput,
66
66
  AssociateEnvironmentRoleCommandOutput,
67
67
  } from "./commands/AssociateEnvironmentRoleCommand";
68
+ import {
69
+ AssociateGovernedTermsCommandInput,
70
+ AssociateGovernedTermsCommandOutput,
71
+ } from "./commands/AssociateGovernedTermsCommand";
68
72
  import {
69
73
  CancelMetadataGenerationRunCommandInput,
70
74
  CancelMetadataGenerationRunCommandOutput,
@@ -285,6 +289,10 @@ import {
285
289
  DisassociateEnvironmentRoleCommandInput,
286
290
  DisassociateEnvironmentRoleCommandOutput,
287
291
  } from "./commands/DisassociateEnvironmentRoleCommand";
292
+ import {
293
+ DisassociateGovernedTermsCommandInput,
294
+ DisassociateGovernedTermsCommandOutput,
295
+ } from "./commands/DisassociateGovernedTermsCommand";
288
296
  import {
289
297
  GetAccountPoolCommandInput,
290
298
  GetAccountPoolCommandOutput,
@@ -714,6 +722,7 @@ export type ServiceInputTypes =
714
722
  | AddEntityOwnerCommandInput
715
723
  | AddPolicyGrantCommandInput
716
724
  | AssociateEnvironmentRoleCommandInput
725
+ | AssociateGovernedTermsCommandInput
717
726
  | CancelMetadataGenerationRunCommandInput
718
727
  | CancelSubscriptionCommandInput
719
728
  | CreateAccountPoolCommandInput
@@ -769,6 +778,7 @@ export type ServiceInputTypes =
769
778
  | DeleteSubscriptionTargetCommandInput
770
779
  | DeleteTimeSeriesDataPointsCommandInput
771
780
  | DisassociateEnvironmentRoleCommandInput
781
+ | DisassociateGovernedTermsCommandInput
772
782
  | GetAccountPoolCommandInput
773
783
  | GetAssetCommandInput
774
784
  | GetAssetFilterCommandInput
@@ -879,6 +889,7 @@ export type ServiceOutputTypes =
879
889
  | AddEntityOwnerCommandOutput
880
890
  | AddPolicyGrantCommandOutput
881
891
  | AssociateEnvironmentRoleCommandOutput
892
+ | AssociateGovernedTermsCommandOutput
882
893
  | CancelMetadataGenerationRunCommandOutput
883
894
  | CancelSubscriptionCommandOutput
884
895
  | CreateAccountPoolCommandOutput
@@ -934,6 +945,7 @@ export type ServiceOutputTypes =
934
945
  | DeleteSubscriptionTargetCommandOutput
935
946
  | DeleteTimeSeriesDataPointsCommandOutput
936
947
  | DisassociateEnvironmentRoleCommandOutput
948
+ | DisassociateGovernedTermsCommandOutput
937
949
  | GetAccountPoolCommandOutput
938
950
  | GetAssetCommandOutput
939
951
  | GetAssetFilterCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DataZoneClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DataZoneClient";
8
+ import {
9
+ AssociateGovernedTermsInput,
10
+ AssociateGovernedTermsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface AssociateGovernedTermsCommandInput
15
+ extends AssociateGovernedTermsInput {}
16
+ export interface AssociateGovernedTermsCommandOutput
17
+ extends AssociateGovernedTermsOutput,
18
+ __MetadataBearer {}
19
+ declare const AssociateGovernedTermsCommand_base: {
20
+ new (
21
+ input: AssociateGovernedTermsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ AssociateGovernedTermsCommandInput,
24
+ AssociateGovernedTermsCommandOutput,
25
+ DataZoneClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: AssociateGovernedTermsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ AssociateGovernedTermsCommandInput,
33
+ AssociateGovernedTermsCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class AssociateGovernedTermsCommand extends AssociateGovernedTermsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: AssociateGovernedTermsInput;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: AssociateGovernedTermsCommandInput;
48
+ output: AssociateGovernedTermsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DataZoneClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../DataZoneClient";
8
+ import {
9
+ DisassociateGovernedTermsInput,
10
+ DisassociateGovernedTermsOutput,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DisassociateGovernedTermsCommandInput
15
+ extends DisassociateGovernedTermsInput {}
16
+ export interface DisassociateGovernedTermsCommandOutput
17
+ extends DisassociateGovernedTermsOutput,
18
+ __MetadataBearer {}
19
+ declare const DisassociateGovernedTermsCommand_base: {
20
+ new (
21
+ input: DisassociateGovernedTermsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DisassociateGovernedTermsCommandInput,
24
+ DisassociateGovernedTermsCommandOutput,
25
+ DataZoneClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DisassociateGovernedTermsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DisassociateGovernedTermsCommandInput,
33
+ DisassociateGovernedTermsCommandOutput,
34
+ DataZoneClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DisassociateGovernedTermsCommand extends DisassociateGovernedTermsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DisassociateGovernedTermsInput;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DisassociateGovernedTermsCommandInput;
48
+ output: DisassociateGovernedTermsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  ListMetadataGenerationRunsInput,
10
10
  ListMetadataGenerationRunsOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface ListMetadataGenerationRunsCommandInput
@@ -8,8 +8,10 @@ import {
8
8
  ServiceInputTypes,
9
9
  ServiceOutputTypes,
10
10
  } from "../DataZoneClient";
11
- import { PostLineageEventInput } from "../models/models_1";
12
- import { PostLineageEventOutput } from "../models/models_2";
11
+ import {
12
+ PostLineageEventInput,
13
+ PostLineageEventOutput,
14
+ } from "../models/models_2";
13
15
  export { __MetadataBearer };
14
16
  export { $Command };
15
17
  export type PostLineageEventCommandInputType = Pick<
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  StartMetadataGenerationRunInput,
10
10
  StartMetadataGenerationRunOutput,
11
- } from "../models/models_1";
11
+ } from "../models/models_2";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface StartMetadataGenerationRunCommandInput
@@ -3,6 +3,7 @@ export * from "./AcceptSubscriptionRequestCommand";
3
3
  export * from "./AddEntityOwnerCommand";
4
4
  export * from "./AddPolicyGrantCommand";
5
5
  export * from "./AssociateEnvironmentRoleCommand";
6
+ export * from "./AssociateGovernedTermsCommand";
6
7
  export * from "./CancelMetadataGenerationRunCommand";
7
8
  export * from "./CancelSubscriptionCommand";
8
9
  export * from "./CreateAccountPoolCommand";
@@ -58,6 +59,7 @@ export * from "./DeleteSubscriptionRequestCommand";
58
59
  export * from "./DeleteSubscriptionTargetCommand";
59
60
  export * from "./DeleteTimeSeriesDataPointsCommand";
60
61
  export * from "./DisassociateEnvironmentRoleCommand";
62
+ export * from "./DisassociateGovernedTermsCommand";
61
63
  export * from "./GetAccountPoolCommand";
62
64
  export * from "./GetAssetCommand";
63
65
  export * from "./GetAssetFilterCommand";
@@ -931,6 +931,7 @@ export interface CreateAssetOutput {
931
931
  firstRevisionCreatedAt?: Date | undefined;
932
932
  firstRevisionCreatedBy?: string | undefined;
933
933
  glossaryTerms?: string[] | undefined;
934
+ governedGlossaryTerms?: string[] | undefined;
934
935
  owningProjectId: string | undefined;
935
936
  domainId: string | undefined;
936
937
  listing?: AssetListingDetails | undefined;
@@ -965,6 +966,7 @@ export interface CreateAssetRevisionOutput {
965
966
  firstRevisionCreatedAt?: Date | undefined;
966
967
  firstRevisionCreatedBy?: string | undefined;
967
968
  glossaryTerms?: string[] | undefined;
969
+ governedGlossaryTerms?: string[] | undefined;
968
970
  owningProjectId: string | undefined;
969
971
  domainId: string | undefined;
970
972
  listing?: AssetListingDetails | undefined;
@@ -998,6 +1000,7 @@ export interface GetAssetOutput {
998
1000
  firstRevisionCreatedAt?: Date | undefined;
999
1001
  firstRevisionCreatedBy?: string | undefined;
1000
1002
  glossaryTerms?: string[] | undefined;
1003
+ governedGlossaryTerms?: string[] | undefined;
1001
1004
  owningProjectId: string | undefined;
1002
1005
  domainId: string | undefined;
1003
1006
  listing?: AssetListingDetails | undefined;
@@ -1350,6 +1353,7 @@ export interface AssetItem {
1350
1353
  glossaryTerms?: string[] | undefined;
1351
1354
  owningProjectId: string | undefined;
1352
1355
  additionalAttributes?: AssetItemAdditionalAttributes | undefined;
1356
+ governedGlossaryTerms?: string[] | undefined;
1353
1357
  }
1354
1358
  export interface AssetListing {
1355
1359
  assetId?: string | undefined;
@@ -1361,6 +1365,7 @@ export interface AssetListing {
1361
1365
  | TimeSeriesDataPointSummaryFormOutput[]
1362
1366
  | undefined;
1363
1367
  glossaryTerms?: DetailedGlossaryTerm[] | undefined;
1368
+ governedGlossaryTerms?: DetailedGlossaryTerm[] | undefined;
1364
1369
  owningProjectId?: string | undefined;
1365
1370
  }
1366
1371
  export interface AssetListingItemAdditionalAttributes {
@@ -1382,6 +1387,7 @@ export interface AssetListingItem {
1382
1387
  listingCreatedBy?: string | undefined;
1383
1388
  listingUpdatedBy?: string | undefined;
1384
1389
  glossaryTerms?: DetailedGlossaryTerm[] | undefined;
1390
+ governedGlossaryTerms?: DetailedGlossaryTerm[] | undefined;
1385
1391
  owningProjectId?: string | undefined;
1386
1392
  additionalAttributes?: AssetListingItemAdditionalAttributes | undefined;
1387
1393
  }
@@ -1481,6 +1487,18 @@ export interface AssociateEnvironmentRoleInput {
1481
1487
  environmentRoleArn: string | undefined;
1482
1488
  }
1483
1489
  export interface AssociateEnvironmentRoleOutput {}
1490
+ export declare const GovernedEntityType: {
1491
+ readonly ASSET: "ASSET";
1492
+ };
1493
+ export type GovernedEntityType =
1494
+ (typeof GovernedEntityType)[keyof typeof GovernedEntityType];
1495
+ export interface AssociateGovernedTermsInput {
1496
+ domainIdentifier: string | undefined;
1497
+ entityIdentifier: string | undefined;
1498
+ entityType: GovernedEntityType | undefined;
1499
+ governedGlossaryTerms: string[] | undefined;
1500
+ }
1501
+ export interface AssociateGovernedTermsOutput {}
1484
1502
  export interface AthenaPropertiesInput {
1485
1503
  workgroupName?: string | undefined;
1486
1504
  }
@@ -3054,12 +3072,18 @@ export declare const GlossaryStatus: {
3054
3072
  };
3055
3073
  export type GlossaryStatus =
3056
3074
  (typeof GlossaryStatus)[keyof typeof GlossaryStatus];
3075
+ export declare const GlossaryUsageRestriction: {
3076
+ readonly ASSET_GOVERNED_TERMS: "ASSET_GOVERNED_TERMS";
3077
+ };
3078
+ export type GlossaryUsageRestriction =
3079
+ (typeof GlossaryUsageRestriction)[keyof typeof GlossaryUsageRestriction];
3057
3080
  export interface CreateGlossaryInput {
3058
3081
  domainIdentifier: string | undefined;
3059
3082
  name: string | undefined;
3060
3083
  owningProjectIdentifier: string | undefined;
3061
3084
  description?: string | undefined;
3062
3085
  status?: GlossaryStatus | undefined;
3086
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
3063
3087
  clientToken?: string | undefined;
3064
3088
  }
3065
3089
  export interface CreateGlossaryOutput {
@@ -3069,6 +3093,7 @@ export interface CreateGlossaryOutput {
3069
3093
  owningProjectId: string | undefined;
3070
3094
  description?: string | undefined;
3071
3095
  status?: GlossaryStatus | undefined;
3096
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
3072
3097
  }
3073
3098
  export declare const GlossaryTermStatus: {
3074
3099
  readonly DISABLED: "DISABLED";
@@ -3099,6 +3124,7 @@ export interface CreateGlossaryTermOutput {
3099
3124
  shortDescription?: string | undefined;
3100
3125
  longDescription?: string | undefined;
3101
3126
  termRelations?: TermRelations | undefined;
3127
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
3102
3128
  }
3103
3129
  export interface CreateGroupProfileInput {
3104
3130
  domainIdentifier: string | undefined;
@@ -3176,6 +3202,7 @@ export declare const ProjectStatus: {
3176
3202
  readonly ACTIVE: "ACTIVE";
3177
3203
  readonly DELETE_FAILED: "DELETE_FAILED";
3178
3204
  readonly DELETING: "DELETING";
3205
+ readonly MOVING: "MOVING";
3179
3206
  readonly UPDATE_FAILED: "UPDATE_FAILED";
3180
3207
  readonly UPDATING: "UPDATING";
3181
3208
  };
@@ -3330,36 +3357,6 @@ export interface MetadataFormReference {
3330
3357
  typeIdentifier: string | undefined;
3331
3358
  typeRevision: string | undefined;
3332
3359
  }
3333
- export interface MetadataFormEnforcementDetail {
3334
- requiredMetadataForms?: MetadataFormReference[] | undefined;
3335
- }
3336
- export type RuleDetail =
3337
- | RuleDetail.MetadataFormEnforcementDetailMember
3338
- | RuleDetail.$UnknownMember;
3339
- export declare namespace RuleDetail {
3340
- interface MetadataFormEnforcementDetailMember {
3341
- metadataFormEnforcementDetail: MetadataFormEnforcementDetail;
3342
- $unknown?: never;
3343
- }
3344
- interface $UnknownMember {
3345
- metadataFormEnforcementDetail?: never;
3346
- $unknown: [string, any];
3347
- }
3348
- interface Visitor<T> {
3349
- metadataFormEnforcementDetail: (value: MetadataFormEnforcementDetail) => T;
3350
- _: (name: string, value: any) => T;
3351
- }
3352
- const visit: <T>(value: RuleDetail, visitor: Visitor<T>) => T;
3353
- }
3354
- export interface ProjectsForRule {
3355
- selectionMode: RuleScopeSelectionMode | undefined;
3356
- specificProjects?: string[] | undefined;
3357
- }
3358
- export interface RuleScope {
3359
- assetType?: AssetTypesForRule | undefined;
3360
- dataProduct?: boolean | undefined;
3361
- project?: ProjectsForRule | undefined;
3362
- }
3363
3360
  export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
3364
3361
  export declare const AcceptPredictionsInputFilterSensitiveLog: (
3365
3362
  obj: AcceptPredictionsInput
@@ -8,6 +8,7 @@ import {
8
8
  AssetRevision,
9
9
  AssetScope,
10
10
  AssetTargetNameMap,
11
+ AssetTypesForRule,
11
12
  ConfigurableEnvironmentAction,
12
13
  ConnectionCredentials,
13
14
  ConnectionPropertiesOutput,
@@ -39,11 +40,14 @@ import {
39
40
  FormTypeStatus,
40
41
  GlossaryStatus,
41
42
  GlossaryTermStatus,
43
+ GlossaryUsageRestriction,
44
+ GovernedEntityType,
42
45
  GroupProfileStatus,
43
46
  ListingStatus,
44
47
  ManagedPolicyType,
45
48
  MatchRationaleItem,
46
49
  Member,
50
+ MetadataFormReference,
47
51
  Model,
48
52
  PhysicalEndpoint,
49
53
  PolicyGrantDetail,
@@ -55,8 +59,7 @@ import {
55
59
  ResolutionStrategy,
56
60
  Resource,
57
61
  RuleAction,
58
- RuleDetail,
59
- RuleScope,
62
+ RuleScopeSelectionMode,
60
63
  ScheduleConfiguration,
61
64
  SingleSignOn,
62
65
  Status,
@@ -69,6 +72,36 @@ import {
69
72
  TimeSeriesDataPointSummaryFormOutput,
70
73
  UserDesignation,
71
74
  } from "./models_0";
75
+ export interface MetadataFormEnforcementDetail {
76
+ requiredMetadataForms?: MetadataFormReference[] | undefined;
77
+ }
78
+ export type RuleDetail =
79
+ | RuleDetail.MetadataFormEnforcementDetailMember
80
+ | RuleDetail.$UnknownMember;
81
+ export declare namespace RuleDetail {
82
+ interface MetadataFormEnforcementDetailMember {
83
+ metadataFormEnforcementDetail: MetadataFormEnforcementDetail;
84
+ $unknown?: never;
85
+ }
86
+ interface $UnknownMember {
87
+ metadataFormEnforcementDetail?: never;
88
+ $unknown: [string, any];
89
+ }
90
+ interface Visitor<T> {
91
+ metadataFormEnforcementDetail: (value: MetadataFormEnforcementDetail) => T;
92
+ _: (name: string, value: any) => T;
93
+ }
94
+ const visit: <T>(value: RuleDetail, visitor: Visitor<T>) => T;
95
+ }
96
+ export interface ProjectsForRule {
97
+ selectionMode: RuleScopeSelectionMode | undefined;
98
+ specificProjects?: string[] | undefined;
99
+ }
100
+ export interface RuleScope {
101
+ assetType?: AssetTypesForRule | undefined;
102
+ dataProduct?: boolean | undefined;
103
+ project?: ProjectsForRule | undefined;
104
+ }
72
105
  export interface DomainUnitTarget {
73
106
  domainUnitId: string | undefined;
74
107
  includeChildDomainUnits?: boolean | undefined;
@@ -860,6 +893,13 @@ export interface DisassociateEnvironmentRoleInput {
860
893
  environmentRoleArn: string | undefined;
861
894
  }
862
895
  export interface DisassociateEnvironmentRoleOutput {}
896
+ export interface DisassociateGovernedTermsInput {
897
+ domainIdentifier: string | undefined;
898
+ entityIdentifier: string | undefined;
899
+ entityType: GovernedEntityType | undefined;
900
+ governedGlossaryTerms: string[] | undefined;
901
+ }
902
+ export interface DisassociateGovernedTermsOutput {}
863
903
  export interface DeleteDomainInput {
864
904
  identifier: string | undefined;
865
905
  clientToken?: string | undefined;
@@ -1512,6 +1552,7 @@ export interface GetGlossaryOutput {
1512
1552
  createdBy?: string | undefined;
1513
1553
  updatedAt?: Date | undefined;
1514
1554
  updatedBy?: string | undefined;
1555
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
1515
1556
  }
1516
1557
  export interface UpdateGlossaryInput {
1517
1558
  domainIdentifier: string | undefined;
@@ -1528,6 +1569,7 @@ export interface UpdateGlossaryOutput {
1528
1569
  owningProjectId: string | undefined;
1529
1570
  description?: string | undefined;
1530
1571
  status?: GlossaryStatus | undefined;
1572
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
1531
1573
  }
1532
1574
  export interface DeleteGlossaryTermInput {
1533
1575
  domainIdentifier: string | undefined;
@@ -1551,6 +1593,7 @@ export interface GetGlossaryTermOutput {
1551
1593
  createdBy?: string | undefined;
1552
1594
  updatedAt?: Date | undefined;
1553
1595
  updatedBy?: string | undefined;
1596
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
1554
1597
  }
1555
1598
  export interface UpdateGlossaryTermInput {
1556
1599
  domainIdentifier: string | undefined;
@@ -1571,6 +1614,7 @@ export interface UpdateGlossaryTermOutput {
1571
1614
  shortDescription?: string | undefined;
1572
1615
  longDescription?: string | undefined;
1573
1616
  termRelations?: TermRelations | undefined;
1617
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
1574
1618
  }
1575
1619
  export declare const SortFieldAccountPool: {
1576
1620
  readonly NAME: "NAME";
@@ -2345,48 +2389,6 @@ export interface GetMetadataGenerationRunOutput {
2345
2389
  createdBy?: string | undefined;
2346
2390
  owningProjectId: string | undefined;
2347
2391
  }
2348
- export interface ListMetadataGenerationRunsInput {
2349
- domainIdentifier: string | undefined;
2350
- status?: MetadataGenerationRunStatus | undefined;
2351
- type?: MetadataGenerationRunType | undefined;
2352
- nextToken?: string | undefined;
2353
- maxResults?: number | undefined;
2354
- }
2355
- export interface MetadataGenerationRunItem {
2356
- domainId: string | undefined;
2357
- id: string | undefined;
2358
- target?: MetadataGenerationRunTarget | undefined;
2359
- status?: MetadataGenerationRunStatus | undefined;
2360
- type?: MetadataGenerationRunType | undefined;
2361
- createdAt?: Date | undefined;
2362
- createdBy?: string | undefined;
2363
- owningProjectId: string | undefined;
2364
- }
2365
- export interface ListMetadataGenerationRunsOutput {
2366
- items?: MetadataGenerationRunItem[] | undefined;
2367
- nextToken?: string | undefined;
2368
- }
2369
- export interface StartMetadataGenerationRunInput {
2370
- domainIdentifier: string | undefined;
2371
- type: MetadataGenerationRunType | undefined;
2372
- target: MetadataGenerationRunTarget | undefined;
2373
- clientToken?: string | undefined;
2374
- owningProjectIdentifier: string | undefined;
2375
- }
2376
- export interface StartMetadataGenerationRunOutput {
2377
- domainId: string | undefined;
2378
- id: string | undefined;
2379
- status?: MetadataGenerationRunStatus | undefined;
2380
- type?: MetadataGenerationRunType | undefined;
2381
- createdAt?: Date | undefined;
2382
- createdBy?: string | undefined;
2383
- owningProjectId?: string | undefined;
2384
- }
2385
- export interface PostLineageEventInput {
2386
- domainIdentifier: string | undefined;
2387
- event: Uint8Array | undefined;
2388
- clientToken?: string | undefined;
2389
- }
2390
2392
  export declare const CreateRuleInputFilterSensitiveLog: (
2391
2393
  obj: CreateRuleInput
2392
2394
  ) => any;
@@ -2626,6 +2628,3 @@ export declare const SubscriptionTargetSummaryFilterSensitiveLog: (
2626
2628
  export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (
2627
2629
  obj: ListSubscriptionTargetsOutput
2628
2630
  ) => any;
2629
- export declare const PostLineageEventInputFilterSensitiveLog: (
2630
- obj: PostLineageEventInput
2631
- ) => any;
@@ -27,6 +27,7 @@ import {
27
27
  FormTypeStatus,
28
28
  GlossaryStatus,
29
29
  GlossaryTermStatus,
30
+ GlossaryUsageRestriction,
30
31
  GroupProfileStatus,
31
32
  ManagedPolicyType,
32
33
  MatchRationaleItem,
@@ -41,8 +42,6 @@ import {
41
42
  Resource,
42
43
  RowFilterExpression,
43
44
  RuleAction,
44
- RuleDetail,
45
- RuleScope,
46
45
  Status,
47
46
  SubscribedListing,
48
47
  SubscribedPrincipal,
@@ -57,6 +56,11 @@ import {
57
56
  FailureCause,
58
57
  GrantedEntity,
59
58
  Import,
59
+ MetadataGenerationRunStatus,
60
+ MetadataGenerationRunTarget,
61
+ MetadataGenerationRunType,
62
+ RuleDetail,
63
+ RuleScope,
60
64
  RuleTarget,
61
65
  RuleTargetType,
62
66
  RuleType,
@@ -71,6 +75,48 @@ import {
71
75
  UserProfileStatus,
72
76
  UserProfileType,
73
77
  } from "./models_1";
78
+ export interface ListMetadataGenerationRunsInput {
79
+ domainIdentifier: string | undefined;
80
+ status?: MetadataGenerationRunStatus | undefined;
81
+ type?: MetadataGenerationRunType | undefined;
82
+ nextToken?: string | undefined;
83
+ maxResults?: number | undefined;
84
+ }
85
+ export interface MetadataGenerationRunItem {
86
+ domainId: string | undefined;
87
+ id: string | undefined;
88
+ target?: MetadataGenerationRunTarget | undefined;
89
+ status?: MetadataGenerationRunStatus | undefined;
90
+ type?: MetadataGenerationRunType | undefined;
91
+ createdAt?: Date | undefined;
92
+ createdBy?: string | undefined;
93
+ owningProjectId: string | undefined;
94
+ }
95
+ export interface ListMetadataGenerationRunsOutput {
96
+ items?: MetadataGenerationRunItem[] | undefined;
97
+ nextToken?: string | undefined;
98
+ }
99
+ export interface StartMetadataGenerationRunInput {
100
+ domainIdentifier: string | undefined;
101
+ type: MetadataGenerationRunType | undefined;
102
+ target: MetadataGenerationRunTarget | undefined;
103
+ clientToken?: string | undefined;
104
+ owningProjectIdentifier: string | undefined;
105
+ }
106
+ export interface StartMetadataGenerationRunOutput {
107
+ domainId: string | undefined;
108
+ id: string | undefined;
109
+ status?: MetadataGenerationRunStatus | undefined;
110
+ type?: MetadataGenerationRunType | undefined;
111
+ createdAt?: Date | undefined;
112
+ createdBy?: string | undefined;
113
+ owningProjectId?: string | undefined;
114
+ }
115
+ export interface PostLineageEventInput {
116
+ domainIdentifier: string | undefined;
117
+ event: Uint8Array | undefined;
118
+ clientToken?: string | undefined;
119
+ }
74
120
  export interface PostLineageEventOutput {
75
121
  id?: string | undefined;
76
122
  domainId?: string | undefined;
@@ -294,6 +340,7 @@ export interface GlossaryItem {
294
340
  owningProjectId: string | undefined;
295
341
  description?: string | undefined;
296
342
  status: GlossaryStatus | undefined;
343
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
297
344
  createdAt?: Date | undefined;
298
345
  createdBy?: string | undefined;
299
346
  updatedAt?: Date | undefined;
@@ -309,6 +356,7 @@ export interface GlossaryTermItem {
309
356
  id: string | undefined;
310
357
  name: string | undefined;
311
358
  shortDescription?: string | undefined;
359
+ usageRestrictions?: GlossaryUsageRestriction[] | undefined;
312
360
  longDescription?: string | undefined;
313
361
  termRelations?: TermRelations | undefined;
314
362
  status: GlossaryTermStatus | undefined;
@@ -991,6 +1039,9 @@ export interface UpdateAssetFilterOutput {
991
1039
  effectiveColumnNames?: string[] | undefined;
992
1040
  effectiveRowFilter?: string | undefined;
993
1041
  }
1042
+ export declare const PostLineageEventInputFilterSensitiveLog: (
1043
+ obj: PostLineageEventInput
1044
+ ) => any;
994
1045
  export declare const RejectSubscriptionRequestInputFilterSensitiveLog: (
995
1046
  obj: RejectSubscriptionRequestInput
996
1047
  ) => any;