@aws-sdk/client-datazone 3.546.0 → 3.548.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 +32 -0
- package/dist-cjs/index.js +307 -21
- package/dist-es/DataZone.js +8 -0
- package/dist-es/commands/DeleteTimeSeriesDataPointsCommand.js +24 -0
- package/dist-es/commands/GetTimeSeriesDataPointCommand.js +24 -0
- package/dist-es/commands/ListSubscriptionTargetsCommand.js +1 -1
- package/dist-es/commands/ListTimeSeriesDataPointsCommand.js +24 -0
- package/dist-es/commands/PostTimeSeriesDataPointsCommand.js +24 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +4 -15
- package/dist-es/models/models_1.js +16 -0
- package/dist-es/pagination/ListTimeSeriesDataPointsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +199 -2
- package/dist-types/DataZone.d.ts +28 -0
- package/dist-types/DataZoneClient.d.ts +6 -2
- package/dist-types/commands/CreateAssetCommand.d.ts +10 -0
- package/dist-types/commands/CreateAssetRevisionCommand.d.ts +10 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -0
- package/dist-types/commands/DeleteTimeSeriesDataPointsCommand.d.ts +79 -0
- package/dist-types/commands/GetAssetCommand.d.ts +10 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +1 -0
- package/dist-types/commands/GetListingCommand.d.ts +10 -0
- package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +1 -2
- package/dist-types/commands/GetTimeSeriesDataPointCommand.d.ts +92 -0
- package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTimeSeriesDataPointsCommand.d.ts +94 -0
- package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +107 -0
- package/dist-types/commands/SearchCommand.d.ts +11 -1
- package/dist-types/commands/SearchListingsCommand.d.ts +11 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +228 -208
- package/dist-types/models/models_1.d.ts +371 -1
- package/dist-types/pagination/ListTimeSeriesDataPointsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/DataZone.d.ts +68 -0
- package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteTimeSeriesDataPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetTimeSeriesDataPointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListSubscriptionTargetsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListTimeSeriesDataPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -54
- package/dist-types/ts3.4/models/models_1.d.ts +93 -1
- package/dist-types/ts3.4/pagination/ListTimeSeriesDataPointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +1 -1
package/dist-cjs/index.js
CHANGED
|
@@ -115,6 +115,7 @@ __export(src_exports, {
|
|
|
115
115
|
DeleteSubscriptionGrantCommand: () => DeleteSubscriptionGrantCommand,
|
|
116
116
|
DeleteSubscriptionRequestCommand: () => DeleteSubscriptionRequestCommand,
|
|
117
117
|
DeleteSubscriptionTargetCommand: () => DeleteSubscriptionTargetCommand,
|
|
118
|
+
DeleteTimeSeriesDataPointsCommand: () => DeleteTimeSeriesDataPointsCommand,
|
|
118
119
|
DeploymentStatus: () => DeploymentStatus,
|
|
119
120
|
DeploymentType: () => DeploymentType,
|
|
120
121
|
DetailedGlossaryTermFilterSensitiveLog: () => DetailedGlossaryTermFilterSensitiveLog,
|
|
@@ -169,6 +170,7 @@ __export(src_exports, {
|
|
|
169
170
|
GetSubscriptionRequestDetailsOutputFilterSensitiveLog: () => GetSubscriptionRequestDetailsOutputFilterSensitiveLog,
|
|
170
171
|
GetSubscriptionTargetCommand: () => GetSubscriptionTargetCommand,
|
|
171
172
|
GetSubscriptionTargetOutputFilterSensitiveLog: () => GetSubscriptionTargetOutputFilterSensitiveLog,
|
|
173
|
+
GetTimeSeriesDataPointCommand: () => GetTimeSeriesDataPointCommand,
|
|
172
174
|
GetUserProfileCommand: () => GetUserProfileCommand,
|
|
173
175
|
GetUserProfileOutputFilterSensitiveLog: () => GetUserProfileOutputFilterSensitiveLog,
|
|
174
176
|
GlossaryItemFilterSensitiveLog: () => GlossaryItemFilterSensitiveLog,
|
|
@@ -215,6 +217,7 @@ __export(src_exports, {
|
|
|
215
217
|
ListSubscriptionsCommand: () => ListSubscriptionsCommand,
|
|
216
218
|
ListSubscriptionsOutputFilterSensitiveLog: () => ListSubscriptionsOutputFilterSensitiveLog,
|
|
217
219
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
220
|
+
ListTimeSeriesDataPointsCommand: () => ListTimeSeriesDataPointsCommand,
|
|
218
221
|
ListingItem: () => ListingItem,
|
|
219
222
|
ListingItemFilterSensitiveLog: () => ListingItemFilterSensitiveLog,
|
|
220
223
|
ListingStatus: () => ListingStatus,
|
|
@@ -229,6 +232,7 @@ __export(src_exports, {
|
|
|
229
232
|
NotificationResourceType: () => NotificationResourceType,
|
|
230
233
|
NotificationRole: () => NotificationRole,
|
|
231
234
|
NotificationType: () => NotificationType,
|
|
235
|
+
PostTimeSeriesDataPointsCommand: () => PostTimeSeriesDataPointsCommand,
|
|
232
236
|
ProjectStatus: () => ProjectStatus,
|
|
233
237
|
ProjectSummaryFilterSensitiveLog: () => ProjectSummaryFilterSensitiveLog,
|
|
234
238
|
ProvisioningProperties: () => ProvisioningProperties,
|
|
@@ -287,6 +291,7 @@ __export(src_exports, {
|
|
|
287
291
|
TagResourceCommand: () => TagResourceCommand,
|
|
288
292
|
TaskStatus: () => TaskStatus,
|
|
289
293
|
ThrottlingException: () => ThrottlingException,
|
|
294
|
+
TimeSeriesEntityType: () => TimeSeriesEntityType,
|
|
290
295
|
Timezone: () => Timezone,
|
|
291
296
|
TypesSearchScope: () => TypesSearchScope,
|
|
292
297
|
UnauthorizedException: () => UnauthorizedException,
|
|
@@ -348,6 +353,7 @@ __export(src_exports, {
|
|
|
348
353
|
paginateListSubscriptionRequests: () => paginateListSubscriptionRequests,
|
|
349
354
|
paginateListSubscriptionTargets: () => paginateListSubscriptionTargets,
|
|
350
355
|
paginateListSubscriptions: () => paginateListSubscriptions,
|
|
356
|
+
paginateListTimeSeriesDataPoints: () => paginateListTimeSeriesDataPoints,
|
|
351
357
|
paginateSearch: () => paginateSearch,
|
|
352
358
|
paginateSearchGroupProfiles: () => paginateSearchGroupProfiles,
|
|
353
359
|
paginateSearchListings: () => paginateSearchListings,
|
|
@@ -1013,6 +1019,10 @@ var DataSourceRunType = {
|
|
|
1013
1019
|
PRIORITIZED: "PRIORITIZED",
|
|
1014
1020
|
SCHEDULED: "SCHEDULED"
|
|
1015
1021
|
};
|
|
1022
|
+
var TimeSeriesEntityType = {
|
|
1023
|
+
ASSET: "ASSET",
|
|
1024
|
+
LISTING: "LISTING"
|
|
1025
|
+
};
|
|
1016
1026
|
var ListingItem;
|
|
1017
1027
|
((ListingItem3) => {
|
|
1018
1028
|
ListingItem3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -1060,13 +1070,6 @@ var SortKey = {
|
|
|
1060
1070
|
CREATED_AT: "CREATED_AT",
|
|
1061
1071
|
UPDATED_AT: "UPDATED_AT"
|
|
1062
1072
|
};
|
|
1063
|
-
var MetadataGenerationRunStatus = {
|
|
1064
|
-
CANCELED: "CANCELED",
|
|
1065
|
-
FAILED: "FAILED",
|
|
1066
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
1067
|
-
SUBMITTED: "SUBMITTED",
|
|
1068
|
-
SUCCEEDED: "SUCCEEDED"
|
|
1069
|
-
};
|
|
1070
1073
|
var AcceptChoiceFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1071
1074
|
...obj,
|
|
1072
1075
|
...obj.editedValue && { editedValue: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -1661,14 +1664,6 @@ var ListSubscriptionsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) =>
|
|
|
1661
1664
|
...obj,
|
|
1662
1665
|
...obj.items && { items: obj.items.map((item) => SubscriptionSummaryFilterSensitiveLog(item)) }
|
|
1663
1666
|
}), "ListSubscriptionsOutputFilterSensitiveLog");
|
|
1664
|
-
var SubscriptionTargetSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1665
|
-
...obj,
|
|
1666
|
-
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
1667
|
-
}), "SubscriptionTargetSummaryFilterSensitiveLog");
|
|
1668
|
-
var ListSubscriptionTargetsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1669
|
-
...obj,
|
|
1670
|
-
...obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }
|
|
1671
|
-
}), "ListSubscriptionTargetsOutputFilterSensitiveLog");
|
|
1672
1667
|
|
|
1673
1668
|
// src/protocols/Aws_restJson1.ts
|
|
1674
1669
|
var import_core2 = require("@aws-sdk/core");
|
|
@@ -1678,6 +1673,13 @@ var import_uuid = require("uuid");
|
|
|
1678
1673
|
|
|
1679
1674
|
// src/models/models_1.ts
|
|
1680
1675
|
|
|
1676
|
+
var MetadataGenerationRunStatus = {
|
|
1677
|
+
CANCELED: "CANCELED",
|
|
1678
|
+
FAILED: "FAILED",
|
|
1679
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
1680
|
+
SUBMITTED: "SUBMITTED",
|
|
1681
|
+
SUCCEEDED: "SUCCEEDED"
|
|
1682
|
+
};
|
|
1681
1683
|
var MetadataGenerationTargetType = {
|
|
1682
1684
|
ASSET: "ASSET"
|
|
1683
1685
|
};
|
|
@@ -1689,7 +1691,8 @@ var RejectRuleBehavior = {
|
|
|
1689
1691
|
NONE: "NONE"
|
|
1690
1692
|
};
|
|
1691
1693
|
var SearchOutputAdditionalAttribute = {
|
|
1692
|
-
FORMS: "FORMS"
|
|
1694
|
+
FORMS: "FORMS",
|
|
1695
|
+
TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS"
|
|
1693
1696
|
};
|
|
1694
1697
|
var InventorySearchScope = {
|
|
1695
1698
|
ASSET: "ASSET",
|
|
@@ -1754,6 +1757,14 @@ var FilterClause;
|
|
|
1754
1757
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
1755
1758
|
}, "visit");
|
|
1756
1759
|
})(FilterClause || (FilterClause = {}));
|
|
1760
|
+
var SubscriptionTargetSummaryFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1761
|
+
...obj,
|
|
1762
|
+
...obj.name && { name: import_smithy_client.SENSITIVE_STRING }
|
|
1763
|
+
}), "SubscriptionTargetSummaryFilterSensitiveLog");
|
|
1764
|
+
var ListSubscriptionTargetsOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1765
|
+
...obj,
|
|
1766
|
+
...obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }
|
|
1767
|
+
}), "ListSubscriptionTargetsOutputFilterSensitiveLog");
|
|
1757
1768
|
var RejectSubscriptionRequestInputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
1758
1769
|
...obj,
|
|
1759
1770
|
...obj.decisionComment && { decisionComment: import_smithy_client.SENSITIVE_STRING }
|
|
@@ -2535,6 +2546,21 @@ var se_DeleteSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
2535
2546
|
b.m("DELETE").h(headers).b(body);
|
|
2536
2547
|
return b.build();
|
|
2537
2548
|
}, "se_DeleteSubscriptionTargetCommand");
|
|
2549
|
+
var se_DeleteTimeSeriesDataPointsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2550
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2551
|
+
const headers = {};
|
|
2552
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/time-series-data-points");
|
|
2553
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
2554
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
2555
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
2556
|
+
const query = (0, import_smithy_client.map)({
|
|
2557
|
+
[_fN]: [, (0, import_smithy_client.expectNonNull)(input[_fN], `formName`)],
|
|
2558
|
+
[_cT]: [, input[_cT] ?? (0, import_uuid.v4)()]
|
|
2559
|
+
});
|
|
2560
|
+
let body;
|
|
2561
|
+
b.m("DELETE").h(headers).q(query).b(body);
|
|
2562
|
+
return b.build();
|
|
2563
|
+
}, "se_DeleteTimeSeriesDataPointsCommand");
|
|
2538
2564
|
var se_GetAssetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2539
2565
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2540
2566
|
const headers = {};
|
|
@@ -2761,6 +2787,21 @@ var se_GetSubscriptionTargetCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
2761
2787
|
b.m("GET").h(headers).b(body);
|
|
2762
2788
|
return b.build();
|
|
2763
2789
|
}, "se_GetSubscriptionTargetCommand");
|
|
2790
|
+
var se_GetTimeSeriesDataPointCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2791
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2792
|
+
const headers = {};
|
|
2793
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/time-series-data-points/{identifier}");
|
|
2794
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
2795
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
2796
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
2797
|
+
b.p("identifier", () => input.identifier, "{identifier}", false);
|
|
2798
|
+
const query = (0, import_smithy_client.map)({
|
|
2799
|
+
[_fN]: [, (0, import_smithy_client.expectNonNull)(input[_fN], `formName`)]
|
|
2800
|
+
});
|
|
2801
|
+
let body;
|
|
2802
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
2803
|
+
return b.build();
|
|
2804
|
+
}, "se_GetTimeSeriesDataPointCommand");
|
|
2764
2805
|
var se_GetUserProfileCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2765
2806
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2766
2807
|
const headers = {};
|
|
@@ -3064,6 +3105,43 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
3064
3105
|
b.m("GET").h(headers).b(body);
|
|
3065
3106
|
return b.build();
|
|
3066
3107
|
}, "se_ListTagsForResourceCommand");
|
|
3108
|
+
var se_ListTimeSeriesDataPointsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3109
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3110
|
+
const headers = {};
|
|
3111
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/time-series-data-points");
|
|
3112
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3113
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
3114
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
3115
|
+
const query = (0, import_smithy_client.map)({
|
|
3116
|
+
[_fN]: [, (0, import_smithy_client.expectNonNull)(input[_fN], `formName`)],
|
|
3117
|
+
[_sA]: [() => input.startedAt !== void 0, () => (input[_sA].toISOString().split(".")[0] + "Z").toString()],
|
|
3118
|
+
[_eA]: [() => input.endedAt !== void 0, () => (input[_eA].toISOString().split(".")[0] + "Z").toString()],
|
|
3119
|
+
[_nT]: [, input[_nT]],
|
|
3120
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()]
|
|
3121
|
+
});
|
|
3122
|
+
let body;
|
|
3123
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
3124
|
+
return b.build();
|
|
3125
|
+
}, "se_ListTimeSeriesDataPointsCommand");
|
|
3126
|
+
var se_PostTimeSeriesDataPointsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3127
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3128
|
+
const headers = {
|
|
3129
|
+
"content-type": "application/json"
|
|
3130
|
+
};
|
|
3131
|
+
b.bp("/v2/domains/{domainIdentifier}/entities/{entityType}/{entityIdentifier}/time-series-data-points");
|
|
3132
|
+
b.p("domainIdentifier", () => input.domainIdentifier, "{domainIdentifier}", false);
|
|
3133
|
+
b.p("entityIdentifier", () => input.entityIdentifier, "{entityIdentifier}", false);
|
|
3134
|
+
b.p("entityType", () => input.entityType, "{entityType}", false);
|
|
3135
|
+
let body;
|
|
3136
|
+
body = JSON.stringify(
|
|
3137
|
+
(0, import_smithy_client.take)(input, {
|
|
3138
|
+
clientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
3139
|
+
forms: (_) => se_TimeSeriesDataPointFormInputList(_, context)
|
|
3140
|
+
})
|
|
3141
|
+
);
|
|
3142
|
+
b.m("POST").h(headers).b(body);
|
|
3143
|
+
return b.build();
|
|
3144
|
+
}, "se_PostTimeSeriesDataPointsCommand");
|
|
3067
3145
|
var se_PutEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3068
3146
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3069
3147
|
const headers = {
|
|
@@ -3655,6 +3733,7 @@ var de_CreateAssetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
3655
3733
|
formsOutput: import_smithy_client._json,
|
|
3656
3734
|
glossaryTerms: import_smithy_client._json,
|
|
3657
3735
|
id: import_smithy_client.expectString,
|
|
3736
|
+
latestTimeSeriesDataPointFormsOutput: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
3658
3737
|
listing: import_smithy_client._json,
|
|
3659
3738
|
name: import_smithy_client.expectString,
|
|
3660
3739
|
owningProjectId: import_smithy_client.expectString,
|
|
@@ -3686,6 +3765,7 @@ var de_CreateAssetRevisionCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
3686
3765
|
formsOutput: import_smithy_client._json,
|
|
3687
3766
|
glossaryTerms: import_smithy_client._json,
|
|
3688
3767
|
id: import_smithy_client.expectString,
|
|
3768
|
+
latestTimeSeriesDataPointFormsOutput: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
3689
3769
|
listing: import_smithy_client._json,
|
|
3690
3770
|
name: import_smithy_client.expectString,
|
|
3691
3771
|
owningProjectId: import_smithy_client.expectString,
|
|
@@ -4259,6 +4339,16 @@ var de_DeleteSubscriptionTargetCommand = /* @__PURE__ */ __name(async (output, c
|
|
|
4259
4339
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
4260
4340
|
return contents;
|
|
4261
4341
|
}, "de_DeleteSubscriptionTargetCommand");
|
|
4342
|
+
var de_DeleteTimeSeriesDataPointsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4343
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
4344
|
+
return de_CommandError(output, context);
|
|
4345
|
+
}
|
|
4346
|
+
const contents = (0, import_smithy_client.map)({
|
|
4347
|
+
$metadata: deserializeMetadata(output)
|
|
4348
|
+
});
|
|
4349
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
4350
|
+
return contents;
|
|
4351
|
+
}, "de_DeleteTimeSeriesDataPointsCommand");
|
|
4262
4352
|
var de_GetAssetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4263
4353
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4264
4354
|
return de_CommandError(output, context);
|
|
@@ -4278,6 +4368,7 @@ var de_GetAssetCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
4278
4368
|
formsOutput: import_smithy_client._json,
|
|
4279
4369
|
glossaryTerms: import_smithy_client._json,
|
|
4280
4370
|
id: import_smithy_client.expectString,
|
|
4371
|
+
latestTimeSeriesDataPointFormsOutput: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
4281
4372
|
listing: import_smithy_client._json,
|
|
4282
4373
|
name: import_smithy_client.expectString,
|
|
4283
4374
|
owningProjectId: import_smithy_client.expectString,
|
|
@@ -4776,6 +4867,24 @@ var de_GetSubscriptionTargetCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
4776
4867
|
Object.assign(contents, doc);
|
|
4777
4868
|
return contents;
|
|
4778
4869
|
}, "de_GetSubscriptionTargetCommand");
|
|
4870
|
+
var de_GetTimeSeriesDataPointCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4871
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4872
|
+
return de_CommandError(output, context);
|
|
4873
|
+
}
|
|
4874
|
+
const contents = (0, import_smithy_client.map)({
|
|
4875
|
+
$metadata: deserializeMetadata(output)
|
|
4876
|
+
});
|
|
4877
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
4878
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
4879
|
+
domainId: import_smithy_client.expectString,
|
|
4880
|
+
entityId: import_smithy_client.expectString,
|
|
4881
|
+
entityType: import_smithy_client.expectString,
|
|
4882
|
+
form: (_) => de_TimeSeriesDataPointFormOutput(_, context),
|
|
4883
|
+
formName: import_smithy_client.expectString
|
|
4884
|
+
});
|
|
4885
|
+
Object.assign(contents, doc);
|
|
4886
|
+
return contents;
|
|
4887
|
+
}, "de_GetTimeSeriesDataPointCommand");
|
|
4779
4888
|
var de_GetUserProfileCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4780
4889
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4781
4890
|
return de_CommandError(output, context);
|
|
@@ -5063,6 +5172,38 @@ var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
5063
5172
|
Object.assign(contents, doc);
|
|
5064
5173
|
return contents;
|
|
5065
5174
|
}, "de_ListTagsForResourceCommand");
|
|
5175
|
+
var de_ListTimeSeriesDataPointsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5176
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5177
|
+
return de_CommandError(output, context);
|
|
5178
|
+
}
|
|
5179
|
+
const contents = (0, import_smithy_client.map)({
|
|
5180
|
+
$metadata: deserializeMetadata(output)
|
|
5181
|
+
});
|
|
5182
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
5183
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
5184
|
+
items: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
5185
|
+
nextToken: import_smithy_client.expectString
|
|
5186
|
+
});
|
|
5187
|
+
Object.assign(contents, doc);
|
|
5188
|
+
return contents;
|
|
5189
|
+
}, "de_ListTimeSeriesDataPointsCommand");
|
|
5190
|
+
var de_PostTimeSeriesDataPointsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5191
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
5192
|
+
return de_CommandError(output, context);
|
|
5193
|
+
}
|
|
5194
|
+
const contents = (0, import_smithy_client.map)({
|
|
5195
|
+
$metadata: deserializeMetadata(output)
|
|
5196
|
+
});
|
|
5197
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseJsonBody)(output.body, context)), "body");
|
|
5198
|
+
const doc = (0, import_smithy_client.take)(data, {
|
|
5199
|
+
domainId: import_smithy_client.expectString,
|
|
5200
|
+
entityId: import_smithy_client.expectString,
|
|
5201
|
+
entityType: import_smithy_client.expectString,
|
|
5202
|
+
forms: (_) => de_TimeSeriesDataPointFormOutputList(_, context)
|
|
5203
|
+
});
|
|
5204
|
+
Object.assign(contents, doc);
|
|
5205
|
+
return contents;
|
|
5206
|
+
}, "de_PostTimeSeriesDataPointsCommand");
|
|
5066
5207
|
var de_PutEnvironmentBlueprintConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5067
5208
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5068
5209
|
return de_CommandError(output, context);
|
|
@@ -5749,9 +5890,23 @@ var se_RejectRule = /* @__PURE__ */ __name((input, context) => {
|
|
|
5749
5890
|
threshold: import_smithy_client.serializeFloat
|
|
5750
5891
|
});
|
|
5751
5892
|
}, "se_RejectRule");
|
|
5893
|
+
var se_TimeSeriesDataPointFormInput = /* @__PURE__ */ __name((input, context) => {
|
|
5894
|
+
return (0, import_smithy_client.take)(input, {
|
|
5895
|
+
content: [],
|
|
5896
|
+
formName: [],
|
|
5897
|
+
timestamp: (_) => Math.round(_.getTime() / 1e3),
|
|
5898
|
+
typeIdentifier: [],
|
|
5899
|
+
typeRevision: []
|
|
5900
|
+
});
|
|
5901
|
+
}, "se_TimeSeriesDataPointFormInput");
|
|
5902
|
+
var se_TimeSeriesDataPointFormInputList = /* @__PURE__ */ __name((input, context) => {
|
|
5903
|
+
return input.filter((e) => e != null).map((entry) => {
|
|
5904
|
+
return se_TimeSeriesDataPointFormInput(entry, context);
|
|
5905
|
+
});
|
|
5906
|
+
}, "se_TimeSeriesDataPointFormInputList");
|
|
5752
5907
|
var de_AssetItem = /* @__PURE__ */ __name((output, context) => {
|
|
5753
5908
|
return (0, import_smithy_client.take)(output, {
|
|
5754
|
-
additionalAttributes:
|
|
5909
|
+
additionalAttributes: (_) => de_AssetItemAdditionalAttributes(_, context),
|
|
5755
5910
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5756
5911
|
createdBy: import_smithy_client.expectString,
|
|
5757
5912
|
description: import_smithy_client.expectString,
|
|
@@ -5767,6 +5922,13 @@ var de_AssetItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
5767
5922
|
typeRevision: import_smithy_client.expectString
|
|
5768
5923
|
});
|
|
5769
5924
|
}, "de_AssetItem");
|
|
5925
|
+
var de_AssetItemAdditionalAttributes = /* @__PURE__ */ __name((output, context) => {
|
|
5926
|
+
return (0, import_smithy_client.take)(output, {
|
|
5927
|
+
formsOutput: import_smithy_client._json,
|
|
5928
|
+
latestTimeSeriesDataPointFormsOutput: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
5929
|
+
readOnlyFormsOutput: import_smithy_client._json
|
|
5930
|
+
});
|
|
5931
|
+
}, "de_AssetItemAdditionalAttributes");
|
|
5770
5932
|
var de_AssetListing = /* @__PURE__ */ __name((output, context) => {
|
|
5771
5933
|
return (0, import_smithy_client.take)(output, {
|
|
5772
5934
|
assetId: import_smithy_client.expectString,
|
|
@@ -5775,12 +5937,13 @@ var de_AssetListing = /* @__PURE__ */ __name((output, context) => {
|
|
|
5775
5937
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5776
5938
|
forms: import_smithy_client.expectString,
|
|
5777
5939
|
glossaryTerms: import_smithy_client._json,
|
|
5940
|
+
latestTimeSeriesDataPointForms: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context),
|
|
5778
5941
|
owningProjectId: import_smithy_client.expectString
|
|
5779
5942
|
});
|
|
5780
5943
|
}, "de_AssetListing");
|
|
5781
5944
|
var de_AssetListingItem = /* @__PURE__ */ __name((output, context) => {
|
|
5782
5945
|
return (0, import_smithy_client.take)(output, {
|
|
5783
|
-
additionalAttributes:
|
|
5946
|
+
additionalAttributes: (_) => de_AssetListingItemAdditionalAttributes(_, context),
|
|
5784
5947
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
5785
5948
|
description: import_smithy_client.expectString,
|
|
5786
5949
|
entityId: import_smithy_client.expectString,
|
|
@@ -5795,6 +5958,12 @@ var de_AssetListingItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
5795
5958
|
owningProjectId: import_smithy_client.expectString
|
|
5796
5959
|
});
|
|
5797
5960
|
}, "de_AssetListingItem");
|
|
5961
|
+
var de_AssetListingItemAdditionalAttributes = /* @__PURE__ */ __name((output, context) => {
|
|
5962
|
+
return (0, import_smithy_client.take)(output, {
|
|
5963
|
+
forms: import_smithy_client.expectString,
|
|
5964
|
+
latestTimeSeriesDataPointForms: (_) => de_TimeSeriesDataPointSummaryFormOutputList(_, context)
|
|
5965
|
+
});
|
|
5966
|
+
}, "de_AssetListingItemAdditionalAttributes");
|
|
5798
5967
|
var de_AssetRevision = /* @__PURE__ */ __name((output, context) => {
|
|
5799
5968
|
return (0, import_smithy_client.take)(output, {
|
|
5800
5969
|
createdAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -6284,6 +6453,38 @@ var de_SubscriptionTargetSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
6284
6453
|
updatedBy: import_smithy_client.expectString
|
|
6285
6454
|
});
|
|
6286
6455
|
}, "de_SubscriptionTargetSummary");
|
|
6456
|
+
var de_TimeSeriesDataPointFormOutput = /* @__PURE__ */ __name((output, context) => {
|
|
6457
|
+
return (0, import_smithy_client.take)(output, {
|
|
6458
|
+
content: import_smithy_client.expectString,
|
|
6459
|
+
formName: import_smithy_client.expectString,
|
|
6460
|
+
id: import_smithy_client.expectString,
|
|
6461
|
+
timestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
6462
|
+
typeIdentifier: import_smithy_client.expectString,
|
|
6463
|
+
typeRevision: import_smithy_client.expectString
|
|
6464
|
+
});
|
|
6465
|
+
}, "de_TimeSeriesDataPointFormOutput");
|
|
6466
|
+
var de_TimeSeriesDataPointFormOutputList = /* @__PURE__ */ __name((output, context) => {
|
|
6467
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
6468
|
+
return de_TimeSeriesDataPointFormOutput(entry, context);
|
|
6469
|
+
});
|
|
6470
|
+
return retVal;
|
|
6471
|
+
}, "de_TimeSeriesDataPointFormOutputList");
|
|
6472
|
+
var de_TimeSeriesDataPointSummaryFormOutput = /* @__PURE__ */ __name((output, context) => {
|
|
6473
|
+
return (0, import_smithy_client.take)(output, {
|
|
6474
|
+
contentSummary: import_smithy_client.expectString,
|
|
6475
|
+
formName: import_smithy_client.expectString,
|
|
6476
|
+
id: import_smithy_client.expectString,
|
|
6477
|
+
timestamp: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
6478
|
+
typeIdentifier: import_smithy_client.expectString,
|
|
6479
|
+
typeRevision: import_smithy_client.expectString
|
|
6480
|
+
});
|
|
6481
|
+
}, "de_TimeSeriesDataPointSummaryFormOutput");
|
|
6482
|
+
var de_TimeSeriesDataPointSummaryFormOutputList = /* @__PURE__ */ __name((output, context) => {
|
|
6483
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
6484
|
+
return de_TimeSeriesDataPointSummaryFormOutput(entry, context);
|
|
6485
|
+
});
|
|
6486
|
+
return retVal;
|
|
6487
|
+
}, "de_TimeSeriesDataPointSummaryFormOutputList");
|
|
6287
6488
|
var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
6288
6489
|
httpStatusCode: output.statusCode,
|
|
6289
6490
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -6296,10 +6497,12 @@ var _aPI = "approverProjectId";
|
|
|
6296
6497
|
var _aT = "afterTimestamp";
|
|
6297
6498
|
var _bT = "beforeTimestamp";
|
|
6298
6499
|
var _cT = "clientToken";
|
|
6500
|
+
var _eA = "endedAt";
|
|
6299
6501
|
var _eBI = "environmentBlueprintIdentifier";
|
|
6300
6502
|
var _eI = "environmentIdentifier";
|
|
6301
6503
|
var _eIn = "environmentId";
|
|
6302
6504
|
var _ePI = "environmentProfileIdentifier";
|
|
6505
|
+
var _fN = "formName";
|
|
6303
6506
|
var _gI = "groupIdentifier";
|
|
6304
6507
|
var _lR = "listingRevision";
|
|
6305
6508
|
var _m = "managed";
|
|
@@ -6311,6 +6514,7 @@ var _p = "provider";
|
|
|
6311
6514
|
var _pI = "projectIdentifier";
|
|
6312
6515
|
var _r = "revision";
|
|
6313
6516
|
var _s = "status";
|
|
6517
|
+
var _sA = "startedAt";
|
|
6314
6518
|
var _sB = "sortBy";
|
|
6315
6519
|
var _sDC = "skipDeletionCheck";
|
|
6316
6520
|
var _sI = "subscriptionId";
|
|
@@ -6966,6 +7170,23 @@ var _DeleteSubscriptionTargetCommand = class _DeleteSubscriptionTargetCommand ex
|
|
|
6966
7170
|
__name(_DeleteSubscriptionTargetCommand, "DeleteSubscriptionTargetCommand");
|
|
6967
7171
|
var DeleteSubscriptionTargetCommand = _DeleteSubscriptionTargetCommand;
|
|
6968
7172
|
|
|
7173
|
+
// src/commands/DeleteTimeSeriesDataPointsCommand.ts
|
|
7174
|
+
|
|
7175
|
+
|
|
7176
|
+
|
|
7177
|
+
|
|
7178
|
+
var _DeleteTimeSeriesDataPointsCommand = class _DeleteTimeSeriesDataPointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
7179
|
+
...commonParams
|
|
7180
|
+
}).m(function(Command, cs, config, o) {
|
|
7181
|
+
return [
|
|
7182
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7183
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7184
|
+
];
|
|
7185
|
+
}).s("DataZone", "DeleteTimeSeriesDataPoints", {}).n("DataZoneClient", "DeleteTimeSeriesDataPointsCommand").f(void 0, void 0).ser(se_DeleteTimeSeriesDataPointsCommand).de(de_DeleteTimeSeriesDataPointsCommand).build() {
|
|
7186
|
+
};
|
|
7187
|
+
__name(_DeleteTimeSeriesDataPointsCommand, "DeleteTimeSeriesDataPointsCommand");
|
|
7188
|
+
var DeleteTimeSeriesDataPointsCommand = _DeleteTimeSeriesDataPointsCommand;
|
|
7189
|
+
|
|
6969
7190
|
// src/commands/GetAssetCommand.ts
|
|
6970
7191
|
|
|
6971
7192
|
|
|
@@ -7323,6 +7544,23 @@ var _GetSubscriptionTargetCommand = class _GetSubscriptionTargetCommand extends
|
|
|
7323
7544
|
__name(_GetSubscriptionTargetCommand, "GetSubscriptionTargetCommand");
|
|
7324
7545
|
var GetSubscriptionTargetCommand = _GetSubscriptionTargetCommand;
|
|
7325
7546
|
|
|
7547
|
+
// src/commands/GetTimeSeriesDataPointCommand.ts
|
|
7548
|
+
|
|
7549
|
+
|
|
7550
|
+
|
|
7551
|
+
|
|
7552
|
+
var _GetTimeSeriesDataPointCommand = class _GetTimeSeriesDataPointCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
7553
|
+
...commonParams
|
|
7554
|
+
}).m(function(Command, cs, config, o) {
|
|
7555
|
+
return [
|
|
7556
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7557
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7558
|
+
];
|
|
7559
|
+
}).s("DataZone", "GetTimeSeriesDataPoint", {}).n("DataZoneClient", "GetTimeSeriesDataPointCommand").f(void 0, void 0).ser(se_GetTimeSeriesDataPointCommand).de(de_GetTimeSeriesDataPointCommand).build() {
|
|
7560
|
+
};
|
|
7561
|
+
__name(_GetTimeSeriesDataPointCommand, "GetTimeSeriesDataPointCommand");
|
|
7562
|
+
var GetTimeSeriesDataPointCommand = _GetTimeSeriesDataPointCommand;
|
|
7563
|
+
|
|
7326
7564
|
// src/commands/GetUserProfileCommand.ts
|
|
7327
7565
|
|
|
7328
7566
|
|
|
@@ -7646,6 +7884,40 @@ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends impo
|
|
|
7646
7884
|
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
7647
7885
|
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
7648
7886
|
|
|
7887
|
+
// src/commands/ListTimeSeriesDataPointsCommand.ts
|
|
7888
|
+
|
|
7889
|
+
|
|
7890
|
+
|
|
7891
|
+
|
|
7892
|
+
var _ListTimeSeriesDataPointsCommand = class _ListTimeSeriesDataPointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
7893
|
+
...commonParams
|
|
7894
|
+
}).m(function(Command, cs, config, o) {
|
|
7895
|
+
return [
|
|
7896
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7897
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7898
|
+
];
|
|
7899
|
+
}).s("DataZone", "ListTimeSeriesDataPoints", {}).n("DataZoneClient", "ListTimeSeriesDataPointsCommand").f(void 0, void 0).ser(se_ListTimeSeriesDataPointsCommand).de(de_ListTimeSeriesDataPointsCommand).build() {
|
|
7900
|
+
};
|
|
7901
|
+
__name(_ListTimeSeriesDataPointsCommand, "ListTimeSeriesDataPointsCommand");
|
|
7902
|
+
var ListTimeSeriesDataPointsCommand = _ListTimeSeriesDataPointsCommand;
|
|
7903
|
+
|
|
7904
|
+
// src/commands/PostTimeSeriesDataPointsCommand.ts
|
|
7905
|
+
|
|
7906
|
+
|
|
7907
|
+
|
|
7908
|
+
|
|
7909
|
+
var _PostTimeSeriesDataPointsCommand = class _PostTimeSeriesDataPointsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
7910
|
+
...commonParams
|
|
7911
|
+
}).m(function(Command, cs, config, o) {
|
|
7912
|
+
return [
|
|
7913
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
7914
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
7915
|
+
];
|
|
7916
|
+
}).s("DataZone", "PostTimeSeriesDataPoints", {}).n("DataZoneClient", "PostTimeSeriesDataPointsCommand").f(void 0, void 0).ser(se_PostTimeSeriesDataPointsCommand).de(de_PostTimeSeriesDataPointsCommand).build() {
|
|
7917
|
+
};
|
|
7918
|
+
__name(_PostTimeSeriesDataPointsCommand, "PostTimeSeriesDataPointsCommand");
|
|
7919
|
+
var PostTimeSeriesDataPointsCommand = _PostTimeSeriesDataPointsCommand;
|
|
7920
|
+
|
|
7649
7921
|
// src/commands/PutEnvironmentBlueprintConfigurationCommand.ts
|
|
7650
7922
|
|
|
7651
7923
|
|
|
@@ -8111,6 +8383,7 @@ var commands = {
|
|
|
8111
8383
|
DeleteSubscriptionGrantCommand,
|
|
8112
8384
|
DeleteSubscriptionRequestCommand,
|
|
8113
8385
|
DeleteSubscriptionTargetCommand,
|
|
8386
|
+
DeleteTimeSeriesDataPointsCommand,
|
|
8114
8387
|
GetAssetCommand,
|
|
8115
8388
|
GetAssetTypeCommand,
|
|
8116
8389
|
GetDataSourceCommand,
|
|
@@ -8132,6 +8405,7 @@ var commands = {
|
|
|
8132
8405
|
GetSubscriptionGrantCommand,
|
|
8133
8406
|
GetSubscriptionRequestDetailsCommand,
|
|
8134
8407
|
GetSubscriptionTargetCommand,
|
|
8408
|
+
GetTimeSeriesDataPointCommand,
|
|
8135
8409
|
GetUserProfileCommand,
|
|
8136
8410
|
ListAssetRevisionsCommand,
|
|
8137
8411
|
ListDataSourceRunActivitiesCommand,
|
|
@@ -8151,6 +8425,8 @@ var commands = {
|
|
|
8151
8425
|
ListSubscriptionsCommand,
|
|
8152
8426
|
ListSubscriptionTargetsCommand,
|
|
8153
8427
|
ListTagsForResourceCommand,
|
|
8428
|
+
ListTimeSeriesDataPointsCommand,
|
|
8429
|
+
PostTimeSeriesDataPointsCommand,
|
|
8154
8430
|
PutEnvironmentBlueprintConfigurationCommand,
|
|
8155
8431
|
RejectPredictionsCommand,
|
|
8156
8432
|
RejectSubscriptionRequestCommand,
|
|
@@ -8251,6 +8527,10 @@ var paginateListSubscriptionTargets = (0, import_core.createPaginator)(DataZoneC
|
|
|
8251
8527
|
|
|
8252
8528
|
var paginateListSubscriptions = (0, import_core.createPaginator)(DataZoneClient, ListSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
8253
8529
|
|
|
8530
|
+
// src/pagination/ListTimeSeriesDataPointsPaginator.ts
|
|
8531
|
+
|
|
8532
|
+
var paginateListTimeSeriesDataPoints = (0, import_core.createPaginator)(DataZoneClient, ListTimeSeriesDataPointsCommand, "nextToken", "nextToken", "maxResults");
|
|
8533
|
+
|
|
8254
8534
|
// src/pagination/SearchGroupProfilesPaginator.ts
|
|
8255
8535
|
|
|
8256
8536
|
var paginateSearchGroupProfiles = (0, import_core.createPaginator)(DataZoneClient, SearchGroupProfilesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -8316,6 +8596,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8316
8596
|
DeleteSubscriptionGrantCommand,
|
|
8317
8597
|
DeleteSubscriptionRequestCommand,
|
|
8318
8598
|
DeleteSubscriptionTargetCommand,
|
|
8599
|
+
DeleteTimeSeriesDataPointsCommand,
|
|
8319
8600
|
GetAssetCommand,
|
|
8320
8601
|
GetAssetTypeCommand,
|
|
8321
8602
|
GetDataSourceCommand,
|
|
@@ -8337,6 +8618,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8337
8618
|
GetSubscriptionGrantCommand,
|
|
8338
8619
|
GetSubscriptionRequestDetailsCommand,
|
|
8339
8620
|
GetSubscriptionTargetCommand,
|
|
8621
|
+
GetTimeSeriesDataPointCommand,
|
|
8340
8622
|
GetUserProfileCommand,
|
|
8341
8623
|
ListAssetRevisionsCommand,
|
|
8342
8624
|
ListDataSourceRunActivitiesCommand,
|
|
@@ -8356,6 +8638,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8356
8638
|
ListSubscriptionTargetsCommand,
|
|
8357
8639
|
ListSubscriptionsCommand,
|
|
8358
8640
|
ListTagsForResourceCommand,
|
|
8641
|
+
ListTimeSeriesDataPointsCommand,
|
|
8642
|
+
PostTimeSeriesDataPointsCommand,
|
|
8359
8643
|
PutEnvironmentBlueprintConfigurationCommand,
|
|
8360
8644
|
RejectPredictionsCommand,
|
|
8361
8645
|
RejectSubscriptionRequestCommand,
|
|
@@ -8398,6 +8682,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8398
8682
|
paginateListSubscriptionRequests,
|
|
8399
8683
|
paginateListSubscriptionTargets,
|
|
8400
8684
|
paginateListSubscriptions,
|
|
8685
|
+
paginateListTimeSeriesDataPoints,
|
|
8401
8686
|
paginateSearchGroupProfiles,
|
|
8402
8687
|
paginateSearchListings,
|
|
8403
8688
|
paginateSearch,
|
|
@@ -8455,6 +8740,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8455
8740
|
UserProfileType,
|
|
8456
8741
|
DataAssetActivityStatus,
|
|
8457
8742
|
DataSourceRunType,
|
|
8743
|
+
TimeSeriesEntityType,
|
|
8458
8744
|
ListingItem,
|
|
8459
8745
|
TaskStatus,
|
|
8460
8746
|
NotificationType,
|
|
@@ -8464,7 +8750,6 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8464
8750
|
SortOrder,
|
|
8465
8751
|
MemberDetails,
|
|
8466
8752
|
SortKey,
|
|
8467
|
-
MetadataGenerationRunStatus,
|
|
8468
8753
|
AcceptChoiceFilterSensitiveLog,
|
|
8469
8754
|
AcceptPredictionsInputFilterSensitiveLog,
|
|
8470
8755
|
AcceptSubscriptionRequestInputFilterSensitiveLog,
|
|
@@ -8563,8 +8848,7 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8563
8848
|
ListSubscriptionRequestsOutputFilterSensitiveLog,
|
|
8564
8849
|
SubscriptionSummaryFilterSensitiveLog,
|
|
8565
8850
|
ListSubscriptionsOutputFilterSensitiveLog,
|
|
8566
|
-
|
|
8567
|
-
ListSubscriptionTargetsOutputFilterSensitiveLog,
|
|
8851
|
+
MetadataGenerationRunStatus,
|
|
8568
8852
|
MetadataGenerationTargetType,
|
|
8569
8853
|
MetadataGenerationRunType,
|
|
8570
8854
|
RejectRuleBehavior,
|
|
@@ -8577,6 +8861,8 @@ var paginateSearchUserProfiles = (0, import_core.createPaginator)(DataZoneClient
|
|
|
8577
8861
|
SearchTypesResultItem,
|
|
8578
8862
|
UserSearchType,
|
|
8579
8863
|
FilterClause,
|
|
8864
|
+
SubscriptionTargetSummaryFilterSensitiveLog,
|
|
8865
|
+
ListSubscriptionTargetsOutputFilterSensitiveLog,
|
|
8580
8866
|
RejectSubscriptionRequestInputFilterSensitiveLog,
|
|
8581
8867
|
RejectSubscriptionRequestOutputFilterSensitiveLog,
|
|
8582
8868
|
RevokeSubscriptionOutputFilterSensitiveLog,
|
package/dist-es/DataZone.js
CHANGED
|
@@ -37,6 +37,7 @@ import { DeleteProjectMembershipCommand, } from "./commands/DeleteProjectMembers
|
|
|
37
37
|
import { DeleteSubscriptionGrantCommand, } from "./commands/DeleteSubscriptionGrantCommand";
|
|
38
38
|
import { DeleteSubscriptionRequestCommand, } from "./commands/DeleteSubscriptionRequestCommand";
|
|
39
39
|
import { DeleteSubscriptionTargetCommand, } from "./commands/DeleteSubscriptionTargetCommand";
|
|
40
|
+
import { DeleteTimeSeriesDataPointsCommand, } from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
40
41
|
import { GetAssetCommand } from "./commands/GetAssetCommand";
|
|
41
42
|
import { GetAssetTypeCommand, } from "./commands/GetAssetTypeCommand";
|
|
42
43
|
import { GetDataSourceCommand, } from "./commands/GetDataSourceCommand";
|
|
@@ -58,6 +59,7 @@ import { GetSubscriptionCommand, } from "./commands/GetSubscriptionCommand";
|
|
|
58
59
|
import { GetSubscriptionGrantCommand, } from "./commands/GetSubscriptionGrantCommand";
|
|
59
60
|
import { GetSubscriptionRequestDetailsCommand, } from "./commands/GetSubscriptionRequestDetailsCommand";
|
|
60
61
|
import { GetSubscriptionTargetCommand, } from "./commands/GetSubscriptionTargetCommand";
|
|
62
|
+
import { GetTimeSeriesDataPointCommand, } from "./commands/GetTimeSeriesDataPointCommand";
|
|
61
63
|
import { GetUserProfileCommand, } from "./commands/GetUserProfileCommand";
|
|
62
64
|
import { ListAssetRevisionsCommand, } from "./commands/ListAssetRevisionsCommand";
|
|
63
65
|
import { ListDataSourceRunActivitiesCommand, } from "./commands/ListDataSourceRunActivitiesCommand";
|
|
@@ -77,6 +79,8 @@ import { ListSubscriptionRequestsCommand, } from "./commands/ListSubscriptionReq
|
|
|
77
79
|
import { ListSubscriptionsCommand, } from "./commands/ListSubscriptionsCommand";
|
|
78
80
|
import { ListSubscriptionTargetsCommand, } from "./commands/ListSubscriptionTargetsCommand";
|
|
79
81
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
82
|
+
import { ListTimeSeriesDataPointsCommand, } from "./commands/ListTimeSeriesDataPointsCommand";
|
|
83
|
+
import { PostTimeSeriesDataPointsCommand, } from "./commands/PostTimeSeriesDataPointsCommand";
|
|
80
84
|
import { PutEnvironmentBlueprintConfigurationCommand, } from "./commands/PutEnvironmentBlueprintConfigurationCommand";
|
|
81
85
|
import { RejectPredictionsCommand, } from "./commands/RejectPredictionsCommand";
|
|
82
86
|
import { RejectSubscriptionRequestCommand, } from "./commands/RejectSubscriptionRequestCommand";
|
|
@@ -142,6 +146,7 @@ const commands = {
|
|
|
142
146
|
DeleteSubscriptionGrantCommand,
|
|
143
147
|
DeleteSubscriptionRequestCommand,
|
|
144
148
|
DeleteSubscriptionTargetCommand,
|
|
149
|
+
DeleteTimeSeriesDataPointsCommand,
|
|
145
150
|
GetAssetCommand,
|
|
146
151
|
GetAssetTypeCommand,
|
|
147
152
|
GetDataSourceCommand,
|
|
@@ -163,6 +168,7 @@ const commands = {
|
|
|
163
168
|
GetSubscriptionGrantCommand,
|
|
164
169
|
GetSubscriptionRequestDetailsCommand,
|
|
165
170
|
GetSubscriptionTargetCommand,
|
|
171
|
+
GetTimeSeriesDataPointCommand,
|
|
166
172
|
GetUserProfileCommand,
|
|
167
173
|
ListAssetRevisionsCommand,
|
|
168
174
|
ListDataSourceRunActivitiesCommand,
|
|
@@ -182,6 +188,8 @@ const commands = {
|
|
|
182
188
|
ListSubscriptionsCommand,
|
|
183
189
|
ListSubscriptionTargetsCommand,
|
|
184
190
|
ListTagsForResourceCommand,
|
|
191
|
+
ListTimeSeriesDataPointsCommand,
|
|
192
|
+
PostTimeSeriesDataPointsCommand,
|
|
185
193
|
PutEnvironmentBlueprintConfigurationCommand,
|
|
186
194
|
RejectPredictionsCommand,
|
|
187
195
|
RejectSubscriptionRequestCommand,
|