@aws-sdk/client-datazone 3.873.0 → 3.876.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist-cjs/index.js +147 -23
- package/dist-es/DataZone.js +4 -0
- package/dist-es/commands/AssociateGovernedTermsCommand.js +22 -0
- package/dist-es/commands/DisassociateGovernedTermsCommand.js +22 -0
- package/dist-es/commands/PostLineageEventCommand.js +1 -1
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +13 -8
- package/dist-es/models/models_1.js +8 -4
- package/dist-es/models/models_2.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +67 -0
- package/dist-types/DataZone.d.ts +14 -0
- package/dist-types/DataZoneClient.d.ts +4 -2
- package/dist-types/commands/AssociateGovernedTermsCommand.d.ts +96 -0
- package/dist-types/commands/CreateAssetCommand.d.ts +3 -0
- package/dist-types/commands/CreateAssetRevisionCommand.d.ts +3 -0
- package/dist-types/commands/CreateGlossaryCommand.d.ts +6 -0
- package/dist-types/commands/CreateGlossaryTermCommand.d.ts +3 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateGovernedTermsCommand.d.ts +96 -0
- package/dist-types/commands/GetAssetCommand.d.ts +3 -0
- package/dist-types/commands/GetGlossaryCommand.d.ts +3 -0
- package/dist-types/commands/GetGlossaryTermCommand.d.ts +3 -0
- package/dist-types/commands/GetListingCommand.d.ts +6 -0
- package/dist-types/commands/GetProjectCommand.d.ts +1 -1
- package/dist-types/commands/ListMetadataGenerationRunsCommand.d.ts +1 -1
- package/dist-types/commands/ListProjectsCommand.d.ts +1 -1
- package/dist-types/commands/PostLineageEventCommand.d.ts +1 -2
- package/dist-types/commands/SearchCommand.d.ts +9 -0
- package/dist-types/commands/SearchListingsCommand.d.ts +6 -0
- package/dist-types/commands/StartMetadataGenerationRunCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGlossaryCommand.d.ts +3 -0
- package/dist-types/commands/UpdateGlossaryTermCommand.d.ts +3 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +98 -78
- package/dist-types/models/models_1.d.ts +129 -186
- package/dist-types/models/models_2.d.ts +197 -2
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/DataZone.d.ts +34 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/AssociateGovernedTermsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateGovernedTermsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMetadataGenerationRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/StartMetadataGenerationRunCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +27 -30
- package/dist-types/ts3.4/models/models_1.d.ts +46 -47
- package/dist-types/ts3.4/models/models_2.d.ts +53 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +6 -6
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { AccountInfoFilterSensitiveLog, AccountPoolSummaryFilterSensitiveLog, AccountSourceFilterSensitiveLog, AssetFilterSummaryFilterSensitiveLog, AssetListingFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionSummaryFilterSensitiveLog, CustomParameterFilterSensitiveLog, DetailedGlossaryTermFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
|
|
3
|
+
export var RuleDetail;
|
|
4
|
+
(function (RuleDetail) {
|
|
5
|
+
RuleDetail.visit = (value, visitor) => {
|
|
6
|
+
if (value.metadataFormEnforcementDetail !== undefined)
|
|
7
|
+
return visitor.metadataFormEnforcementDetail(value.metadataFormEnforcementDetail);
|
|
8
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
9
|
+
};
|
|
10
|
+
})(RuleDetail || (RuleDetail = {}));
|
|
3
11
|
export var RuleTarget;
|
|
4
12
|
(function (RuleTarget) {
|
|
5
13
|
RuleTarget.visit = (value, visitor) => {
|
|
@@ -737,7 +745,3 @@ export const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
|
|
|
737
745
|
...obj,
|
|
738
746
|
...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
|
|
739
747
|
});
|
|
740
|
-
export const PostLineageEventInputFilterSensitiveLog = (obj) => ({
|
|
741
|
-
...obj,
|
|
742
|
-
...(obj.event && { event: SENSITIVE_STRING }),
|
|
743
|
-
});
|
|
@@ -101,6 +101,10 @@ export var AssetFilterConfiguration;
|
|
|
101
101
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
102
102
|
};
|
|
103
103
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
104
|
+
export const PostLineageEventInputFilterSensitiveLog = (obj) => ({
|
|
105
|
+
...obj,
|
|
106
|
+
...(obj.event && { event: SENSITIVE_STRING }),
|
|
107
|
+
});
|
|
104
108
|
export const RejectSubscriptionRequestInputFilterSensitiveLog = (obj) => ({
|
|
105
109
|
...obj,
|
|
106
110
|
...(obj.decisionComment && { decisionComment: SENSITIVE_STRING }),
|
|
@@ -88,6 +88,22 @@ export const se_AssociateEnvironmentRoleCommand = async (input, context) => {
|
|
|
88
88
|
b.m("PUT").h(headers).b(body);
|
|
89
89
|
return b.build();
|
|
90
90
|
};
|
|
91
|
+
export const se_AssociateGovernedTermsCommand = async (input, context) => {
|
|
92
|
+
const b = rb(input, context);
|
|
93
|
+
const headers = {
|
|
94
|
+
"content-type": "application/json",
|
|
95
|
+
};
|
|
96
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/associate-governed-terms");
|
|
97
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
98
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
99
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
100
|
+
let body;
|
|
101
|
+
body = JSON.stringify(take(input, {
|
|
102
|
+
governedGlossaryTerms: (_) => _json(_),
|
|
103
|
+
}));
|
|
104
|
+
b.m("PATCH").h(headers).b(body);
|
|
105
|
+
return b.build();
|
|
106
|
+
};
|
|
91
107
|
export const se_CancelMetadataGenerationRunCommand = async (input, context) => {
|
|
92
108
|
const b = rb(input, context);
|
|
93
109
|
const headers = {};
|
|
@@ -420,6 +436,7 @@ export const se_CreateGlossaryCommand = async (input, context) => {
|
|
|
420
436
|
name: [],
|
|
421
437
|
owningProjectIdentifier: [],
|
|
422
438
|
status: [],
|
|
439
|
+
usageRestrictions: (_) => _json(_),
|
|
423
440
|
}));
|
|
424
441
|
b.m("POST").h(headers).b(body);
|
|
425
442
|
return b.build();
|
|
@@ -908,6 +925,22 @@ export const se_DisassociateEnvironmentRoleCommand = async (input, context) => {
|
|
|
908
925
|
b.m("DELETE").h(headers).b(body);
|
|
909
926
|
return b.build();
|
|
910
927
|
};
|
|
928
|
+
export const se_DisassociateGovernedTermsCommand = async (input, context) => {
|
|
929
|
+
const b = rb(input, context);
|
|
930
|
+
const headers = {
|
|
931
|
+
"content-type": "application/json",
|
|
932
|
+
};
|
|
933
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/disassociate-governed-terms");
|
|
934
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
935
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
936
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
937
|
+
let body;
|
|
938
|
+
body = JSON.stringify(take(input, {
|
|
939
|
+
governedGlossaryTerms: (_) => _json(_),
|
|
940
|
+
}));
|
|
941
|
+
b.m("PATCH").h(headers).b(body);
|
|
942
|
+
return b.build();
|
|
943
|
+
};
|
|
911
944
|
export const se_GetAccountPoolCommand = async (input, context) => {
|
|
912
945
|
const b = rb(input, context);
|
|
913
946
|
const headers = {};
|
|
@@ -2548,6 +2581,16 @@ export const de_AssociateEnvironmentRoleCommand = async (output, context) => {
|
|
|
2548
2581
|
await collectBody(output.body, context);
|
|
2549
2582
|
return contents;
|
|
2550
2583
|
};
|
|
2584
|
+
export const de_AssociateGovernedTermsCommand = async (output, context) => {
|
|
2585
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2586
|
+
return de_CommandError(output, context);
|
|
2587
|
+
}
|
|
2588
|
+
const contents = map({
|
|
2589
|
+
$metadata: deserializeMetadata(output),
|
|
2590
|
+
});
|
|
2591
|
+
await collectBody(output.body, context);
|
|
2592
|
+
return contents;
|
|
2593
|
+
};
|
|
2551
2594
|
export const de_CancelMetadataGenerationRunCommand = async (output, context) => {
|
|
2552
2595
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
2553
2596
|
return de_CommandError(output, context);
|
|
@@ -2624,6 +2667,7 @@ export const de_CreateAssetCommand = async (output, context) => {
|
|
|
2624
2667
|
firstRevisionCreatedBy: __expectString,
|
|
2625
2668
|
formsOutput: _json,
|
|
2626
2669
|
glossaryTerms: _json,
|
|
2670
|
+
governedGlossaryTerms: _json,
|
|
2627
2671
|
id: __expectString,
|
|
2628
2672
|
latestTimeSeriesDataPointFormsOutput: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
2629
2673
|
listing: _json,
|
|
@@ -2680,6 +2724,7 @@ export const de_CreateAssetRevisionCommand = async (output, context) => {
|
|
|
2680
2724
|
firstRevisionCreatedBy: __expectString,
|
|
2681
2725
|
formsOutput: _json,
|
|
2682
2726
|
glossaryTerms: _json,
|
|
2727
|
+
governedGlossaryTerms: _json,
|
|
2683
2728
|
id: __expectString,
|
|
2684
2729
|
latestTimeSeriesDataPointFormsOutput: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
2685
2730
|
listing: _json,
|
|
@@ -2992,6 +3037,7 @@ export const de_CreateGlossaryCommand = async (output, context) => {
|
|
|
2992
3037
|
name: __expectString,
|
|
2993
3038
|
owningProjectId: __expectString,
|
|
2994
3039
|
status: __expectString,
|
|
3040
|
+
usageRestrictions: _json,
|
|
2995
3041
|
});
|
|
2996
3042
|
Object.assign(contents, doc);
|
|
2997
3043
|
return contents;
|
|
@@ -3013,6 +3059,7 @@ export const de_CreateGlossaryTermCommand = async (output, context) => {
|
|
|
3013
3059
|
shortDescription: __expectString,
|
|
3014
3060
|
status: __expectString,
|
|
3015
3061
|
termRelations: _json,
|
|
3062
|
+
usageRestrictions: _json,
|
|
3016
3063
|
});
|
|
3017
3064
|
Object.assign(contents, doc);
|
|
3018
3065
|
return contents;
|
|
@@ -3538,6 +3585,16 @@ export const de_DisassociateEnvironmentRoleCommand = async (output, context) =>
|
|
|
3538
3585
|
await collectBody(output.body, context);
|
|
3539
3586
|
return contents;
|
|
3540
3587
|
};
|
|
3588
|
+
export const de_DisassociateGovernedTermsCommand = async (output, context) => {
|
|
3589
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3590
|
+
return de_CommandError(output, context);
|
|
3591
|
+
}
|
|
3592
|
+
const contents = map({
|
|
3593
|
+
$metadata: deserializeMetadata(output),
|
|
3594
|
+
});
|
|
3595
|
+
await collectBody(output.body, context);
|
|
3596
|
+
return contents;
|
|
3597
|
+
};
|
|
3541
3598
|
export const de_GetAccountPoolCommand = async (output, context) => {
|
|
3542
3599
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
3543
3600
|
return de_CommandError(output, context);
|
|
@@ -3580,6 +3637,7 @@ export const de_GetAssetCommand = async (output, context) => {
|
|
|
3580
3637
|
firstRevisionCreatedBy: __expectString,
|
|
3581
3638
|
formsOutput: _json,
|
|
3582
3639
|
glossaryTerms: _json,
|
|
3640
|
+
governedGlossaryTerms: _json,
|
|
3583
3641
|
id: __expectString,
|
|
3584
3642
|
latestTimeSeriesDataPointFormsOutput: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
3585
3643
|
listing: _json,
|
|
@@ -3994,6 +4052,7 @@ export const de_GetGlossaryCommand = async (output, context) => {
|
|
|
3994
4052
|
status: __expectString,
|
|
3995
4053
|
updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3996
4054
|
updatedBy: __expectString,
|
|
4055
|
+
usageRestrictions: _json,
|
|
3997
4056
|
});
|
|
3998
4057
|
Object.assign(contents, doc);
|
|
3999
4058
|
return contents;
|
|
@@ -4019,6 +4078,7 @@ export const de_GetGlossaryTermCommand = async (output, context) => {
|
|
|
4019
4078
|
termRelations: _json,
|
|
4020
4079
|
updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
4021
4080
|
updatedBy: __expectString,
|
|
4081
|
+
usageRestrictions: _json,
|
|
4022
4082
|
});
|
|
4023
4083
|
Object.assign(contents, doc);
|
|
4024
4084
|
return contents;
|
|
@@ -5412,6 +5472,7 @@ export const de_UpdateGlossaryCommand = async (output, context) => {
|
|
|
5412
5472
|
name: __expectString,
|
|
5413
5473
|
owningProjectId: __expectString,
|
|
5414
5474
|
status: __expectString,
|
|
5475
|
+
usageRestrictions: _json,
|
|
5415
5476
|
});
|
|
5416
5477
|
Object.assign(contents, doc);
|
|
5417
5478
|
return contents;
|
|
@@ -5433,6 +5494,7 @@ export const de_UpdateGlossaryTermCommand = async (output, context) => {
|
|
|
5433
5494
|
shortDescription: __expectString,
|
|
5434
5495
|
status: __expectString,
|
|
5435
5496
|
termRelations: _json,
|
|
5497
|
+
usageRestrictions: _json,
|
|
5436
5498
|
});
|
|
5437
5499
|
Object.assign(contents, doc);
|
|
5438
5500
|
return contents;
|
|
@@ -5889,6 +5951,7 @@ const de_AssetItem = (output, context) => {
|
|
|
5889
5951
|
firstRevisionCreatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5890
5952
|
firstRevisionCreatedBy: __expectString,
|
|
5891
5953
|
glossaryTerms: _json,
|
|
5954
|
+
governedGlossaryTerms: _json,
|
|
5892
5955
|
identifier: __expectString,
|
|
5893
5956
|
name: __expectString,
|
|
5894
5957
|
owningProjectId: __expectString,
|
|
@@ -5912,6 +5975,7 @@ const de_AssetListing = (output, context) => {
|
|
|
5912
5975
|
createdAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
5913
5976
|
forms: __expectString,
|
|
5914
5977
|
glossaryTerms: _json,
|
|
5978
|
+
governedGlossaryTerms: _json,
|
|
5915
5979
|
latestTimeSeriesDataPointForms: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
5916
5980
|
owningProjectId: __expectString,
|
|
5917
5981
|
});
|
|
@@ -5925,6 +5989,7 @@ const de_AssetListingItem = (output, context) => {
|
|
|
5925
5989
|
entityRevision: __expectString,
|
|
5926
5990
|
entityType: __expectString,
|
|
5927
5991
|
glossaryTerms: _json,
|
|
5992
|
+
governedGlossaryTerms: _json,
|
|
5928
5993
|
listingCreatedBy: __expectString,
|
|
5929
5994
|
listingId: __expectString,
|
|
5930
5995
|
listingRevision: __expectString,
|
|
@@ -6321,6 +6386,7 @@ const de_GlossaryItem = (output, context) => {
|
|
|
6321
6386
|
status: __expectString,
|
|
6322
6387
|
updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6323
6388
|
updatedBy: __expectString,
|
|
6389
|
+
usageRestrictions: _json,
|
|
6324
6390
|
});
|
|
6325
6391
|
};
|
|
6326
6392
|
const de_GlossaryTermItem = (output, context) => {
|
|
@@ -6338,6 +6404,7 @@ const de_GlossaryTermItem = (output, context) => {
|
|
|
6338
6404
|
termRelations: _json,
|
|
6339
6405
|
updatedAt: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
6340
6406
|
updatedBy: __expectString,
|
|
6407
|
+
usageRestrictions: _json,
|
|
6341
6408
|
});
|
|
6342
6409
|
};
|
|
6343
6410
|
const de_GlueConnection = (output, context) => {
|
package/dist-types/DataZone.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { AcceptSubscriptionRequestCommandInput, AcceptSubscriptionRequestCommand
|
|
|
4
4
|
import { AddEntityOwnerCommandInput, AddEntityOwnerCommandOutput } from "./commands/AddEntityOwnerCommand";
|
|
5
5
|
import { AddPolicyGrantCommandInput, AddPolicyGrantCommandOutput } from "./commands/AddPolicyGrantCommand";
|
|
6
6
|
import { AssociateEnvironmentRoleCommandInput, AssociateEnvironmentRoleCommandOutput } from "./commands/AssociateEnvironmentRoleCommand";
|
|
7
|
+
import { AssociateGovernedTermsCommandInput, AssociateGovernedTermsCommandOutput } from "./commands/AssociateGovernedTermsCommand";
|
|
7
8
|
import { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "./commands/CancelMetadataGenerationRunCommand";
|
|
8
9
|
import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "./commands/CancelSubscriptionCommand";
|
|
9
10
|
import { CreateAccountPoolCommandInput, CreateAccountPoolCommandOutput } from "./commands/CreateAccountPoolCommand";
|
|
@@ -59,6 +60,7 @@ import { DeleteSubscriptionRequestCommandInput, DeleteSubscriptionRequestCommand
|
|
|
59
60
|
import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOutput } from "./commands/DeleteSubscriptionTargetCommand";
|
|
60
61
|
import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
61
62
|
import { DisassociateEnvironmentRoleCommandInput, DisassociateEnvironmentRoleCommandOutput } from "./commands/DisassociateEnvironmentRoleCommand";
|
|
63
|
+
import { DisassociateGovernedTermsCommandInput, DisassociateGovernedTermsCommandOutput } from "./commands/DisassociateGovernedTermsCommand";
|
|
62
64
|
import { GetAccountPoolCommandInput, GetAccountPoolCommandOutput } from "./commands/GetAccountPoolCommand";
|
|
63
65
|
import { GetAssetCommandInput, GetAssetCommandOutput } from "./commands/GetAssetCommand";
|
|
64
66
|
import { GetAssetFilterCommandInput, GetAssetFilterCommandOutput } from "./commands/GetAssetFilterCommand";
|
|
@@ -195,6 +197,12 @@ export interface DataZone {
|
|
|
195
197
|
associateEnvironmentRole(args: AssociateEnvironmentRoleCommandInput, options?: __HttpHandlerOptions): Promise<AssociateEnvironmentRoleCommandOutput>;
|
|
196
198
|
associateEnvironmentRole(args: AssociateEnvironmentRoleCommandInput, cb: (err: any, data?: AssociateEnvironmentRoleCommandOutput) => void): void;
|
|
197
199
|
associateEnvironmentRole(args: AssociateEnvironmentRoleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateEnvironmentRoleCommandOutput) => void): void;
|
|
200
|
+
/**
|
|
201
|
+
* @see {@link AssociateGovernedTermsCommand}
|
|
202
|
+
*/
|
|
203
|
+
associateGovernedTerms(args: AssociateGovernedTermsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateGovernedTermsCommandOutput>;
|
|
204
|
+
associateGovernedTerms(args: AssociateGovernedTermsCommandInput, cb: (err: any, data?: AssociateGovernedTermsCommandOutput) => void): void;
|
|
205
|
+
associateGovernedTerms(args: AssociateGovernedTermsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateGovernedTermsCommandOutput) => void): void;
|
|
198
206
|
/**
|
|
199
207
|
* @see {@link CancelMetadataGenerationRunCommand}
|
|
200
208
|
*/
|
|
@@ -525,6 +533,12 @@ export interface DataZone {
|
|
|
525
533
|
disassociateEnvironmentRole(args: DisassociateEnvironmentRoleCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateEnvironmentRoleCommandOutput>;
|
|
526
534
|
disassociateEnvironmentRole(args: DisassociateEnvironmentRoleCommandInput, cb: (err: any, data?: DisassociateEnvironmentRoleCommandOutput) => void): void;
|
|
527
535
|
disassociateEnvironmentRole(args: DisassociateEnvironmentRoleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateEnvironmentRoleCommandOutput) => void): void;
|
|
536
|
+
/**
|
|
537
|
+
* @see {@link DisassociateGovernedTermsCommand}
|
|
538
|
+
*/
|
|
539
|
+
disassociateGovernedTerms(args: DisassociateGovernedTermsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateGovernedTermsCommandOutput>;
|
|
540
|
+
disassociateGovernedTerms(args: DisassociateGovernedTermsCommandInput, cb: (err: any, data?: DisassociateGovernedTermsCommandOutput) => void): void;
|
|
541
|
+
disassociateGovernedTerms(args: DisassociateGovernedTermsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateGovernedTermsCommandOutput) => void): void;
|
|
528
542
|
/**
|
|
529
543
|
* @see {@link GetAccountPoolCommand}
|
|
530
544
|
*/
|
|
@@ -12,6 +12,7 @@ import { AcceptSubscriptionRequestCommandInput, AcceptSubscriptionRequestCommand
|
|
|
12
12
|
import { AddEntityOwnerCommandInput, AddEntityOwnerCommandOutput } from "./commands/AddEntityOwnerCommand";
|
|
13
13
|
import { AddPolicyGrantCommandInput, AddPolicyGrantCommandOutput } from "./commands/AddPolicyGrantCommand";
|
|
14
14
|
import { AssociateEnvironmentRoleCommandInput, AssociateEnvironmentRoleCommandOutput } from "./commands/AssociateEnvironmentRoleCommand";
|
|
15
|
+
import { AssociateGovernedTermsCommandInput, AssociateGovernedTermsCommandOutput } from "./commands/AssociateGovernedTermsCommand";
|
|
15
16
|
import { CancelMetadataGenerationRunCommandInput, CancelMetadataGenerationRunCommandOutput } from "./commands/CancelMetadataGenerationRunCommand";
|
|
16
17
|
import { CancelSubscriptionCommandInput, CancelSubscriptionCommandOutput } from "./commands/CancelSubscriptionCommand";
|
|
17
18
|
import { CreateAccountPoolCommandInput, CreateAccountPoolCommandOutput } from "./commands/CreateAccountPoolCommand";
|
|
@@ -67,6 +68,7 @@ import { DeleteSubscriptionRequestCommandInput, DeleteSubscriptionRequestCommand
|
|
|
67
68
|
import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOutput } from "./commands/DeleteSubscriptionTargetCommand";
|
|
68
69
|
import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
69
70
|
import { DisassociateEnvironmentRoleCommandInput, DisassociateEnvironmentRoleCommandOutput } from "./commands/DisassociateEnvironmentRoleCommand";
|
|
71
|
+
import { DisassociateGovernedTermsCommandInput, DisassociateGovernedTermsCommandOutput } from "./commands/DisassociateGovernedTermsCommand";
|
|
70
72
|
import { GetAccountPoolCommandInput, GetAccountPoolCommandOutput } from "./commands/GetAccountPoolCommand";
|
|
71
73
|
import { GetAssetCommandInput, GetAssetCommandOutput } from "./commands/GetAssetCommand";
|
|
72
74
|
import { GetAssetFilterCommandInput, GetAssetFilterCommandOutput } from "./commands/GetAssetFilterCommand";
|
|
@@ -177,11 +179,11 @@ export { __Client };
|
|
|
177
179
|
/**
|
|
178
180
|
* @public
|
|
179
181
|
*/
|
|
180
|
-
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataProductCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetDomainUnitCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentCredentialsCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetJobRunCommandInput | GetLineageEventCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetProjectCommandInput | GetProjectProfileCommandInput | GetRuleCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAccountPoolsCommandInput | ListAccountsInAccountPoolCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListConnectionsCommandInput | ListDataProductRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainUnitsForParentCommandInput | ListDomainsCommandInput | ListEntityOwnersCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListJobRunsCommandInput | ListLineageEventsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotificationsCommandInput | ListPolicyGrantsCommandInput | ListProjectMembershipsCommandInput | ListProjectProfilesCommandInput | ListProjectsCommandInput | ListRulesCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
182
|
+
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | AssociateGovernedTermsCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | DisassociateGovernedTermsCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataProductCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetDomainUnitCommandInput | GetEnvironmentActionCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentCredentialsCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetJobRunCommandInput | GetLineageEventCommandInput | GetLineageNodeCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetProjectCommandInput | GetProjectProfileCommandInput | GetRuleCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAccountPoolsCommandInput | ListAccountsInAccountPoolCommandInput | ListAssetFiltersCommandInput | ListAssetRevisionsCommandInput | ListConnectionsCommandInput | ListDataProductRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainUnitsForParentCommandInput | ListDomainsCommandInput | ListEntityOwnersCommandInput | ListEnvironmentActionsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListJobRunsCommandInput | ListLineageEventsCommandInput | ListLineageNodeHistoryCommandInput | ListMetadataGenerationRunsCommandInput | ListNotificationsCommandInput | ListPolicyGrantsCommandInput | ListProjectMembershipsCommandInput | ListProjectProfilesCommandInput | ListProjectsCommandInput | ListRulesCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostLineageEventCommandInput | PostTimeSeriesDataPointsCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
181
183
|
/**
|
|
182
184
|
* @public
|
|
183
185
|
*/
|
|
184
|
-
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataProductCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetDomainUnitCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentCredentialsCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetJobRunCommandOutput | GetLineageEventCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetProjectCommandOutput | GetProjectProfileCommandOutput | GetRuleCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAccountPoolsCommandOutput | ListAccountsInAccountPoolCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListConnectionsCommandOutput | ListDataProductRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainUnitsForParentCommandOutput | ListDomainsCommandOutput | ListEntityOwnersCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListJobRunsCommandOutput | ListLineageEventsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotificationsCommandOutput | ListPolicyGrantsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectProfilesCommandOutput | ListProjectsCommandOutput | ListRulesCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
186
|
+
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | AssociateGovernedTermsCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | DisassociateGovernedTermsCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataProductCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetDomainUnitCommandOutput | GetEnvironmentActionCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentCredentialsCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetJobRunCommandOutput | GetLineageEventCommandOutput | GetLineageNodeCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetProjectCommandOutput | GetProjectProfileCommandOutput | GetRuleCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAccountPoolsCommandOutput | ListAccountsInAccountPoolCommandOutput | ListAssetFiltersCommandOutput | ListAssetRevisionsCommandOutput | ListConnectionsCommandOutput | ListDataProductRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainUnitsForParentCommandOutput | ListDomainsCommandOutput | ListEntityOwnersCommandOutput | ListEnvironmentActionsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListJobRunsCommandOutput | ListLineageEventsCommandOutput | ListLineageNodeHistoryCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotificationsCommandOutput | ListPolicyGrantsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectProfilesCommandOutput | ListProjectsCommandOutput | ListRulesCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostLineageEventCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
185
187
|
/**
|
|
186
188
|
* @public
|
|
187
189
|
*/
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { AssociateGovernedTermsInput, AssociateGovernedTermsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link AssociateGovernedTermsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface AssociateGovernedTermsCommandInput extends AssociateGovernedTermsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link AssociateGovernedTermsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface AssociateGovernedTermsCommandOutput extends AssociateGovernedTermsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const AssociateGovernedTermsCommand_base: {
|
|
25
|
+
new (input: AssociateGovernedTermsCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateGovernedTermsCommandInput, AssociateGovernedTermsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: AssociateGovernedTermsCommandInput): import("@smithy/smithy-client").CommandImpl<AssociateGovernedTermsCommandInput, AssociateGovernedTermsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Associates governed terms with an asset.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, AssociateGovernedTermsCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, AssociateGovernedTermsCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* const client = new DataZoneClient(config);
|
|
37
|
+
* const input = { // AssociateGovernedTermsInput
|
|
38
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* entityIdentifier: "STRING_VALUE", // required
|
|
40
|
+
* entityType: "ASSET", // required
|
|
41
|
+
* governedGlossaryTerms: [ // GovernedGlossaryTerms // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
45
|
+
* const command = new AssociateGovernedTermsCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param AssociateGovernedTermsCommandInput - {@link AssociateGovernedTermsCommandInput}
|
|
52
|
+
* @returns {@link AssociateGovernedTermsCommandOutput}
|
|
53
|
+
* @see {@link AssociateGovernedTermsCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link AssociateGovernedTermsCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ConflictException} (client fault)
|
|
61
|
+
* <p>There is a conflict while performing this action.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The specified resource cannot be found.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>The request was denied due to request throttling.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ValidationException} (client fault)
|
|
73
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
76
|
+
* <p>You do not have permission to perform this action.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link DataZoneServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class AssociateGovernedTermsCommand extends AssociateGovernedTermsCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: AssociateGovernedTermsInput;
|
|
89
|
+
output: {};
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: AssociateGovernedTermsCommandInput;
|
|
93
|
+
output: AssociateGovernedTermsCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -77,6 +77,9 @@ declare const CreateAssetCommand_base: {
|
|
|
77
77
|
* // glossaryTerms: [ // GlossaryTerms
|
|
78
78
|
* // "STRING_VALUE",
|
|
79
79
|
* // ],
|
|
80
|
+
* // governedGlossaryTerms: [ // GovernedGlossaryTerms
|
|
81
|
+
* // "STRING_VALUE",
|
|
82
|
+
* // ],
|
|
80
83
|
* // owningProjectId: "STRING_VALUE", // required
|
|
81
84
|
* // domainId: "STRING_VALUE", // required
|
|
82
85
|
* // listing: { // AssetListingDetails
|
|
@@ -75,6 +75,9 @@ declare const CreateAssetRevisionCommand_base: {
|
|
|
75
75
|
* // glossaryTerms: [ // GlossaryTerms
|
|
76
76
|
* // "STRING_VALUE",
|
|
77
77
|
* // ],
|
|
78
|
+
* // governedGlossaryTerms: [ // GovernedGlossaryTerms
|
|
79
|
+
* // "STRING_VALUE",
|
|
80
|
+
* // ],
|
|
78
81
|
* // owningProjectId: "STRING_VALUE", // required
|
|
79
82
|
* // domainId: "STRING_VALUE", // required
|
|
80
83
|
* // listing: { // AssetListingDetails
|
|
@@ -40,6 +40,9 @@ declare const CreateGlossaryCommand_base: {
|
|
|
40
40
|
* owningProjectIdentifier: "STRING_VALUE", // required
|
|
41
41
|
* description: "STRING_VALUE",
|
|
42
42
|
* status: "DISABLED" || "ENABLED",
|
|
43
|
+
* usageRestrictions: [ // GlossaryUsageRestrictions
|
|
44
|
+
* "ASSET_GOVERNED_TERMS",
|
|
45
|
+
* ],
|
|
43
46
|
* clientToken: "STRING_VALUE",
|
|
44
47
|
* };
|
|
45
48
|
* const command = new CreateGlossaryCommand(input);
|
|
@@ -51,6 +54,9 @@ declare const CreateGlossaryCommand_base: {
|
|
|
51
54
|
* // owningProjectId: "STRING_VALUE", // required
|
|
52
55
|
* // description: "STRING_VALUE",
|
|
53
56
|
* // status: "DISABLED" || "ENABLED",
|
|
57
|
+
* // usageRestrictions: [ // GlossaryUsageRestrictions
|
|
58
|
+
* // "ASSET_GOVERNED_TERMS",
|
|
59
|
+
* // ],
|
|
54
60
|
* // };
|
|
55
61
|
*
|
|
56
62
|
* ```
|
|
@@ -68,7 +68,7 @@ declare const CreateProjectCommand_base: {
|
|
|
68
68
|
* // id: "STRING_VALUE", // required
|
|
69
69
|
* // name: "STRING_VALUE", // required
|
|
70
70
|
* // description: "STRING_VALUE",
|
|
71
|
-
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED" || "UPDATING" || "UPDATE_FAILED",
|
|
71
|
+
* // projectStatus: "ACTIVE" || "DELETING" || "DELETE_FAILED" || "UPDATING" || "UPDATE_FAILED" || "MOVING",
|
|
72
72
|
* // failureReasons: [ // FailureReasons
|
|
73
73
|
* // { // ProjectDeletionError
|
|
74
74
|
* // code: "STRING_VALUE",
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
+
import { DisassociateGovernedTermsInput, DisassociateGovernedTermsOutput } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DisassociateGovernedTermsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DisassociateGovernedTermsCommandInput extends DisassociateGovernedTermsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DisassociateGovernedTermsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DisassociateGovernedTermsCommandOutput extends DisassociateGovernedTermsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DisassociateGovernedTermsCommand_base: {
|
|
25
|
+
new (input: DisassociateGovernedTermsCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateGovernedTermsCommandInput, DisassociateGovernedTermsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DisassociateGovernedTermsCommandInput): import("@smithy/smithy-client").CommandImpl<DisassociateGovernedTermsCommandInput, DisassociateGovernedTermsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Disassociates restricted terms from an asset.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DataZoneClient, DisassociateGovernedTermsCommand } from "@aws-sdk/client-datazone"; // ES Modules import
|
|
35
|
+
* // const { DataZoneClient, DisassociateGovernedTermsCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
|
|
36
|
+
* const client = new DataZoneClient(config);
|
|
37
|
+
* const input = { // DisassociateGovernedTermsInput
|
|
38
|
+
* domainIdentifier: "STRING_VALUE", // required
|
|
39
|
+
* entityIdentifier: "STRING_VALUE", // required
|
|
40
|
+
* entityType: "ASSET", // required
|
|
41
|
+
* governedGlossaryTerms: [ // GovernedGlossaryTerms // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
45
|
+
* const command = new DisassociateGovernedTermsCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param DisassociateGovernedTermsCommandInput - {@link DisassociateGovernedTermsCommandInput}
|
|
52
|
+
* @returns {@link DisassociateGovernedTermsCommandOutput}
|
|
53
|
+
* @see {@link DisassociateGovernedTermsCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link DisassociateGovernedTermsCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ConflictException} (client fault)
|
|
61
|
+
* <p>There is a conflict while performing this action.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>The request has failed because of an unknown error, exception or failure.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The specified resource cannot be found.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
70
|
+
* <p>The request was denied due to request throttling.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ValidationException} (client fault)
|
|
73
|
+
* <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link UnauthorizedException} (client fault)
|
|
76
|
+
* <p>You do not have permission to perform this action.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link DataZoneServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from DataZone service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class DisassociateGovernedTermsCommand extends DisassociateGovernedTermsCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: DisassociateGovernedTermsInput;
|
|
89
|
+
output: {};
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: DisassociateGovernedTermsCommandInput;
|
|
93
|
+
output: DisassociateGovernedTermsCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -56,6 +56,9 @@ declare const GetAssetCommand_base: {
|
|
|
56
56
|
* // glossaryTerms: [ // GlossaryTerms
|
|
57
57
|
* // "STRING_VALUE",
|
|
58
58
|
* // ],
|
|
59
|
+
* // governedGlossaryTerms: [ // GovernedGlossaryTerms
|
|
60
|
+
* // "STRING_VALUE",
|
|
61
|
+
* // ],
|
|
59
62
|
* // owningProjectId: "STRING_VALUE", // required
|
|
60
63
|
* // domainId: "STRING_VALUE", // required
|
|
61
64
|
* // listing: { // AssetListingDetails
|
|
@@ -51,6 +51,9 @@ declare const GetGlossaryCommand_base: {
|
|
|
51
51
|
* // createdBy: "STRING_VALUE",
|
|
52
52
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
53
53
|
* // updatedBy: "STRING_VALUE",
|
|
54
|
+
* // usageRestrictions: [ // GlossaryUsageRestrictions
|
|
55
|
+
* // "ASSET_GOVERNED_TERMS",
|
|
56
|
+
* // ],
|
|
54
57
|
* // };
|
|
55
58
|
*
|
|
56
59
|
* ```
|
|
@@ -60,6 +60,9 @@ declare const GetGlossaryTermCommand_base: {
|
|
|
60
60
|
* // createdBy: "STRING_VALUE",
|
|
61
61
|
* // updatedAt: new Date("TIMESTAMP"),
|
|
62
62
|
* // updatedBy: "STRING_VALUE",
|
|
63
|
+
* // usageRestrictions: [ // GlossaryUsageRestrictions
|
|
64
|
+
* // "ASSET_GOVERNED_TERMS",
|
|
65
|
+
* // ],
|
|
63
66
|
* // };
|
|
64
67
|
*
|
|
65
68
|
* ```
|