@aws-sdk/client-datazone 3.864.0 → 3.867.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 +48 -0
- package/dist-cjs/index.js +496 -77
- package/dist-es/DataZone.js +12 -0
- package/dist-es/commands/CreateAccountPoolCommand.js +23 -0
- package/dist-es/commands/CreateRuleCommand.js +1 -1
- package/dist-es/commands/DeleteAccountPoolCommand.js +22 -0
- package/dist-es/commands/GetAccountPoolCommand.js +23 -0
- package/dist-es/commands/ListAccountPoolsCommand.js +23 -0
- package/dist-es/commands/ListAccountsInAccountPoolCommand.js +23 -0
- package/dist-es/commands/PostLineageEventCommand.js +1 -1
- package/dist-es/commands/RejectSubscriptionRequestCommand.js +1 -1
- package/dist-es/commands/RevokeSubscriptionCommand.js +1 -1
- package/dist-es/commands/UpdateAccountPoolCommand.js +23 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +41 -36
- package/dist-es/models/models_1.js +59 -29
- package/dist-es/models/models_2.js +40 -1
- package/dist-es/pagination/ListAccountPoolsPaginator.js +4 -0
- package/dist-es/pagination/ListAccountsInAccountPoolPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +197 -0
- package/dist-types/DataZone.d.ts +42 -0
- package/dist-types/DataZoneClient.d.ts +8 -2
- package/dist-types/commands/CreateAccountPoolCommand.d.ts +138 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +10 -0
- package/dist-types/commands/CreateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccountPoolCommand.d.ts +89 -0
- package/dist-types/commands/GetAccountPoolCommand.d.ts +115 -0
- package/dist-types/commands/GetProjectCommand.d.ts +5 -0
- package/dist-types/commands/GetProjectProfileCommand.d.ts +3 -0
- package/dist-types/commands/ListAccountPoolsCommand.d.ts +103 -0
- package/dist-types/commands/ListAccountsInAccountPoolCommand.d.ts +102 -0
- package/dist-types/commands/PostLineageEventCommand.d.ts +2 -1
- package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccountPoolCommand.d.ts +139 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +10 -0
- package/dist-types/commands/UpdateProjectProfileCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +289 -235
- package/dist-types/models/models_1.d.ts +511 -515
- package/dist-types/models/models_2.d.ts +582 -2
- package/dist-types/pagination/ListAccountPoolsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAccountsInAccountPoolPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +54 -0
- package/dist-types/ts3.4/DataZone.d.ts +102 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccountPoolCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAccountPoolsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAccountsInAccountPoolCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectPredictionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RejectSubscriptionRequestCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemoveEntityOwnerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RemovePolicyGrantCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateAccountPoolCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +92 -84
- package/dist-types/ts3.4/models/models_1.d.ts +155 -123
- package/dist-types/ts3.4/models/models_2.d.ts +156 -3
- package/dist-types/ts3.4/pagination/ListAccountPoolsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAccountsInAccountPoolPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +72 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -29,6 +29,10 @@ __export(index_exports, {
|
|
|
29
29
|
AcceptSubscriptionRequestInputFilterSensitiveLog: () => AcceptSubscriptionRequestInputFilterSensitiveLog,
|
|
30
30
|
AcceptSubscriptionRequestOutputFilterSensitiveLog: () => AcceptSubscriptionRequestOutputFilterSensitiveLog,
|
|
31
31
|
AccessDeniedException: () => AccessDeniedException,
|
|
32
|
+
AccountInfoFilterSensitiveLog: () => AccountInfoFilterSensitiveLog,
|
|
33
|
+
AccountPoolSummaryFilterSensitiveLog: () => AccountPoolSummaryFilterSensitiveLog,
|
|
34
|
+
AccountSource: () => AccountSource,
|
|
35
|
+
AccountSourceFilterSensitiveLog: () => AccountSourceFilterSensitiveLog,
|
|
32
36
|
ActionParameters: () => ActionParameters,
|
|
33
37
|
AddEntityOwnerCommand: () => AddEntityOwnerCommand,
|
|
34
38
|
AddPolicyGrantCommand: () => AddPolicyGrantCommand,
|
|
@@ -64,6 +68,9 @@ __export(index_exports, {
|
|
|
64
68
|
ConnectionStatus: () => ConnectionStatus,
|
|
65
69
|
ConnectionSummaryFilterSensitiveLog: () => ConnectionSummaryFilterSensitiveLog,
|
|
66
70
|
ConnectionType: () => ConnectionType,
|
|
71
|
+
CreateAccountPoolCommand: () => CreateAccountPoolCommand,
|
|
72
|
+
CreateAccountPoolInputFilterSensitiveLog: () => CreateAccountPoolInputFilterSensitiveLog,
|
|
73
|
+
CreateAccountPoolOutputFilterSensitiveLog: () => CreateAccountPoolOutputFilterSensitiveLog,
|
|
67
74
|
CreateAssetCommand: () => CreateAssetCommand,
|
|
68
75
|
CreateAssetFilterCommand: () => CreateAssetFilterCommand,
|
|
69
76
|
CreateAssetFilterInputFilterSensitiveLog: () => CreateAssetFilterInputFilterSensitiveLog,
|
|
@@ -148,6 +155,7 @@ __export(index_exports, {
|
|
|
148
155
|
DataZoneClient: () => DataZoneClient,
|
|
149
156
|
DataZoneEntityType: () => DataZoneEntityType,
|
|
150
157
|
DataZoneServiceException: () => DataZoneServiceException,
|
|
158
|
+
DeleteAccountPoolCommand: () => DeleteAccountPoolCommand,
|
|
151
159
|
DeleteAssetCommand: () => DeleteAssetCommand,
|
|
152
160
|
DeleteAssetFilterCommand: () => DeleteAssetFilterCommand,
|
|
153
161
|
DeleteAssetTypeCommand: () => DeleteAssetTypeCommand,
|
|
@@ -202,6 +210,8 @@ __export(index_exports, {
|
|
|
202
210
|
FormOutputFilterSensitiveLog: () => FormOutputFilterSensitiveLog,
|
|
203
211
|
FormTypeDataFilterSensitiveLog: () => FormTypeDataFilterSensitiveLog,
|
|
204
212
|
FormTypeStatus: () => FormTypeStatus,
|
|
213
|
+
GetAccountPoolCommand: () => GetAccountPoolCommand,
|
|
214
|
+
GetAccountPoolOutputFilterSensitiveLog: () => GetAccountPoolOutputFilterSensitiveLog,
|
|
205
215
|
GetAssetCommand: () => GetAssetCommand,
|
|
206
216
|
GetAssetFilterCommand: () => GetAssetFilterCommand,
|
|
207
217
|
GetAssetFilterOutputFilterSensitiveLog: () => GetAssetFilterOutputFilterSensitiveLog,
|
|
@@ -290,6 +300,11 @@ __export(index_exports, {
|
|
|
290
300
|
LineageEventProcessingStatus: () => LineageEventProcessingStatus,
|
|
291
301
|
LineageImportStatus: () => LineageImportStatus,
|
|
292
302
|
LineageNodeTypeItemFilterSensitiveLog: () => LineageNodeTypeItemFilterSensitiveLog,
|
|
303
|
+
ListAccountPoolsCommand: () => ListAccountPoolsCommand,
|
|
304
|
+
ListAccountPoolsInputFilterSensitiveLog: () => ListAccountPoolsInputFilterSensitiveLog,
|
|
305
|
+
ListAccountPoolsOutputFilterSensitiveLog: () => ListAccountPoolsOutputFilterSensitiveLog,
|
|
306
|
+
ListAccountsInAccountPoolCommand: () => ListAccountsInAccountPoolCommand,
|
|
307
|
+
ListAccountsInAccountPoolOutputFilterSensitiveLog: () => ListAccountsInAccountPoolOutputFilterSensitiveLog,
|
|
293
308
|
ListAssetFiltersCommand: () => ListAssetFiltersCommand,
|
|
294
309
|
ListAssetFiltersOutputFilterSensitiveLog: () => ListAssetFiltersOutputFilterSensitiveLog,
|
|
295
310
|
ListAssetRevisionsCommand: () => ListAssetRevisionsCommand,
|
|
@@ -395,6 +410,7 @@ __export(index_exports, {
|
|
|
395
410
|
RejectSubscriptionRequestOutputFilterSensitiveLog: () => RejectSubscriptionRequestOutputFilterSensitiveLog,
|
|
396
411
|
RemoveEntityOwnerCommand: () => RemoveEntityOwnerCommand,
|
|
397
412
|
RemovePolicyGrantCommand: () => RemovePolicyGrantCommand,
|
|
413
|
+
ResolutionStrategy: () => ResolutionStrategy,
|
|
398
414
|
ResourceNotFoundException: () => ResourceNotFoundException,
|
|
399
415
|
RevokeSubscriptionCommand: () => RevokeSubscriptionCommand,
|
|
400
416
|
RevokeSubscriptionOutputFilterSensitiveLog: () => RevokeSubscriptionOutputFilterSensitiveLog,
|
|
@@ -430,6 +446,7 @@ __export(index_exports, {
|
|
|
430
446
|
SelfGrantStatus: () => SelfGrantStatus,
|
|
431
447
|
SelfGrantStatusOutput: () => SelfGrantStatusOutput,
|
|
432
448
|
ServiceQuotaExceededException: () => ServiceQuotaExceededException,
|
|
449
|
+
SortFieldAccountPool: () => SortFieldAccountPool,
|
|
433
450
|
SortFieldConnection: () => SortFieldConnection,
|
|
434
451
|
SortFieldProject: () => SortFieldProject,
|
|
435
452
|
SortKey: () => SortKey,
|
|
@@ -464,6 +481,9 @@ __export(index_exports, {
|
|
|
464
481
|
TypesSearchScope: () => TypesSearchScope,
|
|
465
482
|
UnauthorizedException: () => UnauthorizedException,
|
|
466
483
|
UntagResourceCommand: () => UntagResourceCommand,
|
|
484
|
+
UpdateAccountPoolCommand: () => UpdateAccountPoolCommand,
|
|
485
|
+
UpdateAccountPoolInputFilterSensitiveLog: () => UpdateAccountPoolInputFilterSensitiveLog,
|
|
486
|
+
UpdateAccountPoolOutputFilterSensitiveLog: () => UpdateAccountPoolOutputFilterSensitiveLog,
|
|
467
487
|
UpdateAssetFilterCommand: () => UpdateAssetFilterCommand,
|
|
468
488
|
UpdateAssetFilterInputFilterSensitiveLog: () => UpdateAssetFilterInputFilterSensitiveLog,
|
|
469
489
|
UpdateAssetFilterOutputFilterSensitiveLog: () => UpdateAssetFilterOutputFilterSensitiveLog,
|
|
@@ -522,6 +542,8 @@ __export(index_exports, {
|
|
|
522
542
|
UsernamePasswordFilterSensitiveLog: () => UsernamePasswordFilterSensitiveLog,
|
|
523
543
|
ValidationException: () => ValidationException,
|
|
524
544
|
__Client: () => import_smithy_client.Client,
|
|
545
|
+
paginateListAccountPools: () => paginateListAccountPools,
|
|
546
|
+
paginateListAccountsInAccountPool: () => paginateListAccountsInAccountPool,
|
|
525
547
|
paginateListAssetFilters: () => paginateListAssetFilters,
|
|
526
548
|
paginateListAssetRevisions: () => paginateListAssetRevisions,
|
|
527
549
|
paginateListConnections: () => paginateListConnections,
|
|
@@ -878,6 +900,18 @@ var SubscribedPrincipal;
|
|
|
878
900
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
879
901
|
}, "visit");
|
|
880
902
|
})(SubscribedPrincipal || (SubscribedPrincipal = {}));
|
|
903
|
+
var ResolutionStrategy = {
|
|
904
|
+
MANUAL: "MANUAL"
|
|
905
|
+
};
|
|
906
|
+
var AccountSource;
|
|
907
|
+
((AccountSource5) => {
|
|
908
|
+
AccountSource5.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
909
|
+
if (value.accounts !== void 0) return visitor.accounts(value.accounts);
|
|
910
|
+
if (value.customAccountPoolHandler !== void 0)
|
|
911
|
+
return visitor.customAccountPoolHandler(value.customAccountPoolHandler);
|
|
912
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
913
|
+
}, "visit");
|
|
914
|
+
})(AccountSource || (AccountSource = {}));
|
|
881
915
|
var ActionParameters;
|
|
882
916
|
((ActionParameters5) => {
|
|
883
917
|
ActionParameters5.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -1000,8 +1034,8 @@ var UserPolicyGrantPrincipal;
|
|
|
1000
1034
|
}, "visit");
|
|
1001
1035
|
})(UserPolicyGrantPrincipal || (UserPolicyGrantPrincipal = {}));
|
|
1002
1036
|
var PolicyGrantPrincipal;
|
|
1003
|
-
((
|
|
1004
|
-
|
|
1037
|
+
((PolicyGrantPrincipal5) => {
|
|
1038
|
+
PolicyGrantPrincipal5.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1005
1039
|
if (value.user !== void 0) return visitor.user(value.user);
|
|
1006
1040
|
if (value.group !== void 0) return visitor.group(value.group);
|
|
1007
1041
|
if (value.project !== void 0) return visitor.project(value.project);
|
|
@@ -1480,33 +1514,13 @@ var RuleAction = {
|
|
|
1480
1514
|
CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST"
|
|
1481
1515
|
};
|
|
1482
1516
|
var RuleDetail;
|
|
1483
|
-
((
|
|
1484
|
-
|
|
1517
|
+
((RuleDetail5) => {
|
|
1518
|
+
RuleDetail5.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1485
1519
|
if (value.metadataFormEnforcementDetail !== void 0)
|
|
1486
1520
|
return visitor.metadataFormEnforcementDetail(value.metadataFormEnforcementDetail);
|
|
1487
1521
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1488
1522
|
}, "visit");
|
|
1489
1523
|
})(RuleDetail || (RuleDetail = {}));
|
|
1490
|
-
var RuleTarget;
|
|
1491
|
-
((RuleTarget4) => {
|
|
1492
|
-
RuleTarget4.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1493
|
-
if (value.domainUnitTarget !== void 0) return visitor.domainUnitTarget(value.domainUnitTarget);
|
|
1494
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1495
|
-
}, "visit");
|
|
1496
|
-
})(RuleTarget || (RuleTarget = {}));
|
|
1497
|
-
var RuleType = {
|
|
1498
|
-
METADATA_FORM_ENFORCEMENT: "METADATA_FORM_ENFORCEMENT"
|
|
1499
|
-
};
|
|
1500
|
-
var RuleTargetType = {
|
|
1501
|
-
DOMAIN_UNIT: "DOMAIN_UNIT"
|
|
1502
|
-
};
|
|
1503
|
-
var GrantedEntityInput;
|
|
1504
|
-
((GrantedEntityInput4) => {
|
|
1505
|
-
GrantedEntityInput4.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
1506
|
-
if (value.listing !== void 0) return visitor.listing(value.listing);
|
|
1507
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1508
|
-
}, "visit");
|
|
1509
|
-
})(GrantedEntityInput || (GrantedEntityInput = {}));
|
|
1510
1524
|
var AcceptChoiceFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1511
1525
|
...obj,
|
|
1512
1526
|
...obj.editedValue && { editedValue: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -1572,6 +1586,19 @@ var AcceptSubscriptionRequestOutputFilterSensitiveLog = /* @__PURE__ */ __name((
|
|
|
1572
1586
|
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING },
|
|
1573
1587
|
...obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }
|
|
1574
1588
|
}), "AcceptSubscriptionRequestOutputFilterSensitiveLog");
|
|
1589
|
+
var AccountInfoFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1590
|
+
...obj,
|
|
1591
|
+
...obj.awsAccountName && { awsAccountName: import_smithy_client.SENSITIVE_STRING }
|
|
1592
|
+
}), "AccountInfoFilterSensitiveLog");
|
|
1593
|
+
var AccountPoolSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1594
|
+
...obj,
|
|
1595
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
1596
|
+
}), "AccountPoolSummaryFilterSensitiveLog");
|
|
1597
|
+
var AccountSourceFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
1598
|
+
if (obj.accounts !== void 0) return { accounts: obj.accounts.map((item) => AccountInfoFilterSensitiveLog(item)) };
|
|
1599
|
+
if (obj.customAccountPoolHandler !== void 0) return { customAccountPoolHandler: obj.customAccountPoolHandler };
|
|
1600
|
+
if (obj.$unknown !== void 0) return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
1601
|
+
}, "AccountSourceFilterSensitiveLog");
|
|
1575
1602
|
var FormInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1576
1603
|
...obj
|
|
1577
1604
|
}), "FormInputFilterSensitiveLog");
|
|
@@ -1828,6 +1855,18 @@ var ConnectionSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
1828
1855
|
},
|
|
1829
1856
|
...obj.props && { props: ConnectionPropertiesOutputFilterSensitiveLog(obj.props) }
|
|
1830
1857
|
}), "ConnectionSummaryFilterSensitiveLog");
|
|
1858
|
+
var CreateAccountPoolInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1859
|
+
...obj,
|
|
1860
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1861
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1862
|
+
...obj.accountSource && { accountSource: AccountSourceFilterSensitiveLog(obj.accountSource) }
|
|
1863
|
+
}), "CreateAccountPoolInputFilterSensitiveLog");
|
|
1864
|
+
var CreateAccountPoolOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1865
|
+
...obj,
|
|
1866
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
1867
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
1868
|
+
...obj.accountSource && { accountSource: AccountSourceFilterSensitiveLog(obj.accountSource) }
|
|
1869
|
+
}), "CreateAccountPoolOutputFilterSensitiveLog");
|
|
1831
1870
|
var CreateConnectionInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1832
1871
|
...obj,
|
|
1833
1872
|
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -2013,20 +2052,6 @@ var CreateProjectProfileOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj)
|
|
|
2013
2052
|
)
|
|
2014
2053
|
}
|
|
2015
2054
|
}), "CreateProjectProfileOutputFilterSensitiveLog");
|
|
2016
|
-
var CreateRuleInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2017
|
-
...obj,
|
|
2018
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2019
|
-
...obj.target && { target: obj.target },
|
|
2020
|
-
...obj.detail && { detail: obj.detail },
|
|
2021
|
-
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
2022
|
-
}), "CreateRuleInputFilterSensitiveLog");
|
|
2023
|
-
var CreateRuleOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2024
|
-
...obj,
|
|
2025
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2026
|
-
...obj.target && { target: obj.target },
|
|
2027
|
-
...obj.detail && { detail: obj.detail },
|
|
2028
|
-
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
2029
|
-
}), "CreateRuleOutputFilterSensitiveLog");
|
|
2030
2055
|
|
|
2031
2056
|
// src/protocols/Aws_restJson1.ts
|
|
2032
2057
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -2039,6 +2064,26 @@ var import_uuid = require("uuid");
|
|
|
2039
2064
|
|
|
2040
2065
|
// src/models/models_1.ts
|
|
2041
2066
|
|
|
2067
|
+
var RuleTarget;
|
|
2068
|
+
((RuleTarget3) => {
|
|
2069
|
+
RuleTarget3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
2070
|
+
if (value.domainUnitTarget !== void 0) return visitor.domainUnitTarget(value.domainUnitTarget);
|
|
2071
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2072
|
+
}, "visit");
|
|
2073
|
+
})(RuleTarget || (RuleTarget = {}));
|
|
2074
|
+
var RuleType = {
|
|
2075
|
+
METADATA_FORM_ENFORCEMENT: "METADATA_FORM_ENFORCEMENT"
|
|
2076
|
+
};
|
|
2077
|
+
var RuleTargetType = {
|
|
2078
|
+
DOMAIN_UNIT: "DOMAIN_UNIT"
|
|
2079
|
+
};
|
|
2080
|
+
var GrantedEntityInput;
|
|
2081
|
+
((GrantedEntityInput2) => {
|
|
2082
|
+
GrantedEntityInput2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
2083
|
+
if (value.listing !== void 0) return visitor.listing(value.listing);
|
|
2084
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2085
|
+
}, "visit");
|
|
2086
|
+
})(GrantedEntityInput || (GrantedEntityInput = {}));
|
|
2042
2087
|
var SubscriptionGrantStatus = {
|
|
2043
2088
|
GRANTED: "GRANTED",
|
|
2044
2089
|
GRANT_FAILED: "GRANT_FAILED",
|
|
@@ -2175,13 +2220,16 @@ var JobRunStatus = {
|
|
|
2175
2220
|
SUCCESS: "SUCCESS",
|
|
2176
2221
|
TIMED_OUT: "TIMED_OUT"
|
|
2177
2222
|
};
|
|
2178
|
-
var
|
|
2223
|
+
var SortFieldAccountPool = {
|
|
2179
2224
|
NAME: "NAME"
|
|
2180
2225
|
};
|
|
2181
2226
|
var SortOrder = {
|
|
2182
2227
|
ASCENDING: "ASCENDING",
|
|
2183
2228
|
DESCENDING: "DESCENDING"
|
|
2184
2229
|
};
|
|
2230
|
+
var SortFieldConnection = {
|
|
2231
|
+
NAME: "NAME"
|
|
2232
|
+
};
|
|
2185
2233
|
var OwnerPropertiesOutput;
|
|
2186
2234
|
((OwnerPropertiesOutput2) => {
|
|
2187
2235
|
OwnerPropertiesOutput2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -2264,10 +2312,20 @@ var MetadataGenerationTargetType = {
|
|
|
2264
2312
|
var MetadataGenerationRunType = {
|
|
2265
2313
|
BUSINESS_DESCRIPTIONS: "BUSINESS_DESCRIPTIONS"
|
|
2266
2314
|
};
|
|
2267
|
-
var
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
}
|
|
2315
|
+
var CreateRuleInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2316
|
+
...obj,
|
|
2317
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2318
|
+
...obj.target && { target: obj.target },
|
|
2319
|
+
...obj.detail && { detail: obj.detail },
|
|
2320
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
2321
|
+
}), "CreateRuleInputFilterSensitiveLog");
|
|
2322
|
+
var CreateRuleOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2323
|
+
...obj,
|
|
2324
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2325
|
+
...obj.target && { target: obj.target },
|
|
2326
|
+
...obj.detail && { detail: obj.detail },
|
|
2327
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING }
|
|
2328
|
+
}), "CreateRuleOutputFilterSensitiveLog");
|
|
2271
2329
|
var CreateSubscriptionRequestInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2272
2330
|
...obj,
|
|
2273
2331
|
...obj.subscribedPrincipals && { subscribedPrincipals: obj.subscribedPrincipals.map((item) => item) },
|
|
@@ -2446,6 +2504,12 @@ var GetFormTypeOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
2446
2504
|
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
2447
2505
|
...obj.imports && { imports: obj.imports.map((item) => ImportFilterSensitiveLog(item)) }
|
|
2448
2506
|
}), "GetFormTypeOutputFilterSensitiveLog");
|
|
2507
|
+
var GetAccountPoolOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2508
|
+
...obj,
|
|
2509
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
2510
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
2511
|
+
...obj.accountSource && { accountSource: AccountSourceFilterSensitiveLog(obj.accountSource) }
|
|
2512
|
+
}), "GetAccountPoolOutputFilterSensitiveLog");
|
|
2449
2513
|
var GetConnectionOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2450
2514
|
...obj,
|
|
2451
2515
|
...obj.connectionCredentials && { connectionCredentials: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -2574,6 +2638,18 @@ var UpdateGlossaryTermOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
2574
2638
|
...obj.shortDescription && { shortDescription: import_smithy_client.SENSITIVE_STRING },
|
|
2575
2639
|
...obj.longDescription && { longDescription: import_smithy_client.SENSITIVE_STRING }
|
|
2576
2640
|
}), "UpdateGlossaryTermOutputFilterSensitiveLog");
|
|
2641
|
+
var ListAccountPoolsInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2642
|
+
...obj,
|
|
2643
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
2644
|
+
}), "ListAccountPoolsInputFilterSensitiveLog");
|
|
2645
|
+
var ListAccountPoolsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2646
|
+
...obj,
|
|
2647
|
+
...obj.items && { items: obj.items.map((item) => AccountPoolSummaryFilterSensitiveLog(item)) }
|
|
2648
|
+
}), "ListAccountPoolsOutputFilterSensitiveLog");
|
|
2649
|
+
var ListAccountsInAccountPoolOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2650
|
+
...obj,
|
|
2651
|
+
...obj.items && { items: obj.items.map((item) => AccountInfoFilterSensitiveLog(item)) }
|
|
2652
|
+
}), "ListAccountsInAccountPoolOutputFilterSensitiveLog");
|
|
2577
2653
|
var ListAssetFiltersOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2578
2654
|
...obj,
|
|
2579
2655
|
...obj.items && { items: obj.items.map((item) => AssetFilterSummaryFilterSensitiveLog(item)) }
|
|
@@ -2712,31 +2788,12 @@ var PostLineageEventInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
2712
2788
|
...obj,
|
|
2713
2789
|
...obj.event && { event: import_smithy_client.SENSITIVE_STRING }
|
|
2714
2790
|
}), "PostLineageEventInputFilterSensitiveLog");
|
|
2715
|
-
var RejectSubscriptionRequestInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2716
|
-
...obj,
|
|
2717
|
-
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING }
|
|
2718
|
-
}), "RejectSubscriptionRequestInputFilterSensitiveLog");
|
|
2719
|
-
var RejectSubscriptionRequestOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2720
|
-
...obj,
|
|
2721
|
-
...obj.requestReason && { requestReason: import_smithy_client.SENSITIVE_STRING },
|
|
2722
|
-
...obj.subscribedPrincipals && {
|
|
2723
|
-
subscribedPrincipals: obj.subscribedPrincipals.map((item) => SubscribedPrincipalFilterSensitiveLog(item))
|
|
2724
|
-
},
|
|
2725
|
-
...obj.subscribedListings && {
|
|
2726
|
-
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item))
|
|
2727
|
-
},
|
|
2728
|
-
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING },
|
|
2729
|
-
...obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }
|
|
2730
|
-
}), "RejectSubscriptionRequestOutputFilterSensitiveLog");
|
|
2731
|
-
var RevokeSubscriptionOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2732
|
-
...obj,
|
|
2733
|
-
...obj.subscribedPrincipal && {
|
|
2734
|
-
subscribedPrincipal: SubscribedPrincipalFilterSensitiveLog(obj.subscribedPrincipal)
|
|
2735
|
-
},
|
|
2736
|
-
...obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }
|
|
2737
|
-
}), "RevokeSubscriptionOutputFilterSensitiveLog");
|
|
2738
2791
|
|
|
2739
2792
|
// src/models/models_2.ts
|
|
2793
|
+
var RejectRuleBehavior = {
|
|
2794
|
+
ALL: "ALL",
|
|
2795
|
+
NONE: "NONE"
|
|
2796
|
+
};
|
|
2740
2797
|
var SearchOutputAdditionalAttribute = {
|
|
2741
2798
|
FORMS: "FORMS",
|
|
2742
2799
|
TEXT_MATCH_RATIONALE: "TEXT_MATCH_RATIONALE",
|
|
@@ -2816,6 +2873,29 @@ var AssetFilterConfiguration;
|
|
|
2816
2873
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2817
2874
|
}, "visit");
|
|
2818
2875
|
})(AssetFilterConfiguration || (AssetFilterConfiguration = {}));
|
|
2876
|
+
var RejectSubscriptionRequestInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2877
|
+
...obj,
|
|
2878
|
+
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING }
|
|
2879
|
+
}), "RejectSubscriptionRequestInputFilterSensitiveLog");
|
|
2880
|
+
var RejectSubscriptionRequestOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2881
|
+
...obj,
|
|
2882
|
+
...obj.requestReason && { requestReason: import_smithy_client.SENSITIVE_STRING },
|
|
2883
|
+
...obj.subscribedPrincipals && {
|
|
2884
|
+
subscribedPrincipals: obj.subscribedPrincipals.map((item) => SubscribedPrincipalFilterSensitiveLog(item))
|
|
2885
|
+
},
|
|
2886
|
+
...obj.subscribedListings && {
|
|
2887
|
+
subscribedListings: obj.subscribedListings.map((item) => SubscribedListingFilterSensitiveLog(item))
|
|
2888
|
+
},
|
|
2889
|
+
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING },
|
|
2890
|
+
...obj.metadataForms && { metadataForms: obj.metadataForms.map((item) => FormOutputFilterSensitiveLog(item)) }
|
|
2891
|
+
}), "RejectSubscriptionRequestOutputFilterSensitiveLog");
|
|
2892
|
+
var RevokeSubscriptionOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2893
|
+
...obj,
|
|
2894
|
+
...obj.subscribedPrincipal && {
|
|
2895
|
+
subscribedPrincipal: SubscribedPrincipalFilterSensitiveLog(obj.subscribedPrincipal)
|
|
2896
|
+
},
|
|
2897
|
+
...obj.subscribedListing && { subscribedListing: SubscribedListingFilterSensitiveLog(obj.subscribedListing) }
|
|
2898
|
+
}), "RevokeSubscriptionOutputFilterSensitiveLog");
|
|
2819
2899
|
var GetRuleOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2820
2900
|
...obj,
|
|
2821
2901
|
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -2932,6 +3012,18 @@ var SearchUserProfilesOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
2932
3012
|
...obj,
|
|
2933
3013
|
...obj.items && { items: obj.items.map((item) => UserProfileSummaryFilterSensitiveLog(item)) }
|
|
2934
3014
|
}), "SearchUserProfilesOutputFilterSensitiveLog");
|
|
3015
|
+
var UpdateAccountPoolInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3016
|
+
...obj,
|
|
3017
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
3018
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
3019
|
+
...obj.accountSource && { accountSource: AccountSourceFilterSensitiveLog(obj.accountSource) }
|
|
3020
|
+
}), "UpdateAccountPoolInputFilterSensitiveLog");
|
|
3021
|
+
var UpdateAccountPoolOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3022
|
+
...obj,
|
|
3023
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING },
|
|
3024
|
+
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
3025
|
+
...obj.accountSource && { accountSource: AccountSourceFilterSensitiveLog(obj.accountSource) }
|
|
3026
|
+
}), "UpdateAccountPoolOutputFilterSensitiveLog");
|
|
2935
3027
|
var UpdateConnectionInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
2936
3028
|
...obj,
|
|
2937
3029
|
...obj.description && { description: import_smithy_client.SENSITIVE_STRING },
|
|
@@ -3177,6 +3269,25 @@ var se_CancelSubscriptionCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3177
3269
|
b.m("PUT").h(headers).b(body);
|
|
3178
3270
|
return b.build();
|
|
3179
3271
|
}, "se_CancelSubscriptionCommand");
|
|
3272
|
+
var se_CreateAccountPoolCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3273
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3274
|
+
const headers = {
|
|
3275
|
+
"content-type": "application/json"
|
|
3276
|
+
};
|
|
3277
|
+
b.bp("/v2/domains/{domainIdentifier}/account-pools");
|
|
3278
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3279
|
+
let body;
|
|
3280
|
+
body = JSON.stringify(
|
|
3281
|
+
(0, import_smithy_client.take)(input, {
|
|
3282
|
+
accountSource: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "accountSource"),
|
|
3283
|
+
description: [],
|
|
3284
|
+
name: [],
|
|
3285
|
+
resolutionStrategy: []
|
|
3286
|
+
})
|
|
3287
|
+
);
|
|
3288
|
+
b.m("POST").h(headers).b(body);
|
|
3289
|
+
return b.build();
|
|
3290
|
+
}, "se_CreateAccountPoolCommand");
|
|
3180
3291
|
var se_CreateAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3181
3292
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3182
3293
|
const headers = {
|
|
@@ -3728,6 +3839,16 @@ var se_CreateUserProfileCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
3728
3839
|
b.m("POST").h(headers).b(body);
|
|
3729
3840
|
return b.build();
|
|
3730
3841
|
}, "se_CreateUserProfileCommand");
|
|
3842
|
+
var se_DeleteAccountPoolCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3843
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3844
|
+
const headers = {};
|
|
3845
|
+
b.bp("/v2/domains/{domainIdentifier}/account-pools/{identifier}");
|
|
3846
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3847
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
3848
|
+
let body;
|
|
3849
|
+
b.m("DELETE").h(headers).b(body);
|
|
3850
|
+
return b.build();
|
|
3851
|
+
}, "se_DeleteAccountPoolCommand");
|
|
3731
3852
|
var se_DeleteAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3732
3853
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3733
3854
|
const headers = {};
|
|
@@ -4009,6 +4130,16 @@ var se_DisassociateEnvironmentRoleCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4009
4130
|
b.m("DELETE").h(headers).b(body);
|
|
4010
4131
|
return b.build();
|
|
4011
4132
|
}, "se_DisassociateEnvironmentRoleCommand");
|
|
4133
|
+
var se_GetAccountPoolCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4134
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4135
|
+
const headers = {};
|
|
4136
|
+
b.bp("/v2/domains/{domainIdentifier}/account-pools/{identifier}");
|
|
4137
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
4138
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
4139
|
+
let body;
|
|
4140
|
+
b.m("GET").h(headers).b(body);
|
|
4141
|
+
return b.build();
|
|
4142
|
+
}, "se_GetAccountPoolCommand");
|
|
4012
4143
|
var se_GetAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4013
4144
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4014
4145
|
const headers = {};
|
|
@@ -4387,6 +4518,36 @@ var se_GetUserProfileCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
4387
4518
|
b.m("GET").h(headers).q(query).b(body);
|
|
4388
4519
|
return b.build();
|
|
4389
4520
|
}, "se_GetUserProfileCommand");
|
|
4521
|
+
var se_ListAccountPoolsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4522
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4523
|
+
const headers = {};
|
|
4524
|
+
b.bp("/v2/domains/{domainIdentifier}/account-pools");
|
|
4525
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
4526
|
+
const query = (0, import_smithy_client.map)({
|
|
4527
|
+
[_n]: [, input[_n]],
|
|
4528
|
+
[_sB]: [, input[_sB]],
|
|
4529
|
+
[_sO]: [, input[_sO]],
|
|
4530
|
+
[_nT]: [, input[_nT]],
|
|
4531
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()]
|
|
4532
|
+
});
|
|
4533
|
+
let body;
|
|
4534
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
4535
|
+
return b.build();
|
|
4536
|
+
}, "se_ListAccountPoolsCommand");
|
|
4537
|
+
var se_ListAccountsInAccountPoolCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4538
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4539
|
+
const headers = {};
|
|
4540
|
+
b.bp("/v2/domains/{domainIdentifier}/account-pools/{identifier}/accounts");
|
|
4541
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
4542
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
4543
|
+
const query = (0, import_smithy_client.map)({
|
|
4544
|
+
[_nT]: [, input[_nT]],
|
|
4545
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()]
|
|
4546
|
+
});
|
|
4547
|
+
let body;
|
|
4548
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
4549
|
+
return b.build();
|
|
4550
|
+
}, "se_ListAccountsInAccountPoolCommand");
|
|
4390
4551
|
var se_ListAssetFiltersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4391
4552
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4392
4553
|
const headers = {};
|
|
@@ -5220,6 +5381,26 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
5220
5381
|
b.m("DELETE").h(headers).q(query).b(body);
|
|
5221
5382
|
return b.build();
|
|
5222
5383
|
}, "se_UntagResourceCommand");
|
|
5384
|
+
var se_UpdateAccountPoolCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5385
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5386
|
+
const headers = {
|
|
5387
|
+
"content-type": "application/json"
|
|
5388
|
+
};
|
|
5389
|
+
b.bp("/v2/domains/{domainIdentifier}/account-pools/{identifier}");
|
|
5390
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
5391
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
5392
|
+
let body;
|
|
5393
|
+
body = JSON.stringify(
|
|
5394
|
+
(0, import_smithy_client.take)(input, {
|
|
5395
|
+
accountSource: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)(_), "accountSource"),
|
|
5396
|
+
description: [],
|
|
5397
|
+
name: [],
|
|
5398
|
+
resolutionStrategy: []
|
|
5399
|
+
})
|
|
5400
|
+
);
|
|
5401
|
+
b.m("PATCH").h(headers).b(body);
|
|
5402
|
+
return b.build();
|
|
5403
|
+
}, "se_UpdateAccountPoolCommand");
|
|
5223
5404
|
var se_UpdateAssetFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5224
5405
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
5225
5406
|
const headers = {
|
|
@@ -5696,6 +5877,30 @@ var de_CancelSubscriptionCommand = /* @__PURE__ */ __name(async (output, context
|
|
|
5696
5877
|
Object.assign(contents, doc);
|
|
5697
5878
|
return contents;
|
|
5698
5879
|
}, "de_CancelSubscriptionCommand");
|
|
5880
|
+
var de_CreateAccountPoolCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5881
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
5882
|
+
return de_CommandError(output, context);
|
|
5883
|
+
}
|
|
5884
|
+
const contents = (0, import_smithy_client.map)({
|
|
5885
|
+
$metadata: deserializeMetadata(output)
|
|
5886
|
+
});
|
|
5887
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
5888
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
5889
|
+
accountSource: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)), "accountSource"),
|
|
5890
|
+
createdAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)), "createdAt"),
|
|
5891
|
+
createdBy: import_smithy_client.expectString,
|
|
5892
|
+
description: import_smithy_client.expectString,
|
|
5893
|
+
domainId: import_smithy_client.expectString,
|
|
5894
|
+
domainUnitId: import_smithy_client.expectString,
|
|
5895
|
+
id: import_smithy_client.expectString,
|
|
5896
|
+
lastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)), "lastUpdatedAt"),
|
|
5897
|
+
name: import_smithy_client.expectString,
|
|
5898
|
+
resolutionStrategy: import_smithy_client.expectString,
|
|
5899
|
+
updatedBy: import_smithy_client.expectString
|
|
5900
|
+
});
|
|
5901
|
+
Object.assign(contents, doc);
|
|
5902
|
+
return contents;
|
|
5903
|
+
}, "de_CreateAccountPoolCommand");
|
|
5699
5904
|
var de_CreateAssetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5700
5905
|
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
5701
5906
|
return de_CommandError(output, context);
|
|
@@ -6321,6 +6526,16 @@ var de_CreateUserProfileCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
6321
6526
|
Object.assign(contents, doc);
|
|
6322
6527
|
return contents;
|
|
6323
6528
|
}, "de_CreateUserProfileCommand");
|
|
6529
|
+
var de_DeleteAccountPoolCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6530
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
6531
|
+
return de_CommandError(output, context);
|
|
6532
|
+
}
|
|
6533
|
+
const contents = (0, import_smithy_client.map)({
|
|
6534
|
+
$metadata: deserializeMetadata(output)
|
|
6535
|
+
});
|
|
6536
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
6537
|
+
return contents;
|
|
6538
|
+
}, "de_DeleteAccountPoolCommand");
|
|
6324
6539
|
var de_DeleteAssetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6325
6540
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
6326
6541
|
return de_CommandError(output, context);
|
|
@@ -6618,6 +6833,30 @@ var de_DisassociateEnvironmentRoleCommand = /* @__PURE__ */ __name(async (output
|
|
|
6618
6833
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
6619
6834
|
return contents;
|
|
6620
6835
|
}, "de_DisassociateEnvironmentRoleCommand");
|
|
6836
|
+
var de_GetAccountPoolCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6837
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6838
|
+
return de_CommandError(output, context);
|
|
6839
|
+
}
|
|
6840
|
+
const contents = (0, import_smithy_client.map)({
|
|
6841
|
+
$metadata: deserializeMetadata(output)
|
|
6842
|
+
});
|
|
6843
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
6844
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
6845
|
+
accountSource: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)), "accountSource"),
|
|
6846
|
+
createdAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)), "createdAt"),
|
|
6847
|
+
createdBy: import_smithy_client.expectString,
|
|
6848
|
+
description: import_smithy_client.expectString,
|
|
6849
|
+
domainId: import_smithy_client.expectString,
|
|
6850
|
+
domainUnitId: import_smithy_client.expectString,
|
|
6851
|
+
id: import_smithy_client.expectString,
|
|
6852
|
+
lastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)), "lastUpdatedAt"),
|
|
6853
|
+
name: import_smithy_client.expectString,
|
|
6854
|
+
resolutionStrategy: import_smithy_client.expectString,
|
|
6855
|
+
updatedBy: import_smithy_client.expectString
|
|
6856
|
+
});
|
|
6857
|
+
Object.assign(contents, doc);
|
|
6858
|
+
return contents;
|
|
6859
|
+
}, "de_GetAccountPoolCommand");
|
|
6621
6860
|
var de_GetAssetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6622
6861
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6623
6862
|
return de_CommandError(output, context);
|
|
@@ -7442,6 +7681,36 @@ var de_GetUserProfileCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
7442
7681
|
Object.assign(contents, doc);
|
|
7443
7682
|
return contents;
|
|
7444
7683
|
}, "de_GetUserProfileCommand");
|
|
7684
|
+
var de_ListAccountPoolsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
7685
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
7686
|
+
return de_CommandError(output, context);
|
|
7687
|
+
}
|
|
7688
|
+
const contents = (0, import_smithy_client.map)({
|
|
7689
|
+
$metadata: deserializeMetadata(output)
|
|
7690
|
+
});
|
|
7691
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
7692
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
7693
|
+
items: import_smithy_client._json,
|
|
7694
|
+
nextToken: import_smithy_client.expectString
|
|
7695
|
+
});
|
|
7696
|
+
Object.assign(contents, doc);
|
|
7697
|
+
return contents;
|
|
7698
|
+
}, "de_ListAccountPoolsCommand");
|
|
7699
|
+
var de_ListAccountsInAccountPoolCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
7700
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
7701
|
+
return de_CommandError(output, context);
|
|
7702
|
+
}
|
|
7703
|
+
const contents = (0, import_smithy_client.map)({
|
|
7704
|
+
$metadata: deserializeMetadata(output)
|
|
7705
|
+
});
|
|
7706
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
7707
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
7708
|
+
items: import_smithy_client._json,
|
|
7709
|
+
nextToken: import_smithy_client.expectString
|
|
7710
|
+
});
|
|
7711
|
+
Object.assign(contents, doc);
|
|
7712
|
+
return contents;
|
|
7713
|
+
}, "de_ListAccountsInAccountPoolCommand");
|
|
7445
7714
|
var de_ListAssetFiltersCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
7446
7715
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
7447
7716
|
return de_CommandError(output, context);
|
|
@@ -8193,6 +8462,30 @@ var de_UntagResourceCommand = /* @__PURE__ */ __name(async (output, context) =>
|
|
|
8193
8462
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
8194
8463
|
return contents;
|
|
8195
8464
|
}, "de_UntagResourceCommand");
|
|
8465
|
+
var de_UpdateAccountPoolCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
8466
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
8467
|
+
return de_CommandError(output, context);
|
|
8468
|
+
}
|
|
8469
|
+
const contents = (0, import_smithy_client.map)({
|
|
8470
|
+
$metadata: deserializeMetadata(output)
|
|
8471
|
+
});
|
|
8472
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
8473
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
8474
|
+
accountSource: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)), "accountSource"),
|
|
8475
|
+
createdAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)), "createdAt"),
|
|
8476
|
+
createdBy: import_smithy_client.expectString,
|
|
8477
|
+
description: import_smithy_client.expectString,
|
|
8478
|
+
domainId: import_smithy_client.expectString,
|
|
8479
|
+
domainUnitId: import_smithy_client.expectString,
|
|
8480
|
+
id: import_smithy_client.expectString,
|
|
8481
|
+
lastUpdatedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)), "lastUpdatedAt"),
|
|
8482
|
+
name: import_smithy_client.expectString,
|
|
8483
|
+
resolutionStrategy: import_smithy_client.expectString,
|
|
8484
|
+
updatedBy: import_smithy_client.expectString
|
|
8485
|
+
});
|
|
8486
|
+
Object.assign(contents, doc);
|
|
8487
|
+
return contents;
|
|
8488
|
+
}, "de_UpdateAccountPoolCommand");
|
|
8196
8489
|
var de_UpdateAssetFilterCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
8197
8490
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
8198
8491
|
return de_CommandError(output, context);
|
|
@@ -10019,6 +10312,21 @@ var CancelSubscriptionCommand = class extends import_smithy_client.Command.class
|
|
|
10019
10312
|
}
|
|
10020
10313
|
};
|
|
10021
10314
|
|
|
10315
|
+
// src/commands/CreateAccountPoolCommand.ts
|
|
10316
|
+
|
|
10317
|
+
|
|
10318
|
+
|
|
10319
|
+
var CreateAccountPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10320
|
+
return [
|
|
10321
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10322
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10323
|
+
];
|
|
10324
|
+
}).s("DataZone", "CreateAccountPool", {}).n("DataZoneClient", "CreateAccountPoolCommand").f(CreateAccountPoolInputFilterSensitiveLog, CreateAccountPoolOutputFilterSensitiveLog).ser(se_CreateAccountPoolCommand).de(de_CreateAccountPoolCommand).build() {
|
|
10325
|
+
static {
|
|
10326
|
+
__name(this, "CreateAccountPoolCommand");
|
|
10327
|
+
}
|
|
10328
|
+
};
|
|
10329
|
+
|
|
10022
10330
|
// src/commands/CreateAssetCommand.ts
|
|
10023
10331
|
|
|
10024
10332
|
|
|
@@ -10409,6 +10717,21 @@ var CreateUserProfileCommand = class extends import_smithy_client.Command.classB
|
|
|
10409
10717
|
}
|
|
10410
10718
|
};
|
|
10411
10719
|
|
|
10720
|
+
// src/commands/DeleteAccountPoolCommand.ts
|
|
10721
|
+
|
|
10722
|
+
|
|
10723
|
+
|
|
10724
|
+
var DeleteAccountPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
10725
|
+
return [
|
|
10726
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10727
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
10728
|
+
];
|
|
10729
|
+
}).s("DataZone", "DeleteAccountPool", {}).n("DataZoneClient", "DeleteAccountPoolCommand").f(void 0, void 0).ser(se_DeleteAccountPoolCommand).de(de_DeleteAccountPoolCommand).build() {
|
|
10730
|
+
static {
|
|
10731
|
+
__name(this, "DeleteAccountPoolCommand");
|
|
10732
|
+
}
|
|
10733
|
+
};
|
|
10734
|
+
|
|
10412
10735
|
// src/commands/DeleteAssetCommand.ts
|
|
10413
10736
|
|
|
10414
10737
|
|
|
@@ -10784,6 +11107,21 @@ var DisassociateEnvironmentRoleCommand = class extends import_smithy_client.Comm
|
|
|
10784
11107
|
}
|
|
10785
11108
|
};
|
|
10786
11109
|
|
|
11110
|
+
// src/commands/GetAccountPoolCommand.ts
|
|
11111
|
+
|
|
11112
|
+
|
|
11113
|
+
|
|
11114
|
+
var GetAccountPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11115
|
+
return [
|
|
11116
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11117
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11118
|
+
];
|
|
11119
|
+
}).s("DataZone", "GetAccountPool", {}).n("DataZoneClient", "GetAccountPoolCommand").f(void 0, GetAccountPoolOutputFilterSensitiveLog).ser(se_GetAccountPoolCommand).de(de_GetAccountPoolCommand).build() {
|
|
11120
|
+
static {
|
|
11121
|
+
__name(this, "GetAccountPoolCommand");
|
|
11122
|
+
}
|
|
11123
|
+
};
|
|
11124
|
+
|
|
10787
11125
|
// src/commands/GetAssetCommand.ts
|
|
10788
11126
|
|
|
10789
11127
|
|
|
@@ -11294,6 +11632,36 @@ var GetUserProfileCommand = class extends import_smithy_client.Command.classBuil
|
|
|
11294
11632
|
}
|
|
11295
11633
|
};
|
|
11296
11634
|
|
|
11635
|
+
// src/commands/ListAccountPoolsCommand.ts
|
|
11636
|
+
|
|
11637
|
+
|
|
11638
|
+
|
|
11639
|
+
var ListAccountPoolsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11640
|
+
return [
|
|
11641
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11642
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11643
|
+
];
|
|
11644
|
+
}).s("DataZone", "ListAccountPools", {}).n("DataZoneClient", "ListAccountPoolsCommand").f(ListAccountPoolsInputFilterSensitiveLog, ListAccountPoolsOutputFilterSensitiveLog).ser(se_ListAccountPoolsCommand).de(de_ListAccountPoolsCommand).build() {
|
|
11645
|
+
static {
|
|
11646
|
+
__name(this, "ListAccountPoolsCommand");
|
|
11647
|
+
}
|
|
11648
|
+
};
|
|
11649
|
+
|
|
11650
|
+
// src/commands/ListAccountsInAccountPoolCommand.ts
|
|
11651
|
+
|
|
11652
|
+
|
|
11653
|
+
|
|
11654
|
+
var ListAccountsInAccountPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
11655
|
+
return [
|
|
11656
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
11657
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
11658
|
+
];
|
|
11659
|
+
}).s("DataZone", "ListAccountsInAccountPool", {}).n("DataZoneClient", "ListAccountsInAccountPoolCommand").f(void 0, ListAccountsInAccountPoolOutputFilterSensitiveLog).ser(se_ListAccountsInAccountPoolCommand).de(de_ListAccountsInAccountPoolCommand).build() {
|
|
11660
|
+
static {
|
|
11661
|
+
__name(this, "ListAccountsInAccountPoolCommand");
|
|
11662
|
+
}
|
|
11663
|
+
};
|
|
11664
|
+
|
|
11297
11665
|
// src/commands/ListAssetFiltersCommand.ts
|
|
11298
11666
|
|
|
11299
11667
|
|
|
@@ -12014,6 +12382,21 @@ var UntagResourceCommand = class extends import_smithy_client.Command.classBuild
|
|
|
12014
12382
|
}
|
|
12015
12383
|
};
|
|
12016
12384
|
|
|
12385
|
+
// src/commands/UpdateAccountPoolCommand.ts
|
|
12386
|
+
|
|
12387
|
+
|
|
12388
|
+
|
|
12389
|
+
var UpdateAccountPoolCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
12390
|
+
return [
|
|
12391
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
12392
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
12393
|
+
];
|
|
12394
|
+
}).s("DataZone", "UpdateAccountPool", {}).n("DataZoneClient", "UpdateAccountPoolCommand").f(UpdateAccountPoolInputFilterSensitiveLog, UpdateAccountPoolOutputFilterSensitiveLog).ser(se_UpdateAccountPoolCommand).de(de_UpdateAccountPoolCommand).build() {
|
|
12395
|
+
static {
|
|
12396
|
+
__name(this, "UpdateAccountPoolCommand");
|
|
12397
|
+
}
|
|
12398
|
+
};
|
|
12399
|
+
|
|
12017
12400
|
// src/commands/UpdateAssetFilterCommand.ts
|
|
12018
12401
|
|
|
12019
12402
|
|
|
@@ -12293,6 +12676,7 @@ var commands = {
|
|
|
12293
12676
|
AssociateEnvironmentRoleCommand,
|
|
12294
12677
|
CancelMetadataGenerationRunCommand,
|
|
12295
12678
|
CancelSubscriptionCommand,
|
|
12679
|
+
CreateAccountPoolCommand,
|
|
12296
12680
|
CreateAssetCommand,
|
|
12297
12681
|
CreateAssetFilterCommand,
|
|
12298
12682
|
CreateAssetRevisionCommand,
|
|
@@ -12319,6 +12703,7 @@ var commands = {
|
|
|
12319
12703
|
CreateSubscriptionRequestCommand,
|
|
12320
12704
|
CreateSubscriptionTargetCommand,
|
|
12321
12705
|
CreateUserProfileCommand,
|
|
12706
|
+
DeleteAccountPoolCommand,
|
|
12322
12707
|
DeleteAssetCommand,
|
|
12323
12708
|
DeleteAssetFilterCommand,
|
|
12324
12709
|
DeleteAssetTypeCommand,
|
|
@@ -12344,6 +12729,7 @@ var commands = {
|
|
|
12344
12729
|
DeleteSubscriptionTargetCommand,
|
|
12345
12730
|
DeleteTimeSeriesDataPointsCommand,
|
|
12346
12731
|
DisassociateEnvironmentRoleCommand,
|
|
12732
|
+
GetAccountPoolCommand,
|
|
12347
12733
|
GetAssetCommand,
|
|
12348
12734
|
GetAssetFilterCommand,
|
|
12349
12735
|
GetAssetTypeCommand,
|
|
@@ -12378,6 +12764,8 @@ var commands = {
|
|
|
12378
12764
|
GetSubscriptionTargetCommand,
|
|
12379
12765
|
GetTimeSeriesDataPointCommand,
|
|
12380
12766
|
GetUserProfileCommand,
|
|
12767
|
+
ListAccountPoolsCommand,
|
|
12768
|
+
ListAccountsInAccountPoolCommand,
|
|
12381
12769
|
ListAssetFiltersCommand,
|
|
12382
12770
|
ListAssetRevisionsCommand,
|
|
12383
12771
|
ListConnectionsCommand,
|
|
@@ -12426,6 +12814,7 @@ var commands = {
|
|
|
12426
12814
|
StartMetadataGenerationRunCommand,
|
|
12427
12815
|
TagResourceCommand,
|
|
12428
12816
|
UntagResourceCommand,
|
|
12817
|
+
UpdateAccountPoolCommand,
|
|
12429
12818
|
UpdateAssetFilterCommand,
|
|
12430
12819
|
UpdateConnectionCommand,
|
|
12431
12820
|
UpdateDataSourceCommand,
|
|
@@ -12452,6 +12841,14 @@ var DataZone = class extends DataZoneClient {
|
|
|
12452
12841
|
};
|
|
12453
12842
|
(0, import_smithy_client.createAggregatedClient)(commands, DataZone);
|
|
12454
12843
|
|
|
12844
|
+
// src/pagination/ListAccountPoolsPaginator.ts
|
|
12845
|
+
|
|
12846
|
+
var paginateListAccountPools = (0, import_core.createPaginator)(DataZoneClient, ListAccountPoolsCommand, "nextToken", "nextToken", "maxResults");
|
|
12847
|
+
|
|
12848
|
+
// src/pagination/ListAccountsInAccountPoolPaginator.ts
|
|
12849
|
+
|
|
12850
|
+
var paginateListAccountsInAccountPool = (0, import_core.createPaginator)(DataZoneClient, ListAccountsInAccountPoolCommand, "nextToken", "nextToken", "maxResults");
|
|
12851
|
+
|
|
12455
12852
|
// src/pagination/ListAssetFiltersPaginator.ts
|
|
12456
12853
|
|
|
12457
12854
|
var paginateListAssetFilters = (0, import_core.createPaginator)(DataZoneClient, ListAssetFiltersCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -12606,6 +13003,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12606
13003
|
AssociateEnvironmentRoleCommand,
|
|
12607
13004
|
CancelMetadataGenerationRunCommand,
|
|
12608
13005
|
CancelSubscriptionCommand,
|
|
13006
|
+
CreateAccountPoolCommand,
|
|
12609
13007
|
CreateAssetCommand,
|
|
12610
13008
|
CreateAssetFilterCommand,
|
|
12611
13009
|
CreateAssetRevisionCommand,
|
|
@@ -12632,6 +13030,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12632
13030
|
CreateSubscriptionRequestCommand,
|
|
12633
13031
|
CreateSubscriptionTargetCommand,
|
|
12634
13032
|
CreateUserProfileCommand,
|
|
13033
|
+
DeleteAccountPoolCommand,
|
|
12635
13034
|
DeleteAssetCommand,
|
|
12636
13035
|
DeleteAssetFilterCommand,
|
|
12637
13036
|
DeleteAssetTypeCommand,
|
|
@@ -12657,6 +13056,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12657
13056
|
DeleteSubscriptionTargetCommand,
|
|
12658
13057
|
DeleteTimeSeriesDataPointsCommand,
|
|
12659
13058
|
DisassociateEnvironmentRoleCommand,
|
|
13059
|
+
GetAccountPoolCommand,
|
|
12660
13060
|
GetAssetCommand,
|
|
12661
13061
|
GetAssetFilterCommand,
|
|
12662
13062
|
GetAssetTypeCommand,
|
|
@@ -12691,6 +13091,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12691
13091
|
GetSubscriptionTargetCommand,
|
|
12692
13092
|
GetTimeSeriesDataPointCommand,
|
|
12693
13093
|
GetUserProfileCommand,
|
|
13094
|
+
ListAccountPoolsCommand,
|
|
13095
|
+
ListAccountsInAccountPoolCommand,
|
|
12694
13096
|
ListAssetFiltersCommand,
|
|
12695
13097
|
ListAssetRevisionsCommand,
|
|
12696
13098
|
ListConnectionsCommand,
|
|
@@ -12739,6 +13141,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12739
13141
|
StartMetadataGenerationRunCommand,
|
|
12740
13142
|
TagResourceCommand,
|
|
12741
13143
|
UntagResourceCommand,
|
|
13144
|
+
UpdateAccountPoolCommand,
|
|
12742
13145
|
UpdateAssetFilterCommand,
|
|
12743
13146
|
UpdateConnectionCommand,
|
|
12744
13147
|
UpdateDataSourceCommand,
|
|
@@ -12757,6 +13160,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12757
13160
|
UpdateSubscriptionRequestCommand,
|
|
12758
13161
|
UpdateSubscriptionTargetCommand,
|
|
12759
13162
|
UpdateUserProfileCommand,
|
|
13163
|
+
paginateListAccountPools,
|
|
13164
|
+
paginateListAccountsInAccountPool,
|
|
12760
13165
|
paginateListAssetFilters,
|
|
12761
13166
|
paginateListAssetRevisions,
|
|
12762
13167
|
paginateListConnections,
|
|
@@ -12803,6 +13208,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12803
13208
|
SubscriptionRequestStatus,
|
|
12804
13209
|
SubscribedListingItem,
|
|
12805
13210
|
SubscribedPrincipal,
|
|
13211
|
+
ResolutionStrategy,
|
|
13212
|
+
AccountSource,
|
|
12806
13213
|
ActionParameters,
|
|
12807
13214
|
DataZoneEntityType,
|
|
12808
13215
|
OwnerProperties,
|
|
@@ -12875,10 +13282,6 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12875
13282
|
Status,
|
|
12876
13283
|
RuleAction,
|
|
12877
13284
|
RuleDetail,
|
|
12878
|
-
RuleTarget,
|
|
12879
|
-
RuleType,
|
|
12880
|
-
RuleTargetType,
|
|
12881
|
-
GrantedEntityInput,
|
|
12882
13285
|
AcceptChoiceFilterSensitiveLog,
|
|
12883
13286
|
AcceptPredictionsInputFilterSensitiveLog,
|
|
12884
13287
|
AcceptSubscriptionRequestInputFilterSensitiveLog,
|
|
@@ -12891,6 +13294,9 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12891
13294
|
SubscribedProjectFilterSensitiveLog,
|
|
12892
13295
|
SubscribedPrincipalFilterSensitiveLog,
|
|
12893
13296
|
AcceptSubscriptionRequestOutputFilterSensitiveLog,
|
|
13297
|
+
AccountInfoFilterSensitiveLog,
|
|
13298
|
+
AccountPoolSummaryFilterSensitiveLog,
|
|
13299
|
+
AccountSourceFilterSensitiveLog,
|
|
12894
13300
|
FormInputFilterSensitiveLog,
|
|
12895
13301
|
CreateAssetInputFilterSensitiveLog,
|
|
12896
13302
|
CreateAssetOutputFilterSensitiveLog,
|
|
@@ -12931,6 +13337,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12931
13337
|
GlueConnectionFilterSensitiveLog,
|
|
12932
13338
|
PhysicalEndpointFilterSensitiveLog,
|
|
12933
13339
|
ConnectionSummaryFilterSensitiveLog,
|
|
13340
|
+
CreateAccountPoolInputFilterSensitiveLog,
|
|
13341
|
+
CreateAccountPoolOutputFilterSensitiveLog,
|
|
12934
13342
|
CreateConnectionInputFilterSensitiveLog,
|
|
12935
13343
|
CreateConnectionOutputFilterSensitiveLog,
|
|
12936
13344
|
CreateDataProductInputFilterSensitiveLog,
|
|
@@ -12960,8 +13368,10 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12960
13368
|
EnvironmentConfigurationFilterSensitiveLog,
|
|
12961
13369
|
CreateProjectProfileInputFilterSensitiveLog,
|
|
12962
13370
|
CreateProjectProfileOutputFilterSensitiveLog,
|
|
12963
|
-
|
|
12964
|
-
|
|
13371
|
+
RuleTarget,
|
|
13372
|
+
RuleType,
|
|
13373
|
+
RuleTargetType,
|
|
13374
|
+
GrantedEntityInput,
|
|
12965
13375
|
SubscriptionGrantStatus,
|
|
12966
13376
|
GrantedEntity,
|
|
12967
13377
|
SubscriptionGrantOverallStatus,
|
|
@@ -12982,8 +13392,9 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12982
13392
|
JobType,
|
|
12983
13393
|
JobRunMode,
|
|
12984
13394
|
JobRunStatus,
|
|
12985
|
-
|
|
13395
|
+
SortFieldAccountPool,
|
|
12986
13396
|
SortOrder,
|
|
13397
|
+
SortFieldConnection,
|
|
12987
13398
|
OwnerPropertiesOutput,
|
|
12988
13399
|
ListingItem,
|
|
12989
13400
|
OpenLineageRunState,
|
|
@@ -12999,7 +13410,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
12999
13410
|
MetadataGenerationRunStatus,
|
|
13000
13411
|
MetadataGenerationTargetType,
|
|
13001
13412
|
MetadataGenerationRunType,
|
|
13002
|
-
|
|
13413
|
+
CreateRuleInputFilterSensitiveLog,
|
|
13414
|
+
CreateRuleOutputFilterSensitiveLog,
|
|
13003
13415
|
CreateSubscriptionRequestInputFilterSensitiveLog,
|
|
13004
13416
|
CreateSubscriptionRequestOutputFilterSensitiveLog,
|
|
13005
13417
|
CreateSubscriptionTargetInputFilterSensitiveLog,
|
|
@@ -13028,6 +13440,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13028
13440
|
UpdateDomainUnitOutputFilterSensitiveLog,
|
|
13029
13441
|
ImportFilterSensitiveLog,
|
|
13030
13442
|
GetFormTypeOutputFilterSensitiveLog,
|
|
13443
|
+
GetAccountPoolOutputFilterSensitiveLog,
|
|
13031
13444
|
GetConnectionOutputFilterSensitiveLog,
|
|
13032
13445
|
GetEnvironmentOutputFilterSensitiveLog,
|
|
13033
13446
|
GetEnvironmentBlueprintOutputFilterSensitiveLog,
|
|
@@ -13048,6 +13461,9 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13048
13461
|
GetGlossaryTermOutputFilterSensitiveLog,
|
|
13049
13462
|
UpdateGlossaryTermInputFilterSensitiveLog,
|
|
13050
13463
|
UpdateGlossaryTermOutputFilterSensitiveLog,
|
|
13464
|
+
ListAccountPoolsInputFilterSensitiveLog,
|
|
13465
|
+
ListAccountPoolsOutputFilterSensitiveLog,
|
|
13466
|
+
ListAccountsInAccountPoolOutputFilterSensitiveLog,
|
|
13051
13467
|
ListAssetFiltersOutputFilterSensitiveLog,
|
|
13052
13468
|
ListConnectionsOutputFilterSensitiveLog,
|
|
13053
13469
|
ListDataSourceRunActivitiesOutputFilterSensitiveLog,
|
|
@@ -13076,9 +13492,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13076
13492
|
SubscriptionTargetSummaryFilterSensitiveLog,
|
|
13077
13493
|
ListSubscriptionTargetsOutputFilterSensitiveLog,
|
|
13078
13494
|
PostLineageEventInputFilterSensitiveLog,
|
|
13079
|
-
|
|
13080
|
-
RejectSubscriptionRequestOutputFilterSensitiveLog,
|
|
13081
|
-
RevokeSubscriptionOutputFilterSensitiveLog,
|
|
13495
|
+
RejectRuleBehavior,
|
|
13082
13496
|
SearchOutputAdditionalAttribute,
|
|
13083
13497
|
InventorySearchScope,
|
|
13084
13498
|
SearchInventoryResultItem,
|
|
@@ -13090,6 +13504,9 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13090
13504
|
FilterClause,
|
|
13091
13505
|
RowFilter,
|
|
13092
13506
|
AssetFilterConfiguration,
|
|
13507
|
+
RejectSubscriptionRequestInputFilterSensitiveLog,
|
|
13508
|
+
RejectSubscriptionRequestOutputFilterSensitiveLog,
|
|
13509
|
+
RevokeSubscriptionOutputFilterSensitiveLog,
|
|
13093
13510
|
GetRuleOutputFilterSensitiveLog,
|
|
13094
13511
|
RuleSummaryFilterSensitiveLog,
|
|
13095
13512
|
ListRulesOutputFilterSensitiveLog,
|
|
@@ -13111,6 +13528,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
13111
13528
|
SearchUserProfilesInputFilterSensitiveLog,
|
|
13112
13529
|
UserProfileSummaryFilterSensitiveLog,
|
|
13113
13530
|
SearchUserProfilesOutputFilterSensitiveLog,
|
|
13531
|
+
UpdateAccountPoolInputFilterSensitiveLog,
|
|
13532
|
+
UpdateAccountPoolOutputFilterSensitiveLog,
|
|
13114
13533
|
UpdateConnectionInputFilterSensitiveLog,
|
|
13115
13534
|
UpdateConnectionOutputFilterSensitiveLog,
|
|
13116
13535
|
UpdateEnvironmentOutputFilterSensitiveLog,
|