@aws-sdk/client-datazone 3.999.0 → 3.1001.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 +7 -0
- package/dist-cjs/index.js +39 -8
- package/dist-cjs/schemas/schemas_0.js +113 -40
- package/dist-es/DataZone.js +4 -0
- package/dist-es/commands/QueryGraphCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +18 -8
- package/dist-es/pagination/QueryGraphPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +96 -23
- package/dist-types/DataZone.d.ts +14 -0
- package/dist-types/DataZoneClient.d.ts +3 -2
- package/dist-types/commands/CreateSubscriptionTargetCommand.d.ts +2 -1
- package/dist-types/commands/QueryGraphCommand.d.ts +169 -0
- package/dist-types/commands/SearchListingsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +50 -16
- package/dist-types/models/models_0.d.ts +11 -85
- package/dist-types/models/models_1.d.ts +263 -274
- package/dist-types/models/models_2.d.ts +345 -3
- package/dist-types/pagination/QueryGraphPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +9 -0
- package/dist-types/ts3.4/DataZone.d.ts +24 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CreateSubscriptionTargetCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/QueryGraphCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +25 -10
- package/dist-types/ts3.4/models/models_0.d.ts +3 -18
- package/dist-types/ts3.4/models/models_1.d.ts +69 -104
- package/dist-types/ts3.4/models/models_2.d.ts +143 -1
- package/dist-types/ts3.4/pagination/QueryGraphPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -0
- package/package.json +14 -14
package/dist-es/models/enums.js
CHANGED
|
@@ -548,14 +548,8 @@ export const MetadataGenerationRunStatus = {
|
|
|
548
548
|
export const MetadataGenerationTargetType = {
|
|
549
549
|
ASSET: "ASSET",
|
|
550
550
|
};
|
|
551
|
-
export const
|
|
552
|
-
|
|
553
|
-
NONE: "NONE",
|
|
554
|
-
};
|
|
555
|
-
export const SearchOutputAdditionalAttribute = {
|
|
556
|
-
FORMS: "FORMS",
|
|
557
|
-
TEXT_MATCH_RATIONALE: "TEXT_MATCH_RATIONALE",
|
|
558
|
-
TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS",
|
|
551
|
+
export const GraphEntityType = {
|
|
552
|
+
LINEAGE_NODE: "LINEAGE_NODE",
|
|
559
553
|
};
|
|
560
554
|
export const FilterOperator = {
|
|
561
555
|
EQ: "EQ",
|
|
@@ -565,6 +559,22 @@ export const FilterOperator = {
|
|
|
565
559
|
LT: "LT",
|
|
566
560
|
TEXT_SEARCH: "TEXT_SEARCH",
|
|
567
561
|
};
|
|
562
|
+
export const RelationDirection = {
|
|
563
|
+
IN: "IN",
|
|
564
|
+
OUT: "OUT",
|
|
565
|
+
};
|
|
566
|
+
export const RelationType = {
|
|
567
|
+
LINEAGE: "LINEAGE",
|
|
568
|
+
};
|
|
569
|
+
export const RejectRuleBehavior = {
|
|
570
|
+
ALL: "ALL",
|
|
571
|
+
NONE: "NONE",
|
|
572
|
+
};
|
|
573
|
+
export const SearchOutputAdditionalAttribute = {
|
|
574
|
+
FORMS: "FORMS",
|
|
575
|
+
TEXT_MATCH_RATIONALE: "TEXT_MATCH_RATIONALE",
|
|
576
|
+
TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS",
|
|
577
|
+
};
|
|
568
578
|
export const InventorySearchScope = {
|
|
569
579
|
ASSET: "ASSET",
|
|
570
580
|
DATA_PRODUCT: "DATA_PRODUCT",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { QueryGraphCommand } from "../commands/QueryGraphCommand";
|
|
3
|
+
import { DataZoneClient } from "../DataZoneClient";
|
|
4
|
+
export const paginateQueryGraph = createPaginator(DataZoneClient, QueryGraphCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -31,6 +31,7 @@ export * from "./ListSubscriptionRequestsPaginator";
|
|
|
31
31
|
export * from "./ListSubscriptionsPaginator";
|
|
32
32
|
export * from "./ListSubscriptionTargetsPaginator";
|
|
33
33
|
export * from "./ListTimeSeriesDataPointsPaginator";
|
|
34
|
+
export * from "./QueryGraphPaginator";
|
|
34
35
|
export * from "./SearchPaginator";
|
|
35
36
|
export * from "./SearchGroupProfilesPaginator";
|
|
36
37
|
export * from "./SearchListingsPaginator";
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
const _A = "Attributes";
|
|
2
|
-
const _AA = "
|
|
2
|
+
const _AA = "AdditionalAttributes";
|
|
3
3
|
const _AAN = "AwsAccountName";
|
|
4
4
|
const _AAS = "AcceptedAssetScope";
|
|
5
5
|
const _AASc = "AcceptedAssetScopes";
|
|
6
|
+
const _AAw = "AwsAccount";
|
|
6
7
|
const _AC = "AcceptChoice";
|
|
7
8
|
const _ACI = "AuthenticationConfigurationInput";
|
|
8
9
|
const _ACLP = "AwsConsoleLinkParameters";
|
|
@@ -352,11 +353,12 @@ const _EFR = "EnvironmentFailureReasons";
|
|
|
352
353
|
const _EFRL = "EnvironmentFailureReasonsList";
|
|
353
354
|
const _EN = "EnvironmentName";
|
|
354
355
|
const _EO = "EntityOwners";
|
|
355
|
-
const _EP = "
|
|
356
|
+
const _EP = "EntityPattern";
|
|
356
357
|
const _EPL = "EnvironmentParametersList";
|
|
357
358
|
const _EPN = "EnvironmentProfileName";
|
|
358
359
|
const _EPS = "EnvironmentProfileSummary";
|
|
359
360
|
const _EPSn = "EnvironmentProfileSummaries";
|
|
361
|
+
const _EPn = "EnvironmentParameter";
|
|
360
362
|
const _ERA = "EnvironmentResolvedAccount";
|
|
361
363
|
const _ES = "EnvironmentSummary";
|
|
362
364
|
const _ESn = "EnvironmentSummaries";
|
|
@@ -609,7 +611,8 @@ const _LMGR = "ListMetadataGenerationRuns";
|
|
|
609
611
|
const _LMGRI = "ListMetadataGenerationRunsInput";
|
|
610
612
|
const _LMGRO = "ListMetadataGenerationRunsOutput";
|
|
611
613
|
const _LN = "LastName";
|
|
612
|
-
const _LNI = "
|
|
614
|
+
const _LNI = "LineageNodeItem";
|
|
615
|
+
const _LNIi = "ListNotificationsInput";
|
|
613
616
|
const _LNO = "ListNotificationsOutput";
|
|
614
617
|
const _LNR = "LineageNodeReference";
|
|
615
618
|
const _LNRL = "LineageNodeReferenceList";
|
|
@@ -662,6 +665,8 @@ const _LTSDP = "ListTimeSeriesDataPoints";
|
|
|
662
665
|
const _LTSDPI = "ListTimeSeriesDataPointsInput";
|
|
663
666
|
const _LTSDPO = "ListTimeSeriesDataPointsOutput";
|
|
664
667
|
const _M = "Message";
|
|
668
|
+
const _MC = "MatchClauses";
|
|
669
|
+
const _MCa = "MatchClause";
|
|
665
670
|
const _MD = "MemberDetails";
|
|
666
671
|
const _MEC = "ManagedEndpointCredentials";
|
|
667
672
|
const _MF = "MetadataForms";
|
|
@@ -743,6 +748,9 @@ const _PTSDP = "PostTimeSeriesDataPoints";
|
|
|
743
748
|
const _PTSDPI = "PostTimeSeriesDataPointsInput";
|
|
744
749
|
const _PTSDPO = "PostTimeSeriesDataPointsOutput";
|
|
745
750
|
const _Pe = "Permissions";
|
|
751
|
+
const _QG = "QueryGraph";
|
|
752
|
+
const _QGI = "QueryGraphInput";
|
|
753
|
+
const _QGO = "QueryGraphOutput";
|
|
746
754
|
const _R = "Resource";
|
|
747
755
|
const _RC = "RecommendationConfiguration";
|
|
748
756
|
const _RCC = "RedshiftCredentialConfiguration";
|
|
@@ -760,13 +768,15 @@ const _RFCe = "RelationalFilterConfigurations";
|
|
|
760
768
|
const _RFCo = "RowFilterConfiguration";
|
|
761
769
|
const _RFE = "RowFilterExpression";
|
|
762
770
|
const _RFL = "RowFilterList";
|
|
771
|
+
const _RI = "ResultItem";
|
|
772
|
+
const _RIL = "ResultItemList";
|
|
763
773
|
const _RL = "ResourceList";
|
|
764
774
|
const _RLSCI = "RedshiftLineageSyncConfigurationInput";
|
|
765
775
|
const _RLSCO = "RedshiftLineageSyncConfigurationOutput";
|
|
766
776
|
const _RMFL = "RequiredMetadataFormList";
|
|
767
777
|
const _RN = "RuleName";
|
|
768
778
|
const _RNFE = "ResourceNotFoundException";
|
|
769
|
-
const _RP = "
|
|
779
|
+
const _RP = "RelationPattern";
|
|
770
780
|
const _RPG = "RemovePolicyGrant";
|
|
771
781
|
const _RPGI = "RemovePolicyGrantInput";
|
|
772
782
|
const _RPGO = "RemovePolicyGrantOutput";
|
|
@@ -776,6 +786,7 @@ const _RPM = "RegionalParameterMap";
|
|
|
776
786
|
const _RPO = "RedshiftPropertiesOutput";
|
|
777
787
|
const _RPOe = "RejectPredictionsOutput";
|
|
778
788
|
const _RPP = "RedshiftPropertiesPatch";
|
|
789
|
+
const _RPe = "RejectPredictions";
|
|
779
790
|
const _RR = "RequestReason";
|
|
780
791
|
const _RRCI = "RedshiftRunConfigurationInput";
|
|
781
792
|
const _RRCO = "RedshiftRunConfigurationOutput";
|
|
@@ -1102,6 +1113,7 @@ const _dER = "domainExecutionRole";
|
|
|
1102
1113
|
const _dI = "domainIdentifier";
|
|
1103
1114
|
const _dIe = "deploymentId";
|
|
1104
1115
|
const _dIo = "domainId";
|
|
1116
|
+
const _dLNI = "downstreamLineageNodeIds";
|
|
1105
1117
|
const _dM = "deploymentMode";
|
|
1106
1118
|
const _dN = "downstreamNodes";
|
|
1107
1119
|
const _dNa = "databaseName";
|
|
@@ -1162,6 +1174,7 @@ const _eO = "endOffset";
|
|
|
1162
1174
|
const _eP = "environmentParameters";
|
|
1163
1175
|
const _ePI = "environmentProfileIdentifier";
|
|
1164
1176
|
const _ePIn = "environmentProfileId";
|
|
1177
|
+
const _ePn = "entityPattern";
|
|
1165
1178
|
const _eR = "entityRevision";
|
|
1166
1179
|
const _eRA = "environmentRoleArn";
|
|
1167
1180
|
const _eRAn = "environmentResolvedAccount";
|
|
@@ -1195,8 +1208,9 @@ const _fC = "failureCause";
|
|
|
1195
1208
|
const _fE = "filterExpressions";
|
|
1196
1209
|
const _fI = "filterIds";
|
|
1197
1210
|
const _fIo = "formsInput";
|
|
1198
|
-
const _fN = "
|
|
1211
|
+
const _fN = "formNames";
|
|
1199
1212
|
const _fNi = "firstName";
|
|
1213
|
+
const _fNo = "formName";
|
|
1200
1214
|
const _fO = "formsOutput";
|
|
1201
1215
|
const _fR = "failureReasons";
|
|
1202
1216
|
const _fRCA = "firstRevisionCreatedAt";
|
|
@@ -1301,6 +1315,7 @@ const _lI = "listingId";
|
|
|
1301
1315
|
const _lJI = "lineageJobId";
|
|
1302
1316
|
const _lN = "lastName";
|
|
1303
1317
|
const _lNTI = "lineageNodeTypeItem";
|
|
1318
|
+
const _lNi = "lineageNode";
|
|
1304
1319
|
const _lR = "listingRevision";
|
|
1305
1320
|
const _lRA = "lastRunAt";
|
|
1306
1321
|
const _lRAC = "lastRunAssetCount";
|
|
@@ -1337,9 +1352,11 @@ const _mFED = "metadataFormEnforcementDetail";
|
|
|
1337
1352
|
const _mFS = "metadataFormsSummary";
|
|
1338
1353
|
const _mO = "matchOffsets";
|
|
1339
1354
|
const _mP = "mlflowProperties";
|
|
1355
|
+
const _mPL = "maxPathLength";
|
|
1340
1356
|
const _mR = "matchRationale";
|
|
1341
1357
|
const _mRa = "maxResults";
|
|
1342
1358
|
const _ma = "managed";
|
|
1359
|
+
const _mat = "match";
|
|
1343
1360
|
const _me = "member";
|
|
1344
1361
|
const _mem = "members";
|
|
1345
1362
|
const _mes = "messages";
|
|
@@ -1432,6 +1449,7 @@ const _rC = "rejectChoices";
|
|
|
1432
1449
|
const _rCC = "redshiftCredentialConfiguration";
|
|
1433
1450
|
const _rCS = "redshiftClusterSource";
|
|
1434
1451
|
const _rCo = "rowConfiguration";
|
|
1452
|
+
const _rD = "relationDirection";
|
|
1435
1453
|
const _rDUI = "rootDomainUnitId";
|
|
1436
1454
|
const _rF = "rowFilter";
|
|
1437
1455
|
const _rFC = "relationalFilterConfigurations";
|
|
@@ -1447,6 +1465,7 @@ const _rP = "retainPermissions";
|
|
|
1447
1465
|
const _rPORF = "retainPermissionsOnRevokeFailure";
|
|
1448
1466
|
const _rPe = "regionalParameters";
|
|
1449
1467
|
const _rPed = "redshiftProperties";
|
|
1468
|
+
const _rPel = "relationPattern";
|
|
1450
1469
|
const _rPes = "resolvedParameters";
|
|
1451
1470
|
const _rR = "requestReason";
|
|
1452
1471
|
const _rRC = "redshiftRunConfiguration";
|
|
@@ -1460,6 +1479,7 @@ const _rSe = "redshiftStorage";
|
|
|
1460
1479
|
const _rT = "resourceTags";
|
|
1461
1480
|
const _rTD = "redshiftTempDir";
|
|
1462
1481
|
const _rTe = "refreshToken";
|
|
1482
|
+
const _rTel = "relationType";
|
|
1463
1483
|
const _rTu = "ruleType";
|
|
1464
1484
|
const _rU = "redirectUri";
|
|
1465
1485
|
const _re = "recommendation";
|
|
@@ -1581,6 +1601,7 @@ const _uAs = "userAssignment";
|
|
|
1581
1601
|
const _uB = "updatedBy";
|
|
1582
1602
|
const _uI = "userIdentifier";
|
|
1583
1603
|
const _uIs = "userId";
|
|
1604
|
+
const _uLNI = "upstreamLineageNodeIds";
|
|
1584
1605
|
const _uMCACI = "userManagedClientApplicationClientId";
|
|
1585
1606
|
const _uMCACS = "userManagedClientApplicationClientSecret";
|
|
1586
1607
|
const _uN = "userName";
|
|
@@ -1758,6 +1779,11 @@ export var AddEntityOwnerOutput$ = [3, n0, _AEOO,
|
|
|
1758
1779
|
[],
|
|
1759
1780
|
[]
|
|
1760
1781
|
];
|
|
1782
|
+
export var AdditionalAttributes$ = [3, n0, _AA,
|
|
1783
|
+
0,
|
|
1784
|
+
[_fN],
|
|
1785
|
+
[64 | 0]
|
|
1786
|
+
];
|
|
1761
1787
|
export var AddPolicyGrantInput$ = [3, n0, _APGI,
|
|
1762
1788
|
0,
|
|
1763
1789
|
[_dI, _eT, _eI, _pTo, _p, _d, _cT],
|
|
@@ -2660,8 +2686,8 @@ export var DeleteSubscriptionTargetInput$ = [3, n0, _DSTI,
|
|
|
2660
2686
|
];
|
|
2661
2687
|
export var DeleteTimeSeriesDataPointsInput$ = [3, n0, _DTSDPI,
|
|
2662
2688
|
0,
|
|
2663
|
-
[_dI, _eI, _eT,
|
|
2664
|
-
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]:
|
|
2689
|
+
[_dI, _eI, _eT, _fNo, _cT],
|
|
2690
|
+
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _fNo }], [0, { [_hQ]: _cT, [_iTd]: 1 }]], 4
|
|
2665
2691
|
];
|
|
2666
2692
|
export var DeleteTimeSeriesDataPointsOutput$ = [3, n0, _DTSDPO,
|
|
2667
2693
|
0,
|
|
@@ -2743,6 +2769,11 @@ export var EncryptionConfiguration$ = [3, n0, _EC,
|
|
|
2743
2769
|
[_kKA, _sAs],
|
|
2744
2770
|
[0, 0]
|
|
2745
2771
|
];
|
|
2772
|
+
export var EntityPattern$ = [3, n0, _EP,
|
|
2773
|
+
0,
|
|
2774
|
+
[_eT, _i, _fi],
|
|
2775
|
+
[0, 0, () => FilterClause$], 2
|
|
2776
|
+
];
|
|
2746
2777
|
export var EnvironmentActionSummary$ = [3, n0, _EAS,
|
|
2747
2778
|
0,
|
|
2748
2779
|
[_dIo, _eInvi, _id, _n, _par, _de],
|
|
@@ -2788,7 +2819,7 @@ export var EnvironmentError$ = [3, n0, _EE,
|
|
|
2788
2819
|
[_m, _cod],
|
|
2789
2820
|
[0, 0], 1
|
|
2790
2821
|
];
|
|
2791
|
-
export var EnvironmentParameter$ = [3, n0,
|
|
2822
|
+
export var EnvironmentParameter$ = [3, n0, _EPn,
|
|
2792
2823
|
0,
|
|
2793
2824
|
[_n, _v],
|
|
2794
2825
|
[0, 0]
|
|
@@ -2840,12 +2871,12 @@ export var FormEntryOutput$ = [3, n0, _FEO,
|
|
|
2840
2871
|
];
|
|
2841
2872
|
export var FormInput$ = [3, n0, _FI,
|
|
2842
2873
|
8,
|
|
2843
|
-
[
|
|
2874
|
+
[_fNo, _tI, _tR, _cont],
|
|
2844
2875
|
[0, 0, 0, 0], 1
|
|
2845
2876
|
];
|
|
2846
2877
|
export var FormOutput$ = [3, n0, _FO,
|
|
2847
2878
|
0,
|
|
2848
|
-
[
|
|
2879
|
+
[_fNo, _tNy, _tR, _cont],
|
|
2849
2880
|
[0, [() => FormTypeName, 0], 0, 0], 1
|
|
2850
2881
|
];
|
|
2851
2882
|
export var FormTypeData$ = [3, n0, _FTD,
|
|
@@ -3195,12 +3226,12 @@ export var GetSubscriptionTargetOutput$ = [3, n0, _GSTO,
|
|
|
3195
3226
|
];
|
|
3196
3227
|
export var GetTimeSeriesDataPointInput$ = [3, n0, _GTSDPI,
|
|
3197
3228
|
0,
|
|
3198
|
-
[_dI, _eI, _eT, _i,
|
|
3199
|
-
[[0, 1], [0, 1], [0, 1], [0, 1], [0, { [_hQ]:
|
|
3229
|
+
[_dI, _eI, _eT, _i, _fNo],
|
|
3230
|
+
[[0, 1], [0, 1], [0, 1], [0, 1], [0, { [_hQ]: _fNo }]], 5
|
|
3200
3231
|
];
|
|
3201
3232
|
export var GetTimeSeriesDataPointOutput$ = [3, n0, _GTSDPO,
|
|
3202
3233
|
0,
|
|
3203
|
-
[_dIo, _eIn, _eT,
|
|
3234
|
+
[_dIo, _eIn, _eT, _fNo, _fo],
|
|
3204
3235
|
[0, 0, 0, 0, () => TimeSeriesDataPointFormOutput$]
|
|
3205
3236
|
];
|
|
3206
3237
|
export var GetUserProfileInput$ = [3, n0, _GUPI,
|
|
@@ -3398,6 +3429,11 @@ export var LineageInfo$ = [3, n0, _LI,
|
|
|
3398
3429
|
[_eIv, _eSve, _eM],
|
|
3399
3430
|
[0, 0, 0]
|
|
3400
3431
|
];
|
|
3432
|
+
export var LineageNodeItem$ = [3, n0, _LNI,
|
|
3433
|
+
0,
|
|
3434
|
+
[_dIo, _id, _tNy, _n, _de, _cA, _cB, _uA, _uB, _tR, _sIo, _eTve, _fO, _uLNI, _dLNI],
|
|
3435
|
+
[0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 4, [() => FormOutputList, 0], 64 | 0, 64 | 0], 3
|
|
3436
|
+
];
|
|
3401
3437
|
export var LineageNodeReference$ = [3, n0, _LNR,
|
|
3402
3438
|
0,
|
|
3403
3439
|
[_id, _eTve],
|
|
@@ -3658,7 +3694,7 @@ export var ListMetadataGenerationRunsOutput$ = [3, n0, _LMGRO,
|
|
|
3658
3694
|
[_it, _nT],
|
|
3659
3695
|
[() => MetadataGenerationRuns, 0]
|
|
3660
3696
|
];
|
|
3661
|
-
export var ListNotificationsInput$ = [3, n0,
|
|
3697
|
+
export var ListNotificationsInput$ = [3, n0, _LNIi,
|
|
3662
3698
|
0,
|
|
3663
3699
|
[_dI, _ty, _aTf, _bT, _su, _tSa, _mRa, _nT],
|
|
3664
3700
|
[[0, 1], [0, { [_hQ]: _ty }], [4, { [_hQ]: _aTf }], [4, { [_hQ]: _bT }], [64 | 0, { [_hQ]: _su }], [0, { [_hQ]: _tSa }], [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }]], 2
|
|
@@ -3770,8 +3806,8 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
3770
3806
|
];
|
|
3771
3807
|
export var ListTimeSeriesDataPointsInput$ = [3, n0, _LTSDPI,
|
|
3772
3808
|
0,
|
|
3773
|
-
[_dI, _eI, _eT,
|
|
3774
|
-
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]:
|
|
3809
|
+
[_dI, _eI, _eT, _fNo, _sAt, _eAn, _nT, _mRa],
|
|
3810
|
+
[[0, 1], [0, 1], [0, 1], [0, { [_hQ]: _fNo }], [4, { [_hQ]: _sAt }], [4, { [_hQ]: _eAn }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mRa }]], 4
|
|
3775
3811
|
];
|
|
3776
3812
|
export var ListTimeSeriesDataPointsOutput$ = [3, n0, _LTSDPO,
|
|
3777
3813
|
0,
|
|
@@ -3800,7 +3836,7 @@ export var MetadataFormReference$ = [3, n0, _MFR,
|
|
|
3800
3836
|
];
|
|
3801
3837
|
export var MetadataFormSummary$ = [3, n0, _MFS,
|
|
3802
3838
|
0,
|
|
3803
|
-
[_tNy, _tR,
|
|
3839
|
+
[_tNy, _tR, _fNo],
|
|
3804
3840
|
[[() => FormTypeName, 0], 0, 0], 2
|
|
3805
3841
|
];
|
|
3806
3842
|
export var MetadataGenerationRunItem$ = [3, n0, _MGRI,
|
|
@@ -3998,6 +4034,16 @@ export var PutEnvironmentBlueprintConfigurationOutput$ = [3, n0, _PEBCO,
|
|
|
3998
4034
|
[_dIo, _eBIn, _pRA, _eRPB, _mARA, _eRn, _rPe, _cA, _uA, _pCro],
|
|
3999
4035
|
[0, 0, 0, 0, 0, 64 | 0, [2, n0, _RPM, 0, 0, 128 | 0], 5, 5, () => ProvisioningConfigurationList], 2
|
|
4000
4036
|
];
|
|
4037
|
+
export var QueryGraphInput$ = [3, n0, _QGI,
|
|
4038
|
+
0,
|
|
4039
|
+
[_dI, _mat, _mRa, _nT, _aA],
|
|
4040
|
+
[[0, 1], () => MatchClauses, [1, { [_hQ]: _mRa }], [0, { [_hQ]: _nT }], () => AdditionalAttributes$], 2
|
|
4041
|
+
];
|
|
4042
|
+
export var QueryGraphOutput$ = [3, n0, _QGO,
|
|
4043
|
+
0,
|
|
4044
|
+
[_it, _nT],
|
|
4045
|
+
[[() => ResultItemList, 0], 0]
|
|
4046
|
+
];
|
|
4001
4047
|
export var RecommendationConfiguration$ = [3, n0, _RC,
|
|
4002
4048
|
0,
|
|
4003
4049
|
[_eBNG],
|
|
@@ -4093,6 +4139,11 @@ export var RelationalFilterConfiguration$ = [3, n0, _RFC,
|
|
|
4093
4139
|
[_dNa, _sN, _fE],
|
|
4094
4140
|
[0, 0, () => FilterExpressions], 1
|
|
4095
4141
|
];
|
|
4142
|
+
export var RelationPattern$ = [3, n0, _RP,
|
|
4143
|
+
0,
|
|
4144
|
+
[_rTel, _rD, _mPL],
|
|
4145
|
+
[0, 0, 1], 2
|
|
4146
|
+
];
|
|
4096
4147
|
export var RemoveEntityOwnerInput$ = [3, n0, _REOI,
|
|
4097
4148
|
0,
|
|
4098
4149
|
[_dI, _eT, _eI, _o, _cT],
|
|
@@ -4395,7 +4446,7 @@ export var SubscriptionSummary$ = [3, n0, _SSu,
|
|
|
4395
4446
|
];
|
|
4396
4447
|
export var SubscriptionTargetForm$ = [3, n0, _STF,
|
|
4397
4448
|
0,
|
|
4398
|
-
[
|
|
4449
|
+
[_fNo, _cont],
|
|
4399
4450
|
[0, 0], 2
|
|
4400
4451
|
];
|
|
4401
4452
|
export var SubscriptionTargetSummary$ = [3, n0, _STS,
|
|
@@ -4425,17 +4476,17 @@ export var TextMatchItem$ = [3, n0, _TMI,
|
|
|
4425
4476
|
];
|
|
4426
4477
|
export var TimeSeriesDataPointFormInput$ = [3, n0, _TSDPFI,
|
|
4427
4478
|
0,
|
|
4428
|
-
[
|
|
4479
|
+
[_fNo, _tI, _ti, _tR, _cont],
|
|
4429
4480
|
[0, 0, 4, 0, 0], 3
|
|
4430
4481
|
];
|
|
4431
4482
|
export var TimeSeriesDataPointFormOutput$ = [3, n0, _TSDPFO,
|
|
4432
4483
|
0,
|
|
4433
|
-
[
|
|
4484
|
+
[_fNo, _tI, _ti, _tR, _cont, _id],
|
|
4434
4485
|
[0, 0, 4, 0, 0, 0], 3
|
|
4435
4486
|
];
|
|
4436
4487
|
export var TimeSeriesDataPointSummaryFormOutput$ = [3, n0, _TSDPSFO,
|
|
4437
4488
|
0,
|
|
4438
|
-
[
|
|
4489
|
+
[_fNo, _tI, _ti, _tR, _cS, _id],
|
|
4439
4490
|
[0, 0, 4, 0, 0, 0], 3
|
|
4440
4491
|
];
|
|
4441
4492
|
export var Topic$ = [3, n0, _To,
|
|
@@ -4869,6 +4920,7 @@ var FormInputList = [1, n0, _FIL,
|
|
|
4869
4920
|
8, [() => FormInput$,
|
|
4870
4921
|
0]
|
|
4871
4922
|
];
|
|
4923
|
+
var FormNameList = 64 | 0;
|
|
4872
4924
|
var FormOutputList = [1, n0, _FOL,
|
|
4873
4925
|
0, [() => FormOutput$,
|
|
4874
4926
|
0]
|
|
@@ -4892,6 +4944,7 @@ var JobRunSummaries = [1, n0, _JRSo,
|
|
|
4892
4944
|
var LineageEventSummaries = [1, n0, _LESi,
|
|
4893
4945
|
0, () => LineageEventSummary$
|
|
4894
4946
|
];
|
|
4947
|
+
var LineageNodeIds = 64 | 0;
|
|
4895
4948
|
var LineageNodeReferenceList = [1, n0, _LNRL,
|
|
4896
4949
|
0, () => LineageNodeReference$
|
|
4897
4950
|
];
|
|
@@ -4909,6 +4962,9 @@ var ListingSummaryItems = [1, n0, _LSIis,
|
|
|
4909
4962
|
0, [() => ListingSummaryItem$,
|
|
4910
4963
|
0]
|
|
4911
4964
|
];
|
|
4965
|
+
var MatchClauses = [1, n0, _MC,
|
|
4966
|
+
0, () => MatchClause$
|
|
4967
|
+
];
|
|
4912
4968
|
var MatchCriteria = 64 | 0;
|
|
4913
4969
|
var MatchOffsets = [1, n0, _MOa,
|
|
4914
4970
|
0, () => MatchOffset$
|
|
@@ -4985,6 +5041,10 @@ var ResourceList = [1, n0, _RL,
|
|
|
4985
5041
|
var ResourceTags = [1, n0, _RTe,
|
|
4986
5042
|
0, () => ResourceTag$
|
|
4987
5043
|
];
|
|
5044
|
+
var ResultItemList = [1, n0, _RIL,
|
|
5045
|
+
0, [() => ResultItem$,
|
|
5046
|
+
0]
|
|
5047
|
+
];
|
|
4988
5048
|
var RowFilterList = [1, n0, _RFL,
|
|
4989
5049
|
0, () => RowFilter$
|
|
4990
5050
|
];
|
|
@@ -5114,7 +5174,7 @@ export var AssetFilterConfiguration$ = [4, n0, _AFC,
|
|
|
5114
5174
|
[_cCo, _rCo],
|
|
5115
5175
|
[() => ColumnFilterConfiguration$, () => RowFilterConfiguration$]
|
|
5116
5176
|
];
|
|
5117
|
-
export var AwsAccount$ = [4, n0,
|
|
5177
|
+
export var AwsAccount$ = [4, n0, _AAw,
|
|
5118
5178
|
0,
|
|
5119
5179
|
[_aAI, _aAIP],
|
|
5120
5180
|
[0, 0]
|
|
@@ -5189,6 +5249,11 @@ export var ListingItem$ = [4, n0, _LIi,
|
|
|
5189
5249
|
[_aLss, _dPL],
|
|
5190
5250
|
[[() => AssetListing$, 0], [() => DataProductListing$, 0]]
|
|
5191
5251
|
];
|
|
5252
|
+
export var MatchClause$ = [4, n0, _MCa,
|
|
5253
|
+
0,
|
|
5254
|
+
[_rPel, _ePn],
|
|
5255
|
+
[() => RelationPattern$, () => EntityPattern$]
|
|
5256
|
+
];
|
|
5192
5257
|
export var MatchRationaleItem$ = [4, n0, _MRI,
|
|
5193
5258
|
0,
|
|
5194
5259
|
[_tM],
|
|
@@ -5269,6 +5334,11 @@ export var Region$ = [4, n0, _Re,
|
|
|
5269
5334
|
[_rN, _rNP],
|
|
5270
5335
|
[0, 0]
|
|
5271
5336
|
];
|
|
5337
|
+
export var ResultItem$ = [4, n0, _RI,
|
|
5338
|
+
0,
|
|
5339
|
+
[_lNi],
|
|
5340
|
+
[[() => LineageNodeItem$, 0]]
|
|
5341
|
+
];
|
|
5272
5342
|
export var RowFilter$ = [4, n0, _RF,
|
|
5273
5343
|
0,
|
|
5274
5344
|
[_exp, _an, _or_],
|
|
@@ -5754,7 +5824,10 @@ export var PutDataExportConfiguration$ = [9, n0, _PDEC,
|
|
|
5754
5824
|
export var PutEnvironmentBlueprintConfiguration$ = [9, n0, _PEBC,
|
|
5755
5825
|
{ [_ht]: ["PUT", "/v2/domains/{domainIdentifier}/environment-blueprint-configurations/{environmentBlueprintIdentifier}", 200] }, () => PutEnvironmentBlueprintConfigurationInput$, () => PutEnvironmentBlueprintConfigurationOutput$
|
|
5756
5826
|
];
|
|
5757
|
-
export var
|
|
5827
|
+
export var QueryGraph$ = [9, n0, _QG,
|
|
5828
|
+
{ [_ht]: ["POST", "/v2/domains/{domainIdentifier}/graph/query", 200] }, () => QueryGraphInput$, () => QueryGraphOutput$
|
|
5829
|
+
];
|
|
5830
|
+
export var RejectPredictions$ = [9, n0, _RPe,
|
|
5758
5831
|
{ [_ht]: ["PUT", "/v2/domains/{domainIdentifier}/assets/{identifier}/reject-predictions", 200] }, () => RejectPredictionsInput$, () => RejectPredictionsOutput$
|
|
5759
5832
|
];
|
|
5760
5833
|
export var RejectSubscriptionRequest$ = [9, n0, _RSR,
|
package/dist-types/DataZone.d.ts
CHANGED
|
@@ -139,6 +139,7 @@ import { PostLineageEventCommandInput, PostLineageEventCommandOutput } from "./c
|
|
|
139
139
|
import { PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOutput } from "./commands/PostTimeSeriesDataPointsCommand";
|
|
140
140
|
import { PutDataExportConfigurationCommandInput, PutDataExportConfigurationCommandOutput } from "./commands/PutDataExportConfigurationCommand";
|
|
141
141
|
import { PutEnvironmentBlueprintConfigurationCommandInput, PutEnvironmentBlueprintConfigurationCommandOutput } from "./commands/PutEnvironmentBlueprintConfigurationCommand";
|
|
142
|
+
import { QueryGraphCommandInput, QueryGraphCommandOutput } from "./commands/QueryGraphCommand";
|
|
142
143
|
import { RejectPredictionsCommandInput, RejectPredictionsCommandOutput } from "./commands/RejectPredictionsCommand";
|
|
143
144
|
import { RejectSubscriptionRequestCommandInput, RejectSubscriptionRequestCommandOutput } from "./commands/RejectSubscriptionRequestCommand";
|
|
144
145
|
import { RemoveEntityOwnerCommandInput, RemoveEntityOwnerCommandOutput } from "./commands/RemoveEntityOwnerCommand";
|
|
@@ -1017,6 +1018,12 @@ export interface DataZone {
|
|
|
1017
1018
|
putEnvironmentBlueprintConfiguration(args: PutEnvironmentBlueprintConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutEnvironmentBlueprintConfigurationCommandOutput>;
|
|
1018
1019
|
putEnvironmentBlueprintConfiguration(args: PutEnvironmentBlueprintConfigurationCommandInput, cb: (err: any, data?: PutEnvironmentBlueprintConfigurationCommandOutput) => void): void;
|
|
1019
1020
|
putEnvironmentBlueprintConfiguration(args: PutEnvironmentBlueprintConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutEnvironmentBlueprintConfigurationCommandOutput) => void): void;
|
|
1021
|
+
/**
|
|
1022
|
+
* @see {@link QueryGraphCommand}
|
|
1023
|
+
*/
|
|
1024
|
+
queryGraph(args: QueryGraphCommandInput, options?: __HttpHandlerOptions): Promise<QueryGraphCommandOutput>;
|
|
1025
|
+
queryGraph(args: QueryGraphCommandInput, cb: (err: any, data?: QueryGraphCommandOutput) => void): void;
|
|
1026
|
+
queryGraph(args: QueryGraphCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: QueryGraphCommandOutput) => void): void;
|
|
1020
1027
|
/**
|
|
1021
1028
|
* @see {@link RejectPredictionsCommand}
|
|
1022
1029
|
*/
|
|
@@ -1451,6 +1458,13 @@ export interface DataZone {
|
|
|
1451
1458
|
* @returns AsyncIterable of {@link ListTimeSeriesDataPointsCommandOutput}.
|
|
1452
1459
|
*/
|
|
1453
1460
|
paginateListTimeSeriesDataPoints(args: ListTimeSeriesDataPointsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTimeSeriesDataPointsCommandOutput>;
|
|
1461
|
+
/**
|
|
1462
|
+
* @see {@link QueryGraphCommand}
|
|
1463
|
+
* @param args - command input.
|
|
1464
|
+
* @param paginationConfig - optional pagination config.
|
|
1465
|
+
* @returns AsyncIterable of {@link QueryGraphCommandOutput}.
|
|
1466
|
+
*/
|
|
1467
|
+
paginateQueryGraph(args: QueryGraphCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<QueryGraphCommandOutput>;
|
|
1454
1468
|
/**
|
|
1455
1469
|
* @see {@link SearchCommand}
|
|
1456
1470
|
* @param args - command input.
|
|
@@ -147,6 +147,7 @@ import { PostLineageEventCommandInput, PostLineageEventCommandOutput } from "./c
|
|
|
147
147
|
import { PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOutput } from "./commands/PostTimeSeriesDataPointsCommand";
|
|
148
148
|
import { PutDataExportConfigurationCommandInput, PutDataExportConfigurationCommandOutput } from "./commands/PutDataExportConfigurationCommand";
|
|
149
149
|
import { PutEnvironmentBlueprintConfigurationCommandInput, PutEnvironmentBlueprintConfigurationCommandOutput } from "./commands/PutEnvironmentBlueprintConfigurationCommand";
|
|
150
|
+
import { QueryGraphCommandInput, QueryGraphCommandOutput } from "./commands/QueryGraphCommand";
|
|
150
151
|
import { RejectPredictionsCommandInput, RejectPredictionsCommandOutput } from "./commands/RejectPredictionsCommand";
|
|
151
152
|
import { RejectSubscriptionRequestCommandInput, RejectSubscriptionRequestCommandOutput } from "./commands/RejectSubscriptionRequestCommand";
|
|
152
153
|
import { RemoveEntityOwnerCommandInput, RemoveEntityOwnerCommandOutput } from "./commands/RemoveEntityOwnerCommand";
|
|
@@ -188,11 +189,11 @@ export { __Client };
|
|
|
188
189
|
/**
|
|
189
190
|
* @public
|
|
190
191
|
*/
|
|
191
|
-
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | AssociateGovernedTermsCommandInput | BatchGetAttributesMetadataCommandInput | BatchPutAttributesMetadataCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentBlueprintCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataExportConfigurationCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | DisassociateGovernedTermsCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataExportConfigurationCommandInput | 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 | PutDataExportConfigurationCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentBlueprintCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRootDomainUnitOwnerCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
192
|
+
export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | AddEntityOwnerCommandInput | AddPolicyGrantCommandInput | AssociateEnvironmentRoleCommandInput | AssociateGovernedTermsCommandInput | BatchGetAttributesMetadataCommandInput | BatchPutAttributesMetadataCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAccountPoolCommandInput | CreateAssetCommandInput | CreateAssetFilterCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateConnectionCommandInput | CreateDataProductCommandInput | CreateDataProductRevisionCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateDomainUnitCommandInput | CreateEnvironmentActionCommandInput | CreateEnvironmentBlueprintCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateProjectProfileCommandInput | CreateRuleCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAccountPoolCommandInput | DeleteAssetCommandInput | DeleteAssetFilterCommandInput | DeleteAssetTypeCommandInput | DeleteConnectionCommandInput | DeleteDataExportConfigurationCommandInput | DeleteDataProductCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteDomainUnitCommandInput | DeleteEnvironmentActionCommandInput | DeleteEnvironmentBlueprintCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteProjectProfileCommandInput | DeleteRuleCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | DisassociateEnvironmentRoleCommandInput | DisassociateGovernedTermsCommandInput | GetAccountPoolCommandInput | GetAssetCommandInput | GetAssetFilterCommandInput | GetAssetTypeCommandInput | GetConnectionCommandInput | GetDataExportConfigurationCommandInput | 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 | PutDataExportConfigurationCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | QueryGraphCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RemoveEntityOwnerCommandInput | RemovePolicyGrantCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccountPoolCommandInput | UpdateAssetFilterCommandInput | UpdateConnectionCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateDomainUnitCommandInput | UpdateEnvironmentActionCommandInput | UpdateEnvironmentBlueprintCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateProjectProfileCommandInput | UpdateRootDomainUnitOwnerCommandInput | UpdateRuleCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
|
|
192
193
|
/**
|
|
193
194
|
* @public
|
|
194
195
|
*/
|
|
195
|
-
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | AssociateGovernedTermsCommandOutput | BatchGetAttributesMetadataCommandOutput | BatchPutAttributesMetadataCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentBlueprintCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataExportConfigurationCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | DisassociateGovernedTermsCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataExportConfigurationCommandOutput | 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 | PutDataExportConfigurationCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentBlueprintCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRootDomainUnitOwnerCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
196
|
+
export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | AddEntityOwnerCommandOutput | AddPolicyGrantCommandOutput | AssociateEnvironmentRoleCommandOutput | AssociateGovernedTermsCommandOutput | BatchGetAttributesMetadataCommandOutput | BatchPutAttributesMetadataCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAccountPoolCommandOutput | CreateAssetCommandOutput | CreateAssetFilterCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateConnectionCommandOutput | CreateDataProductCommandOutput | CreateDataProductRevisionCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateDomainUnitCommandOutput | CreateEnvironmentActionCommandOutput | CreateEnvironmentBlueprintCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateProjectProfileCommandOutput | CreateRuleCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAccountPoolCommandOutput | DeleteAssetCommandOutput | DeleteAssetFilterCommandOutput | DeleteAssetTypeCommandOutput | DeleteConnectionCommandOutput | DeleteDataExportConfigurationCommandOutput | DeleteDataProductCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteDomainUnitCommandOutput | DeleteEnvironmentActionCommandOutput | DeleteEnvironmentBlueprintCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteProjectProfileCommandOutput | DeleteRuleCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | DisassociateEnvironmentRoleCommandOutput | DisassociateGovernedTermsCommandOutput | GetAccountPoolCommandOutput | GetAssetCommandOutput | GetAssetFilterCommandOutput | GetAssetTypeCommandOutput | GetConnectionCommandOutput | GetDataExportConfigurationCommandOutput | 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 | PutDataExportConfigurationCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | QueryGraphCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RemoveEntityOwnerCommandOutput | RemovePolicyGrantCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccountPoolCommandOutput | UpdateAssetFilterCommandOutput | UpdateConnectionCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateDomainUnitCommandOutput | UpdateEnvironmentActionCommandOutput | UpdateEnvironmentBlueprintCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateProjectProfileCommandOutput | UpdateRootDomainUnitOwnerCommandOutput | UpdateRuleCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
|
|
196
197
|
/**
|
|
197
198
|
* @public
|
|
198
199
|
*/
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
|
|
4
|
-
import type { CreateSubscriptionTargetInput
|
|
4
|
+
import type { CreateSubscriptionTargetInput } from "../models/models_0";
|
|
5
|
+
import type { CreateSubscriptionTargetOutput } from "../models/models_1";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
7
8
|
*/
|