@aws-sdk/client-datazone 3.546.0 → 3.549.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 +6 -6
|
@@ -197,6 +197,10 @@ import {
|
|
|
197
197
|
DeleteSubscriptionTargetCommandInput,
|
|
198
198
|
DeleteSubscriptionTargetCommandOutput,
|
|
199
199
|
} from "./commands/DeleteSubscriptionTargetCommand";
|
|
200
|
+
import {
|
|
201
|
+
DeleteTimeSeriesDataPointsCommandInput,
|
|
202
|
+
DeleteTimeSeriesDataPointsCommandOutput,
|
|
203
|
+
} from "./commands/DeleteTimeSeriesDataPointsCommand";
|
|
200
204
|
import {
|
|
201
205
|
GetAssetCommandInput,
|
|
202
206
|
GetAssetCommandOutput,
|
|
@@ -281,6 +285,10 @@ import {
|
|
|
281
285
|
GetSubscriptionTargetCommandInput,
|
|
282
286
|
GetSubscriptionTargetCommandOutput,
|
|
283
287
|
} from "./commands/GetSubscriptionTargetCommand";
|
|
288
|
+
import {
|
|
289
|
+
GetTimeSeriesDataPointCommandInput,
|
|
290
|
+
GetTimeSeriesDataPointCommandOutput,
|
|
291
|
+
} from "./commands/GetTimeSeriesDataPointCommand";
|
|
284
292
|
import {
|
|
285
293
|
GetUserProfileCommandInput,
|
|
286
294
|
GetUserProfileCommandOutput,
|
|
@@ -357,6 +365,14 @@ import {
|
|
|
357
365
|
ListTagsForResourceCommandInput,
|
|
358
366
|
ListTagsForResourceCommandOutput,
|
|
359
367
|
} from "./commands/ListTagsForResourceCommand";
|
|
368
|
+
import {
|
|
369
|
+
ListTimeSeriesDataPointsCommandInput,
|
|
370
|
+
ListTimeSeriesDataPointsCommandOutput,
|
|
371
|
+
} from "./commands/ListTimeSeriesDataPointsCommand";
|
|
372
|
+
import {
|
|
373
|
+
PostTimeSeriesDataPointsCommandInput,
|
|
374
|
+
PostTimeSeriesDataPointsCommandOutput,
|
|
375
|
+
} from "./commands/PostTimeSeriesDataPointsCommand";
|
|
360
376
|
import {
|
|
361
377
|
PutEnvironmentBlueprintConfigurationCommandInput,
|
|
362
378
|
PutEnvironmentBlueprintConfigurationCommandOutput,
|
|
@@ -503,6 +519,7 @@ export type ServiceInputTypes =
|
|
|
503
519
|
| DeleteSubscriptionGrantCommandInput
|
|
504
520
|
| DeleteSubscriptionRequestCommandInput
|
|
505
521
|
| DeleteSubscriptionTargetCommandInput
|
|
522
|
+
| DeleteTimeSeriesDataPointsCommandInput
|
|
506
523
|
| GetAssetCommandInput
|
|
507
524
|
| GetAssetTypeCommandInput
|
|
508
525
|
| GetDataSourceCommandInput
|
|
@@ -524,6 +541,7 @@ export type ServiceInputTypes =
|
|
|
524
541
|
| GetSubscriptionGrantCommandInput
|
|
525
542
|
| GetSubscriptionRequestDetailsCommandInput
|
|
526
543
|
| GetSubscriptionTargetCommandInput
|
|
544
|
+
| GetTimeSeriesDataPointCommandInput
|
|
527
545
|
| GetUserProfileCommandInput
|
|
528
546
|
| ListAssetRevisionsCommandInput
|
|
529
547
|
| ListDataSourceRunActivitiesCommandInput
|
|
@@ -543,6 +561,8 @@ export type ServiceInputTypes =
|
|
|
543
561
|
| ListSubscriptionTargetsCommandInput
|
|
544
562
|
| ListSubscriptionsCommandInput
|
|
545
563
|
| ListTagsForResourceCommandInput
|
|
564
|
+
| ListTimeSeriesDataPointsCommandInput
|
|
565
|
+
| PostTimeSeriesDataPointsCommandInput
|
|
546
566
|
| PutEnvironmentBlueprintConfigurationCommandInput
|
|
547
567
|
| RejectPredictionsCommandInput
|
|
548
568
|
| RejectSubscriptionRequestCommandInput
|
|
@@ -607,6 +627,7 @@ export type ServiceOutputTypes =
|
|
|
607
627
|
| DeleteSubscriptionGrantCommandOutput
|
|
608
628
|
| DeleteSubscriptionRequestCommandOutput
|
|
609
629
|
| DeleteSubscriptionTargetCommandOutput
|
|
630
|
+
| DeleteTimeSeriesDataPointsCommandOutput
|
|
610
631
|
| GetAssetCommandOutput
|
|
611
632
|
| GetAssetTypeCommandOutput
|
|
612
633
|
| GetDataSourceCommandOutput
|
|
@@ -628,6 +649,7 @@ export type ServiceOutputTypes =
|
|
|
628
649
|
| GetSubscriptionGrantCommandOutput
|
|
629
650
|
| GetSubscriptionRequestDetailsCommandOutput
|
|
630
651
|
| GetSubscriptionTargetCommandOutput
|
|
652
|
+
| GetTimeSeriesDataPointCommandOutput
|
|
631
653
|
| GetUserProfileCommandOutput
|
|
632
654
|
| ListAssetRevisionsCommandOutput
|
|
633
655
|
| ListDataSourceRunActivitiesCommandOutput
|
|
@@ -647,6 +669,8 @@ export type ServiceOutputTypes =
|
|
|
647
669
|
| ListSubscriptionTargetsCommandOutput
|
|
648
670
|
| ListSubscriptionsCommandOutput
|
|
649
671
|
| ListTagsForResourceCommandOutput
|
|
672
|
+
| ListTimeSeriesDataPointsCommandOutput
|
|
673
|
+
| PostTimeSeriesDataPointsCommandOutput
|
|
650
674
|
| PutEnvironmentBlueprintConfigurationCommandOutput
|
|
651
675
|
| RejectPredictionsCommandOutput
|
|
652
676
|
| RejectSubscriptionRequestCommandOutput
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteTimeSeriesDataPointsInput,
|
|
10
|
+
DeleteTimeSeriesDataPointsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DeleteTimeSeriesDataPointsCommandInput
|
|
14
|
+
extends DeleteTimeSeriesDataPointsInput {}
|
|
15
|
+
export interface DeleteTimeSeriesDataPointsCommandOutput
|
|
16
|
+
extends DeleteTimeSeriesDataPointsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteTimeSeriesDataPointsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteTimeSeriesDataPointsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteTimeSeriesDataPointsCommandInput,
|
|
23
|
+
DeleteTimeSeriesDataPointsCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteTimeSeriesDataPointsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteTimeSeriesDataPointsCommandInput,
|
|
32
|
+
DeleteTimeSeriesDataPointsCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteTimeSeriesDataPointsCommand extends DeleteTimeSeriesDataPointsCommand_base {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DataZoneClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
GetMetadataGenerationRunInput,
|
|
10
|
+
GetMetadataGenerationRunOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer, $Command };
|
|
11
13
|
export interface GetMetadataGenerationRunCommandInput
|
|
12
14
|
extends GetMetadataGenerationRunInput {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
GetTimeSeriesDataPointInput,
|
|
10
|
+
GetTimeSeriesDataPointOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface GetTimeSeriesDataPointCommandInput
|
|
14
|
+
extends GetTimeSeriesDataPointInput {}
|
|
15
|
+
export interface GetTimeSeriesDataPointCommandOutput
|
|
16
|
+
extends GetTimeSeriesDataPointOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetTimeSeriesDataPointCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetTimeSeriesDataPointCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetTimeSeriesDataPointCommandInput,
|
|
23
|
+
GetTimeSeriesDataPointCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetTimeSeriesDataPointCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetTimeSeriesDataPointCommandInput,
|
|
32
|
+
GetTimeSeriesDataPointCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetTimeSeriesDataPointCommand extends GetTimeSeriesDataPointCommand_base {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListSubscriptionTargetsInput,
|
|
10
10
|
ListSubscriptionTargetsOutput,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface ListSubscriptionTargetsCommandInput
|
|
14
14
|
extends ListSubscriptionTargetsInput {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
ListTagsForResourceRequest,
|
|
10
10
|
ListTagsForResourceResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer, $Command };
|
|
13
13
|
export interface ListTagsForResourceCommandInput
|
|
14
14
|
extends ListTagsForResourceRequest {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
ListTimeSeriesDataPointsInput,
|
|
10
|
+
ListTimeSeriesDataPointsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListTimeSeriesDataPointsCommandInput
|
|
14
|
+
extends ListTimeSeriesDataPointsInput {}
|
|
15
|
+
export interface ListTimeSeriesDataPointsCommandOutput
|
|
16
|
+
extends ListTimeSeriesDataPointsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListTimeSeriesDataPointsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListTimeSeriesDataPointsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListTimeSeriesDataPointsCommandInput,
|
|
23
|
+
ListTimeSeriesDataPointsCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListTimeSeriesDataPointsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTimeSeriesDataPointsCommandInput,
|
|
32
|
+
ListTimeSeriesDataPointsCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListTimeSeriesDataPointsCommand extends ListTimeSeriesDataPointsCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataZoneClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataZoneClient";
|
|
8
|
+
import {
|
|
9
|
+
PostTimeSeriesDataPointsInput,
|
|
10
|
+
PostTimeSeriesDataPointsOutput,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface PostTimeSeriesDataPointsCommandInput
|
|
14
|
+
extends PostTimeSeriesDataPointsInput {}
|
|
15
|
+
export interface PostTimeSeriesDataPointsCommandOutput
|
|
16
|
+
extends PostTimeSeriesDataPointsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const PostTimeSeriesDataPointsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: PostTimeSeriesDataPointsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
PostTimeSeriesDataPointsCommandInput,
|
|
23
|
+
PostTimeSeriesDataPointsCommandOutput,
|
|
24
|
+
DataZoneClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: PostTimeSeriesDataPointsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
PostTimeSeriesDataPointsCommandInput,
|
|
32
|
+
PostTimeSeriesDataPointsCommandOutput,
|
|
33
|
+
DataZoneClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class PostTimeSeriesDataPointsCommand extends PostTimeSeriesDataPointsCommand_base {}
|
|
@@ -36,6 +36,7 @@ export * from "./DeleteProjectMembershipCommand";
|
|
|
36
36
|
export * from "./DeleteSubscriptionGrantCommand";
|
|
37
37
|
export * from "./DeleteSubscriptionRequestCommand";
|
|
38
38
|
export * from "./DeleteSubscriptionTargetCommand";
|
|
39
|
+
export * from "./DeleteTimeSeriesDataPointsCommand";
|
|
39
40
|
export * from "./GetAssetCommand";
|
|
40
41
|
export * from "./GetAssetTypeCommand";
|
|
41
42
|
export * from "./GetDataSourceCommand";
|
|
@@ -57,6 +58,7 @@ export * from "./GetSubscriptionCommand";
|
|
|
57
58
|
export * from "./GetSubscriptionGrantCommand";
|
|
58
59
|
export * from "./GetSubscriptionRequestDetailsCommand";
|
|
59
60
|
export * from "./GetSubscriptionTargetCommand";
|
|
61
|
+
export * from "./GetTimeSeriesDataPointCommand";
|
|
60
62
|
export * from "./GetUserProfileCommand";
|
|
61
63
|
export * from "./ListAssetRevisionsCommand";
|
|
62
64
|
export * from "./ListDataSourceRunActivitiesCommand";
|
|
@@ -76,6 +78,8 @@ export * from "./ListSubscriptionRequestsCommand";
|
|
|
76
78
|
export * from "./ListSubscriptionTargetsCommand";
|
|
77
79
|
export * from "./ListSubscriptionsCommand";
|
|
78
80
|
export * from "./ListTagsForResourceCommand";
|
|
81
|
+
export * from "./ListTimeSeriesDataPointsCommand";
|
|
82
|
+
export * from "./PostTimeSeriesDataPointsCommand";
|
|
79
83
|
export * from "./PutEnvironmentBlueprintConfigurationCommand";
|
|
80
84
|
export * from "./RejectPredictionsCommand";
|
|
81
85
|
export * from "./RejectSubscriptionRequestCommand";
|
|
@@ -204,6 +204,14 @@ export interface FormOutput {
|
|
|
204
204
|
typeRevision?: string;
|
|
205
205
|
content?: string;
|
|
206
206
|
}
|
|
207
|
+
export interface TimeSeriesDataPointSummaryFormOutput {
|
|
208
|
+
formName: string | undefined;
|
|
209
|
+
typeIdentifier: string | undefined;
|
|
210
|
+
typeRevision?: string;
|
|
211
|
+
timestamp: Date | undefined;
|
|
212
|
+
contentSummary?: string;
|
|
213
|
+
id?: string;
|
|
214
|
+
}
|
|
207
215
|
export interface CreateAssetOutput {
|
|
208
216
|
id: string | undefined;
|
|
209
217
|
name: string | undefined;
|
|
@@ -222,6 +230,7 @@ export interface CreateAssetOutput {
|
|
|
222
230
|
listing?: AssetListingDetails;
|
|
223
231
|
formsOutput: FormOutput[] | undefined;
|
|
224
232
|
readOnlyFormsOutput?: FormOutput[];
|
|
233
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
225
234
|
predictionConfiguration?: PredictionConfiguration;
|
|
226
235
|
}
|
|
227
236
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -260,6 +269,7 @@ export interface CreateAssetRevisionOutput {
|
|
|
260
269
|
listing?: AssetListingDetails;
|
|
261
270
|
formsOutput: FormOutput[] | undefined;
|
|
262
271
|
readOnlyFormsOutput?: FormOutput[];
|
|
272
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
263
273
|
predictionConfiguration?: PredictionConfiguration;
|
|
264
274
|
}
|
|
265
275
|
export interface DeleteAssetInput {
|
|
@@ -290,10 +300,12 @@ export interface GetAssetOutput {
|
|
|
290
300
|
listing?: AssetListingDetails;
|
|
291
301
|
formsOutput: FormOutput[] | undefined;
|
|
292
302
|
readOnlyFormsOutput?: FormOutput[];
|
|
303
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
293
304
|
}
|
|
294
305
|
export interface AssetItemAdditionalAttributes {
|
|
295
306
|
formsOutput?: FormOutput[];
|
|
296
307
|
readOnlyFormsOutput?: FormOutput[];
|
|
308
|
+
latestTimeSeriesDataPointFormsOutput?: TimeSeriesDataPointSummaryFormOutput[];
|
|
297
309
|
}
|
|
298
310
|
export interface AssetItem {
|
|
299
311
|
domainId: string | undefined;
|
|
@@ -317,11 +329,13 @@ export interface AssetListing {
|
|
|
317
329
|
assetType?: string;
|
|
318
330
|
createdAt?: Date;
|
|
319
331
|
forms?: string;
|
|
332
|
+
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[];
|
|
320
333
|
glossaryTerms?: DetailedGlossaryTerm[];
|
|
321
334
|
owningProjectId?: string;
|
|
322
335
|
}
|
|
323
336
|
export interface AssetListingItemAdditionalAttributes {
|
|
324
337
|
forms?: string;
|
|
338
|
+
latestTimeSeriesDataPointForms?: TimeSeriesDataPointSummaryFormOutput[];
|
|
325
339
|
}
|
|
326
340
|
export interface AssetListingItem {
|
|
327
341
|
listingId?: string;
|
|
@@ -493,6 +507,7 @@ export interface RelationalFilterConfiguration {
|
|
|
493
507
|
export interface GlueRunConfigurationInput {
|
|
494
508
|
dataAccessRole?: string;
|
|
495
509
|
relationalFilterConfigurations: RelationalFilterConfiguration[] | undefined;
|
|
510
|
+
autoImportDataQualityResult?: boolean;
|
|
496
511
|
}
|
|
497
512
|
export interface RedshiftCredentialConfiguration {
|
|
498
513
|
secretManagerArn: string | undefined;
|
|
@@ -665,6 +680,7 @@ export interface GlueRunConfigurationOutput {
|
|
|
665
680
|
region?: string;
|
|
666
681
|
dataAccessRole?: string;
|
|
667
682
|
relationalFilterConfigurations: RelationalFilterConfiguration[] | undefined;
|
|
683
|
+
autoImportDataQualityResult?: boolean;
|
|
668
684
|
}
|
|
669
685
|
export interface RedshiftRunConfigurationOutput {
|
|
670
686
|
accountId?: string;
|
|
@@ -1661,6 +1677,20 @@ export interface DeleteSubscriptionTargetInput {
|
|
|
1661
1677
|
environmentIdentifier: string | undefined;
|
|
1662
1678
|
identifier: string | undefined;
|
|
1663
1679
|
}
|
|
1680
|
+
export declare const TimeSeriesEntityType: {
|
|
1681
|
+
readonly ASSET: "ASSET";
|
|
1682
|
+
readonly LISTING: "LISTING";
|
|
1683
|
+
};
|
|
1684
|
+
export type TimeSeriesEntityType =
|
|
1685
|
+
(typeof TimeSeriesEntityType)[keyof typeof TimeSeriesEntityType];
|
|
1686
|
+
export interface DeleteTimeSeriesDataPointsInput {
|
|
1687
|
+
domainIdentifier: string | undefined;
|
|
1688
|
+
entityIdentifier: string | undefined;
|
|
1689
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
1690
|
+
formName: string | undefined;
|
|
1691
|
+
clientToken?: string;
|
|
1692
|
+
}
|
|
1693
|
+
export interface DeleteTimeSeriesDataPointsOutput {}
|
|
1664
1694
|
export interface DeleteDomainInput {
|
|
1665
1695
|
identifier: string | undefined;
|
|
1666
1696
|
clientToken?: string;
|
|
@@ -1974,6 +2004,28 @@ export interface GetSubscriptionTargetOutput {
|
|
|
1974
2004
|
subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
|
|
1975
2005
|
provider: string | undefined;
|
|
1976
2006
|
}
|
|
2007
|
+
export interface GetTimeSeriesDataPointInput {
|
|
2008
|
+
domainIdentifier: string | undefined;
|
|
2009
|
+
entityIdentifier: string | undefined;
|
|
2010
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
2011
|
+
identifier: string | undefined;
|
|
2012
|
+
formName: string | undefined;
|
|
2013
|
+
}
|
|
2014
|
+
export interface TimeSeriesDataPointFormOutput {
|
|
2015
|
+
formName: string | undefined;
|
|
2016
|
+
typeIdentifier: string | undefined;
|
|
2017
|
+
typeRevision?: string;
|
|
2018
|
+
timestamp: Date | undefined;
|
|
2019
|
+
content?: string;
|
|
2020
|
+
id?: string;
|
|
2021
|
+
}
|
|
2022
|
+
export interface GetTimeSeriesDataPointOutput {
|
|
2023
|
+
domainId?: string;
|
|
2024
|
+
entityId?: string;
|
|
2025
|
+
entityType?: TimeSeriesEntityType;
|
|
2026
|
+
formName?: string;
|
|
2027
|
+
form?: TimeSeriesDataPointFormOutput;
|
|
2028
|
+
}
|
|
1977
2029
|
export interface GetUserProfileInput {
|
|
1978
2030
|
domainIdentifier: string | undefined;
|
|
1979
2031
|
userIdentifier: string | undefined;
|
|
@@ -2442,54 +2494,6 @@ export interface ListSubscriptionsOutput {
|
|
|
2442
2494
|
items: SubscriptionSummary[] | undefined;
|
|
2443
2495
|
nextToken?: string;
|
|
2444
2496
|
}
|
|
2445
|
-
export interface ListSubscriptionTargetsInput {
|
|
2446
|
-
domainIdentifier: string | undefined;
|
|
2447
|
-
environmentIdentifier: string | undefined;
|
|
2448
|
-
sortBy?: SortKey;
|
|
2449
|
-
sortOrder?: SortOrder;
|
|
2450
|
-
maxResults?: number;
|
|
2451
|
-
nextToken?: string;
|
|
2452
|
-
}
|
|
2453
|
-
export interface SubscriptionTargetSummary {
|
|
2454
|
-
id: string | undefined;
|
|
2455
|
-
authorizedPrincipals: string[] | undefined;
|
|
2456
|
-
domainId: string | undefined;
|
|
2457
|
-
projectId: string | undefined;
|
|
2458
|
-
environmentId: string | undefined;
|
|
2459
|
-
name: string | undefined;
|
|
2460
|
-
type: string | undefined;
|
|
2461
|
-
createdBy: string | undefined;
|
|
2462
|
-
updatedBy?: string;
|
|
2463
|
-
createdAt: Date | undefined;
|
|
2464
|
-
updatedAt?: Date;
|
|
2465
|
-
manageAccessRole: string | undefined;
|
|
2466
|
-
applicableAssetTypes: string[] | undefined;
|
|
2467
|
-
subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
|
|
2468
|
-
provider: string | undefined;
|
|
2469
|
-
}
|
|
2470
|
-
export interface ListSubscriptionTargetsOutput {
|
|
2471
|
-
items: SubscriptionTargetSummary[] | undefined;
|
|
2472
|
-
nextToken?: string;
|
|
2473
|
-
}
|
|
2474
|
-
export interface ListTagsForResourceRequest {
|
|
2475
|
-
resourceArn: string | undefined;
|
|
2476
|
-
}
|
|
2477
|
-
export interface ListTagsForResourceResponse {
|
|
2478
|
-
tags?: Record<string, string>;
|
|
2479
|
-
}
|
|
2480
|
-
export interface GetMetadataGenerationRunInput {
|
|
2481
|
-
domainIdentifier: string | undefined;
|
|
2482
|
-
identifier: string | undefined;
|
|
2483
|
-
}
|
|
2484
|
-
export declare const MetadataGenerationRunStatus: {
|
|
2485
|
-
readonly CANCELED: "CANCELED";
|
|
2486
|
-
readonly FAILED: "FAILED";
|
|
2487
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
2488
|
-
readonly SUBMITTED: "SUBMITTED";
|
|
2489
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
2490
|
-
};
|
|
2491
|
-
export type MetadataGenerationRunStatus =
|
|
2492
|
-
(typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
2493
2497
|
export declare const AcceptChoiceFilterSensitiveLog: (obj: AcceptChoice) => any;
|
|
2494
2498
|
export declare const AcceptPredictionsInputFilterSensitiveLog: (
|
|
2495
2499
|
obj: AcceptPredictionsInput
|
|
@@ -2768,9 +2772,3 @@ export declare const SubscriptionSummaryFilterSensitiveLog: (
|
|
|
2768
2772
|
export declare const ListSubscriptionsOutputFilterSensitiveLog: (
|
|
2769
2773
|
obj: ListSubscriptionsOutput
|
|
2770
2774
|
) => any;
|
|
2771
|
-
export declare const SubscriptionTargetSummaryFilterSensitiveLog: (
|
|
2772
|
-
obj: SubscriptionTargetSummary
|
|
2773
|
-
) => any;
|
|
2774
|
-
export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (
|
|
2775
|
-
obj: ListSubscriptionTargetsOutput
|
|
2776
|
-
) => any;
|
|
@@ -16,12 +16,12 @@ import {
|
|
|
16
16
|
GrantedEntity,
|
|
17
17
|
GroupProfileStatus,
|
|
18
18
|
Import,
|
|
19
|
-
MetadataGenerationRunStatus,
|
|
20
19
|
Model,
|
|
21
20
|
ProjectDeletionError,
|
|
22
21
|
ProjectStatus,
|
|
23
22
|
ProvisioningProperties,
|
|
24
23
|
Resource,
|
|
24
|
+
SortKey,
|
|
25
25
|
SortOrder,
|
|
26
26
|
SubscribedAsset,
|
|
27
27
|
SubscribedListing,
|
|
@@ -32,10 +32,75 @@ import {
|
|
|
32
32
|
SubscriptionStatus,
|
|
33
33
|
SubscriptionTargetForm,
|
|
34
34
|
TermRelations,
|
|
35
|
+
TimeSeriesDataPointFormOutput,
|
|
36
|
+
TimeSeriesDataPointSummaryFormOutput,
|
|
37
|
+
TimeSeriesEntityType,
|
|
35
38
|
UserProfileDetails,
|
|
36
39
|
UserProfileStatus,
|
|
37
40
|
UserProfileType,
|
|
38
41
|
} from "./models_0";
|
|
42
|
+
export interface ListSubscriptionTargetsInput {
|
|
43
|
+
domainIdentifier: string | undefined;
|
|
44
|
+
environmentIdentifier: string | undefined;
|
|
45
|
+
sortBy?: SortKey;
|
|
46
|
+
sortOrder?: SortOrder;
|
|
47
|
+
maxResults?: number;
|
|
48
|
+
nextToken?: string;
|
|
49
|
+
}
|
|
50
|
+
export interface SubscriptionTargetSummary {
|
|
51
|
+
id: string | undefined;
|
|
52
|
+
authorizedPrincipals: string[] | undefined;
|
|
53
|
+
domainId: string | undefined;
|
|
54
|
+
projectId: string | undefined;
|
|
55
|
+
environmentId: string | undefined;
|
|
56
|
+
name: string | undefined;
|
|
57
|
+
type: string | undefined;
|
|
58
|
+
createdBy: string | undefined;
|
|
59
|
+
updatedBy?: string;
|
|
60
|
+
createdAt: Date | undefined;
|
|
61
|
+
updatedAt?: Date;
|
|
62
|
+
manageAccessRole: string | undefined;
|
|
63
|
+
applicableAssetTypes: string[] | undefined;
|
|
64
|
+
subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
|
|
65
|
+
provider: string | undefined;
|
|
66
|
+
}
|
|
67
|
+
export interface ListSubscriptionTargetsOutput {
|
|
68
|
+
items: SubscriptionTargetSummary[] | undefined;
|
|
69
|
+
nextToken?: string;
|
|
70
|
+
}
|
|
71
|
+
export interface ListTagsForResourceRequest {
|
|
72
|
+
resourceArn: string | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface ListTagsForResourceResponse {
|
|
75
|
+
tags?: Record<string, string>;
|
|
76
|
+
}
|
|
77
|
+
export interface ListTimeSeriesDataPointsInput {
|
|
78
|
+
domainIdentifier: string | undefined;
|
|
79
|
+
entityIdentifier: string | undefined;
|
|
80
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
81
|
+
formName: string | undefined;
|
|
82
|
+
startedAt?: Date;
|
|
83
|
+
endedAt?: Date;
|
|
84
|
+
nextToken?: string;
|
|
85
|
+
maxResults?: number;
|
|
86
|
+
}
|
|
87
|
+
export interface ListTimeSeriesDataPointsOutput {
|
|
88
|
+
items?: TimeSeriesDataPointSummaryFormOutput[];
|
|
89
|
+
nextToken?: string;
|
|
90
|
+
}
|
|
91
|
+
export interface GetMetadataGenerationRunInput {
|
|
92
|
+
domainIdentifier: string | undefined;
|
|
93
|
+
identifier: string | undefined;
|
|
94
|
+
}
|
|
95
|
+
export declare const MetadataGenerationRunStatus: {
|
|
96
|
+
readonly CANCELED: "CANCELED";
|
|
97
|
+
readonly FAILED: "FAILED";
|
|
98
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
99
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
100
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
101
|
+
};
|
|
102
|
+
export type MetadataGenerationRunStatus =
|
|
103
|
+
(typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
|
|
39
104
|
export declare const MetadataGenerationTargetType: {
|
|
40
105
|
readonly ASSET: "ASSET";
|
|
41
106
|
};
|
|
@@ -98,6 +163,26 @@ export interface StartMetadataGenerationRunOutput {
|
|
|
98
163
|
createdBy?: string;
|
|
99
164
|
owningProjectId?: string;
|
|
100
165
|
}
|
|
166
|
+
export interface TimeSeriesDataPointFormInput {
|
|
167
|
+
formName: string | undefined;
|
|
168
|
+
typeIdentifier: string | undefined;
|
|
169
|
+
typeRevision?: string;
|
|
170
|
+
timestamp: Date | undefined;
|
|
171
|
+
content?: string;
|
|
172
|
+
}
|
|
173
|
+
export interface PostTimeSeriesDataPointsInput {
|
|
174
|
+
domainIdentifier: string | undefined;
|
|
175
|
+
entityIdentifier: string | undefined;
|
|
176
|
+
entityType: TimeSeriesEntityType | undefined;
|
|
177
|
+
forms: TimeSeriesDataPointFormInput[] | undefined;
|
|
178
|
+
clientToken?: string;
|
|
179
|
+
}
|
|
180
|
+
export interface PostTimeSeriesDataPointsOutput {
|
|
181
|
+
domainId?: string;
|
|
182
|
+
entityId?: string;
|
|
183
|
+
entityType?: TimeSeriesEntityType;
|
|
184
|
+
forms?: TimeSeriesDataPointFormOutput[];
|
|
185
|
+
}
|
|
101
186
|
export interface RejectChoice {
|
|
102
187
|
predictionTarget: string | undefined;
|
|
103
188
|
predictionChoices?: number[];
|
|
@@ -164,6 +249,7 @@ export interface RevokeSubscriptionOutput {
|
|
|
164
249
|
}
|
|
165
250
|
export declare const SearchOutputAdditionalAttribute: {
|
|
166
251
|
readonly FORMS: "FORMS";
|
|
252
|
+
readonly TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS";
|
|
167
253
|
};
|
|
168
254
|
export type SearchOutputAdditionalAttribute =
|
|
169
255
|
(typeof SearchOutputAdditionalAttribute)[keyof typeof SearchOutputAdditionalAttribute];
|
|
@@ -636,6 +722,12 @@ export interface SearchTypesInput {
|
|
|
636
722
|
sort?: SearchSort;
|
|
637
723
|
managed: boolean | undefined;
|
|
638
724
|
}
|
|
725
|
+
export declare const SubscriptionTargetSummaryFilterSensitiveLog: (
|
|
726
|
+
obj: SubscriptionTargetSummary
|
|
727
|
+
) => any;
|
|
728
|
+
export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (
|
|
729
|
+
obj: ListSubscriptionTargetsOutput
|
|
730
|
+
) => any;
|
|
639
731
|
export declare const RejectSubscriptionRequestInputFilterSensitiveLog: (
|
|
640
732
|
obj: RejectSubscriptionRequestInput
|
|
641
733
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTimeSeriesDataPointsCommandInput,
|
|
4
|
+
ListTimeSeriesDataPointsCommandOutput,
|
|
5
|
+
} from "../commands/ListTimeSeriesDataPointsCommand";
|
|
6
|
+
import { DataZonePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTimeSeriesDataPoints: (
|
|
8
|
+
config: DataZonePaginationConfiguration,
|
|
9
|
+
input: ListTimeSeriesDataPointsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTimeSeriesDataPointsCommandOutput>;
|
|
@@ -16,6 +16,7 @@ export * from "./ListSubscriptionGrantsPaginator";
|
|
|
16
16
|
export * from "./ListSubscriptionRequestsPaginator";
|
|
17
17
|
export * from "./ListSubscriptionTargetsPaginator";
|
|
18
18
|
export * from "./ListSubscriptionsPaginator";
|
|
19
|
+
export * from "./ListTimeSeriesDataPointsPaginator";
|
|
19
20
|
export * from "./SearchGroupProfilesPaginator";
|
|
20
21
|
export * from "./SearchListingsPaginator";
|
|
21
22
|
export * from "./SearchPaginator";
|