@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
|
@@ -155,6 +155,10 @@ import {
|
|
|
155
155
|
DeleteSubscriptionTargetCommandInput,
|
|
156
156
|
DeleteSubscriptionTargetCommandOutput,
|
|
157
157
|
} from "../commands/DeleteSubscriptionTargetCommand";
|
|
158
|
+
import {
|
|
159
|
+
DeleteTimeSeriesDataPointsCommandInput,
|
|
160
|
+
DeleteTimeSeriesDataPointsCommandOutput,
|
|
161
|
+
} from "../commands/DeleteTimeSeriesDataPointsCommand";
|
|
158
162
|
import {
|
|
159
163
|
GetAssetCommandInput,
|
|
160
164
|
GetAssetCommandOutput,
|
|
@@ -239,6 +243,10 @@ import {
|
|
|
239
243
|
GetSubscriptionTargetCommandInput,
|
|
240
244
|
GetSubscriptionTargetCommandOutput,
|
|
241
245
|
} from "../commands/GetSubscriptionTargetCommand";
|
|
246
|
+
import {
|
|
247
|
+
GetTimeSeriesDataPointCommandInput,
|
|
248
|
+
GetTimeSeriesDataPointCommandOutput,
|
|
249
|
+
} from "../commands/GetTimeSeriesDataPointCommand";
|
|
242
250
|
import {
|
|
243
251
|
GetUserProfileCommandInput,
|
|
244
252
|
GetUserProfileCommandOutput,
|
|
@@ -315,6 +323,14 @@ import {
|
|
|
315
323
|
ListTagsForResourceCommandInput,
|
|
316
324
|
ListTagsForResourceCommandOutput,
|
|
317
325
|
} from "../commands/ListTagsForResourceCommand";
|
|
326
|
+
import {
|
|
327
|
+
ListTimeSeriesDataPointsCommandInput,
|
|
328
|
+
ListTimeSeriesDataPointsCommandOutput,
|
|
329
|
+
} from "../commands/ListTimeSeriesDataPointsCommand";
|
|
330
|
+
import {
|
|
331
|
+
PostTimeSeriesDataPointsCommandInput,
|
|
332
|
+
PostTimeSeriesDataPointsCommandOutput,
|
|
333
|
+
} from "../commands/PostTimeSeriesDataPointsCommand";
|
|
318
334
|
import {
|
|
319
335
|
PutEnvironmentBlueprintConfigurationCommandInput,
|
|
320
336
|
PutEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -567,6 +583,10 @@ export declare const se_DeleteSubscriptionTargetCommand: (
|
|
|
567
583
|
input: DeleteSubscriptionTargetCommandInput,
|
|
568
584
|
context: __SerdeContext
|
|
569
585
|
) => Promise<__HttpRequest>;
|
|
586
|
+
export declare const se_DeleteTimeSeriesDataPointsCommand: (
|
|
587
|
+
input: DeleteTimeSeriesDataPointsCommandInput,
|
|
588
|
+
context: __SerdeContext
|
|
589
|
+
) => Promise<__HttpRequest>;
|
|
570
590
|
export declare const se_GetAssetCommand: (
|
|
571
591
|
input: GetAssetCommandInput,
|
|
572
592
|
context: __SerdeContext
|
|
@@ -651,6 +671,10 @@ export declare const se_GetSubscriptionTargetCommand: (
|
|
|
651
671
|
input: GetSubscriptionTargetCommandInput,
|
|
652
672
|
context: __SerdeContext
|
|
653
673
|
) => Promise<__HttpRequest>;
|
|
674
|
+
export declare const se_GetTimeSeriesDataPointCommand: (
|
|
675
|
+
input: GetTimeSeriesDataPointCommandInput,
|
|
676
|
+
context: __SerdeContext
|
|
677
|
+
) => Promise<__HttpRequest>;
|
|
654
678
|
export declare const se_GetUserProfileCommand: (
|
|
655
679
|
input: GetUserProfileCommandInput,
|
|
656
680
|
context: __SerdeContext
|
|
@@ -727,6 +751,14 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
727
751
|
input: ListTagsForResourceCommandInput,
|
|
728
752
|
context: __SerdeContext
|
|
729
753
|
) => Promise<__HttpRequest>;
|
|
754
|
+
export declare const se_ListTimeSeriesDataPointsCommand: (
|
|
755
|
+
input: ListTimeSeriesDataPointsCommandInput,
|
|
756
|
+
context: __SerdeContext
|
|
757
|
+
) => Promise<__HttpRequest>;
|
|
758
|
+
export declare const se_PostTimeSeriesDataPointsCommand: (
|
|
759
|
+
input: PostTimeSeriesDataPointsCommandInput,
|
|
760
|
+
context: __SerdeContext
|
|
761
|
+
) => Promise<__HttpRequest>;
|
|
730
762
|
export declare const se_PutEnvironmentBlueprintConfigurationCommand: (
|
|
731
763
|
input: PutEnvironmentBlueprintConfigurationCommandInput,
|
|
732
764
|
context: __SerdeContext
|
|
@@ -979,6 +1011,10 @@ export declare const de_DeleteSubscriptionTargetCommand: (
|
|
|
979
1011
|
output: __HttpResponse,
|
|
980
1012
|
context: __SerdeContext
|
|
981
1013
|
) => Promise<DeleteSubscriptionTargetCommandOutput>;
|
|
1014
|
+
export declare const de_DeleteTimeSeriesDataPointsCommand: (
|
|
1015
|
+
output: __HttpResponse,
|
|
1016
|
+
context: __SerdeContext
|
|
1017
|
+
) => Promise<DeleteTimeSeriesDataPointsCommandOutput>;
|
|
982
1018
|
export declare const de_GetAssetCommand: (
|
|
983
1019
|
output: __HttpResponse,
|
|
984
1020
|
context: __SerdeContext
|
|
@@ -1063,6 +1099,10 @@ export declare const de_GetSubscriptionTargetCommand: (
|
|
|
1063
1099
|
output: __HttpResponse,
|
|
1064
1100
|
context: __SerdeContext
|
|
1065
1101
|
) => Promise<GetSubscriptionTargetCommandOutput>;
|
|
1102
|
+
export declare const de_GetTimeSeriesDataPointCommand: (
|
|
1103
|
+
output: __HttpResponse,
|
|
1104
|
+
context: __SerdeContext
|
|
1105
|
+
) => Promise<GetTimeSeriesDataPointCommandOutput>;
|
|
1066
1106
|
export declare const de_GetUserProfileCommand: (
|
|
1067
1107
|
output: __HttpResponse,
|
|
1068
1108
|
context: __SerdeContext
|
|
@@ -1139,6 +1179,14 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
1139
1179
|
output: __HttpResponse,
|
|
1140
1180
|
context: __SerdeContext
|
|
1141
1181
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
1182
|
+
export declare const de_ListTimeSeriesDataPointsCommand: (
|
|
1183
|
+
output: __HttpResponse,
|
|
1184
|
+
context: __SerdeContext
|
|
1185
|
+
) => Promise<ListTimeSeriesDataPointsCommandOutput>;
|
|
1186
|
+
export declare const de_PostTimeSeriesDataPointsCommand: (
|
|
1187
|
+
output: __HttpResponse,
|
|
1188
|
+
context: __SerdeContext
|
|
1189
|
+
) => Promise<PostTimeSeriesDataPointsCommandOutput>;
|
|
1142
1190
|
export declare const de_PutEnvironmentBlueprintConfigurationCommand: (
|
|
1143
1191
|
output: __HttpResponse,
|
|
1144
1192
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-datazone",
|
|
3
3
|
"description": "AWS SDK for JavaScript Datazone Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.548.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-datazone",
|