@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.
Files changed (55) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +307 -21
  3. package/dist-es/DataZone.js +8 -0
  4. package/dist-es/commands/DeleteTimeSeriesDataPointsCommand.js +24 -0
  5. package/dist-es/commands/GetTimeSeriesDataPointCommand.js +24 -0
  6. package/dist-es/commands/ListSubscriptionTargetsCommand.js +1 -1
  7. package/dist-es/commands/ListTimeSeriesDataPointsCommand.js +24 -0
  8. package/dist-es/commands/PostTimeSeriesDataPointsCommand.js +24 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/models_0.js +4 -15
  11. package/dist-es/models/models_1.js +16 -0
  12. package/dist-es/pagination/ListTimeSeriesDataPointsPaginator.js +4 -0
  13. package/dist-es/pagination/index.js +1 -0
  14. package/dist-es/protocols/Aws_restJson1.js +199 -2
  15. package/dist-types/DataZone.d.ts +28 -0
  16. package/dist-types/DataZoneClient.d.ts +6 -2
  17. package/dist-types/commands/CreateAssetCommand.d.ts +10 -0
  18. package/dist-types/commands/CreateAssetRevisionCommand.d.ts +10 -0
  19. package/dist-types/commands/CreateDataSourceCommand.d.ts +2 -0
  20. package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -0
  21. package/dist-types/commands/DeleteTimeSeriesDataPointsCommand.d.ts +79 -0
  22. package/dist-types/commands/GetAssetCommand.d.ts +10 -0
  23. package/dist-types/commands/GetDataSourceCommand.d.ts +1 -0
  24. package/dist-types/commands/GetListingCommand.d.ts +10 -0
  25. package/dist-types/commands/GetMetadataGenerationRunCommand.d.ts +1 -2
  26. package/dist-types/commands/GetTimeSeriesDataPointCommand.d.ts +92 -0
  27. package/dist-types/commands/ListSubscriptionTargetsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  29. package/dist-types/commands/ListTimeSeriesDataPointsCommand.d.ts +94 -0
  30. package/dist-types/commands/PostTimeSeriesDataPointsCommand.d.ts +107 -0
  31. package/dist-types/commands/SearchCommand.d.ts +11 -1
  32. package/dist-types/commands/SearchListingsCommand.d.ts +11 -1
  33. package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -0
  34. package/dist-types/commands/index.d.ts +4 -0
  35. package/dist-types/models/models_0.d.ts +228 -208
  36. package/dist-types/models/models_1.d.ts +371 -1
  37. package/dist-types/pagination/ListTimeSeriesDataPointsPaginator.d.ts +7 -0
  38. package/dist-types/pagination/index.d.ts +1 -0
  39. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  40. package/dist-types/ts3.4/DataZone.d.ts +68 -0
  41. package/dist-types/ts3.4/DataZoneClient.d.ts +24 -0
  42. package/dist-types/ts3.4/commands/DeleteTimeSeriesDataPointsCommand.d.ts +39 -0
  43. package/dist-types/ts3.4/commands/GetMetadataGenerationRunCommand.d.ts +4 -2
  44. package/dist-types/ts3.4/commands/GetTimeSeriesDataPointCommand.d.ts +39 -0
  45. package/dist-types/ts3.4/commands/ListSubscriptionTargetsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/ListTimeSeriesDataPointsCommand.d.ts +39 -0
  48. package/dist-types/ts3.4/commands/PostTimeSeriesDataPointsCommand.d.ts +39 -0
  49. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +52 -54
  51. package/dist-types/ts3.4/models/models_1.d.ts +93 -1
  52. package/dist-types/ts3.4/pagination/ListTimeSeriesDataPointsPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  55. package/package.json +1 -1
@@ -1,4 +1,276 @@
1
- import { AssetItem, AssetListingItem, AssetTypeItem, ConfigurableEnvironmentAction, CustomParameter, DataProductSummary, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Import, MetadataGenerationRunStatus, Model, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, SortOrder, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, SubscriptionTargetForm, TermRelations, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_0";
1
+ import { AssetItem, AssetListingItem, AssetTypeItem, ConfigurableEnvironmentAction, CustomParameter, DataProductSummary, Deployment, DeploymentProperties, EnvironmentParameter, EnvironmentStatus, FailureCause, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, Import, Model, ProjectDeletionError, ProjectStatus, ProvisioningProperties, Resource, SortKey, SortOrder, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, SubscriptionTargetForm, TermRelations, TimeSeriesDataPointFormOutput, TimeSeriesDataPointSummaryFormOutput, TimeSeriesEntityType, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_0";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ListSubscriptionTargetsInput {
6
+ /**
7
+ * <p>The identifier of the Amazon DataZone domain where you want to list subscription
8
+ * targets.</p>
9
+ * @public
10
+ */
11
+ domainIdentifier: string | undefined;
12
+ /**
13
+ * <p>The identifier of the environment where you want to list subscription targets.</p>
14
+ * @public
15
+ */
16
+ environmentIdentifier: string | undefined;
17
+ /**
18
+ * <p>Specifies the way in which the results of this action are to be sorted.</p>
19
+ * @public
20
+ */
21
+ sortBy?: SortKey;
22
+ /**
23
+ * <p>Specifies the sort order for the results of this action.</p>
24
+ * @public
25
+ */
26
+ sortOrder?: SortOrder;
27
+ /**
28
+ * <p>The maximum number of subscription targets to return in a single call to
29
+ * <code>ListSubscriptionTargets</code>. When the number of subscription targets to be
30
+ * listed is greater than the value of <code>MaxResults</code>, the response contains a
31
+ * <code>NextToken</code> value that you can use in a subsequent call to
32
+ * <code>ListSubscriptionTargets</code> to list the next set of subscription targets.
33
+ * </p>
34
+ * @public
35
+ */
36
+ maxResults?: number;
37
+ /**
38
+ * <p>When the number of subscription targets is greater than the default value for the
39
+ * <code>MaxResults</code> parameter, or if you explicitly specify a value for
40
+ * <code>MaxResults</code> that is less than the number of subscription targets, the
41
+ * response includes a pagination token named <code>NextToken</code>. You can specify this
42
+ * <code>NextToken</code> value in a subsequent call to
43
+ * <code>ListSubscriptionTargets</code> to list the next set of subscription
44
+ * targets.</p>
45
+ * @public
46
+ */
47
+ nextToken?: string;
48
+ }
49
+ /**
50
+ * <p>The details of the subscription target.</p>
51
+ * @public
52
+ */
53
+ export interface SubscriptionTargetSummary {
54
+ /**
55
+ * <p>The identifier of the subscription target.</p>
56
+ * @public
57
+ */
58
+ id: string | undefined;
59
+ /**
60
+ * <p>The authorized principals included in the subscription target.</p>
61
+ * @public
62
+ */
63
+ authorizedPrincipals: string[] | undefined;
64
+ /**
65
+ * <p>The identifier of the Amazon DataZone domain in which the subscription target exists.</p>
66
+ * @public
67
+ */
68
+ domainId: string | undefined;
69
+ /**
70
+ * <p>The identifier of the project specified in the subscription target.</p>
71
+ * @public
72
+ */
73
+ projectId: string | undefined;
74
+ /**
75
+ * <p>The identifier of the environment of the subscription target.</p>
76
+ * @public
77
+ */
78
+ environmentId: string | undefined;
79
+ /**
80
+ * <p>The name of the subscription target.</p>
81
+ * @public
82
+ */
83
+ name: string | undefined;
84
+ /**
85
+ * <p>The type of the subscription target.</p>
86
+ * @public
87
+ */
88
+ type: string | undefined;
89
+ /**
90
+ * <p>The Amazon DataZone user who created the subscription target.</p>
91
+ * @public
92
+ */
93
+ createdBy: string | undefined;
94
+ /**
95
+ * <p>The Amazon DataZone user who updated the subscription target.</p>
96
+ * @public
97
+ */
98
+ updatedBy?: string;
99
+ /**
100
+ * <p>The timestamp of when the subscription target was created.</p>
101
+ * @public
102
+ */
103
+ createdAt: Date | undefined;
104
+ /**
105
+ * <p>The timestamp of when the subscription target was updated.</p>
106
+ * @public
107
+ */
108
+ updatedAt?: Date;
109
+ /**
110
+ * <p>The manage access role specified in the subscription target.</p>
111
+ * @public
112
+ */
113
+ manageAccessRole: string | undefined;
114
+ /**
115
+ * <p>The asset types included in the subscription target.</p>
116
+ * @public
117
+ */
118
+ applicableAssetTypes: string[] | undefined;
119
+ /**
120
+ * <p>The configuration of the subscription target.</p>
121
+ * @public
122
+ */
123
+ subscriptionTargetConfig: SubscriptionTargetForm[] | undefined;
124
+ /**
125
+ * <p>The provider of the subscription target.</p>
126
+ * @public
127
+ */
128
+ provider: string | undefined;
129
+ }
130
+ /**
131
+ * @public
132
+ */
133
+ export interface ListSubscriptionTargetsOutput {
134
+ /**
135
+ * <p>The results of the <code>ListSubscriptionTargets</code> action.</p>
136
+ * @public
137
+ */
138
+ items: SubscriptionTargetSummary[] | undefined;
139
+ /**
140
+ * <p>When the number of subscription targets is greater than the default value for the
141
+ * <code>MaxResults</code> parameter, or if you explicitly specify a value for
142
+ * <code>MaxResults</code> that is less than the number of subscription targets, the
143
+ * response includes a pagination token named <code>NextToken</code>. You can specify this
144
+ * <code>NextToken</code> value in a subsequent call to
145
+ * <code>ListSubscriptionTargets</code> to list the next set of subscription
146
+ * targets.</p>
147
+ * @public
148
+ */
149
+ nextToken?: string;
150
+ }
151
+ /**
152
+ * @public
153
+ */
154
+ export interface ListTagsForResourceRequest {
155
+ /**
156
+ * <p>The ARN of the resource whose tags you want to list.</p>
157
+ * @public
158
+ */
159
+ resourceArn: string | undefined;
160
+ }
161
+ /**
162
+ * @public
163
+ */
164
+ export interface ListTagsForResourceResponse {
165
+ /**
166
+ * <p>The tags of the specified resource.</p>
167
+ * @public
168
+ */
169
+ tags?: Record<string, string>;
170
+ }
171
+ /**
172
+ * @public
173
+ */
174
+ export interface ListTimeSeriesDataPointsInput {
175
+ /**
176
+ * <p>The ID of the Amazon DataZone domain that houses the assets for which you want to list
177
+ * time series data points.</p>
178
+ * @public
179
+ */
180
+ domainIdentifier: string | undefined;
181
+ /**
182
+ * <p>The ID of the asset for which you want to list data points.</p>
183
+ * @public
184
+ */
185
+ entityIdentifier: string | undefined;
186
+ /**
187
+ * <p>The type of the asset for which you want to list data points.</p>
188
+ * @public
189
+ */
190
+ entityType: TimeSeriesEntityType | undefined;
191
+ /**
192
+ * <p>The name of the time series data points form.</p>
193
+ * @public
194
+ */
195
+ formName: string | undefined;
196
+ /**
197
+ * <p>The timestamp at which the data points that you want to list started.</p>
198
+ * @public
199
+ */
200
+ startedAt?: Date;
201
+ /**
202
+ * <p>The timestamp at which the data points that you wanted to list ended.</p>
203
+ * @public
204
+ */
205
+ endedAt?: Date;
206
+ /**
207
+ * <p>When the number of data points is greater than the default value for the MaxResults
208
+ * parameter, or if you explicitly specify a value for MaxResults that is less than the number
209
+ * of data points, the response includes a pagination token named NextToken. You can specify
210
+ * this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set
211
+ * of data points.</p>
212
+ * @public
213
+ */
214
+ nextToken?: string;
215
+ /**
216
+ * <p>The maximum number of data points to return in a single call to
217
+ * ListTimeSeriesDataPoints. When the number of data points to be listed is greater than the
218
+ * value of MaxResults, the response contains a NextToken value that you can use in a
219
+ * subsequent call to ListTimeSeriesDataPoints to list the next set of data points.</p>
220
+ * @public
221
+ */
222
+ maxResults?: number;
223
+ }
224
+ /**
225
+ * @public
226
+ */
227
+ export interface ListTimeSeriesDataPointsOutput {
228
+ /**
229
+ * <p>The results of the ListTimeSeriesDataPoints action. </p>
230
+ * @public
231
+ */
232
+ items?: TimeSeriesDataPointSummaryFormOutput[];
233
+ /**
234
+ * <p>When the number of data points is greater than the default value for the MaxResults
235
+ * parameter, or if you explicitly specify a value for MaxResults that is less than the number
236
+ * of data points, the response includes a pagination token named NextToken. You can specify
237
+ * this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set
238
+ * of data points.</p>
239
+ * @public
240
+ */
241
+ nextToken?: string;
242
+ }
243
+ /**
244
+ * @public
245
+ */
246
+ export interface GetMetadataGenerationRunInput {
247
+ /**
248
+ * <p>The ID of the Amazon DataZone domain the metadata generation run of which you want to
249
+ * get.</p>
250
+ * @public
251
+ */
252
+ domainIdentifier: string | undefined;
253
+ /**
254
+ * <p>The identifier of the metadata generation run.</p>
255
+ * @public
256
+ */
257
+ identifier: string | undefined;
258
+ }
259
+ /**
260
+ * @public
261
+ * @enum
262
+ */
263
+ export declare const MetadataGenerationRunStatus: {
264
+ readonly CANCELED: "CANCELED";
265
+ readonly FAILED: "FAILED";
266
+ readonly IN_PROGRESS: "IN_PROGRESS";
267
+ readonly SUBMITTED: "SUBMITTED";
268
+ readonly SUCCEEDED: "SUCCEEDED";
269
+ };
270
+ /**
271
+ * @public
272
+ */
273
+ export type MetadataGenerationRunStatus = (typeof MetadataGenerationRunStatus)[keyof typeof MetadataGenerationRunStatus];
2
274
  /**
3
275
  * @public
4
276
  * @enum
@@ -270,6 +542,95 @@ export interface StartMetadataGenerationRunOutput {
270
542
  */
271
543
  owningProjectId?: string;
272
544
  }
545
+ /**
546
+ * <p>The time series data points form.</p>
547
+ * @public
548
+ */
549
+ export interface TimeSeriesDataPointFormInput {
550
+ /**
551
+ * <p>The name of the time series data points form.</p>
552
+ * @public
553
+ */
554
+ formName: string | undefined;
555
+ /**
556
+ * <p>The ID of the type of the time series data points form.</p>
557
+ * @public
558
+ */
559
+ typeIdentifier: string | undefined;
560
+ /**
561
+ * <p>The revision type of the time series data points form.</p>
562
+ * @public
563
+ */
564
+ typeRevision?: string;
565
+ /**
566
+ * <p>The timestamp of the time series data points form.</p>
567
+ * @public
568
+ */
569
+ timestamp: Date | undefined;
570
+ /**
571
+ * <p>The content of the time series data points form.</p>
572
+ * @public
573
+ */
574
+ content?: string;
575
+ }
576
+ /**
577
+ * @public
578
+ */
579
+ export interface PostTimeSeriesDataPointsInput {
580
+ /**
581
+ * <p>The ID of the Amazon DataZone domain in which you want to post time series data
582
+ * points.</p>
583
+ * @public
584
+ */
585
+ domainIdentifier: string | undefined;
586
+ /**
587
+ * <p>The ID of the asset for which you want to post time series data points.</p>
588
+ * @public
589
+ */
590
+ entityIdentifier: string | undefined;
591
+ /**
592
+ * <p>The type of the asset for which you want to post data points.</p>
593
+ * @public
594
+ */
595
+ entityType: TimeSeriesEntityType | undefined;
596
+ /**
597
+ * <p>The forms that contain the data points that you want to post.</p>
598
+ * @public
599
+ */
600
+ forms: TimeSeriesDataPointFormInput[] | undefined;
601
+ /**
602
+ * <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the
603
+ * request.</p>
604
+ * @public
605
+ */
606
+ clientToken?: string;
607
+ }
608
+ /**
609
+ * @public
610
+ */
611
+ export interface PostTimeSeriesDataPointsOutput {
612
+ /**
613
+ * <p>The ID of the Amazon DataZone domain in which you want to post time series data
614
+ * points.</p>
615
+ * @public
616
+ */
617
+ domainId?: string;
618
+ /**
619
+ * <p>The ID of the asset for which you want to post time series data points.</p>
620
+ * @public
621
+ */
622
+ entityId?: string;
623
+ /**
624
+ * <p>The type of the asset for which you want to post data points.</p>
625
+ * @public
626
+ */
627
+ entityType?: TimeSeriesEntityType;
628
+ /**
629
+ * <p>The forms that contain the data points that you have posted.</p>
630
+ * @public
631
+ */
632
+ forms?: TimeSeriesDataPointFormOutput[];
633
+ }
273
634
  /**
274
635
  * <p>The details of the automatically generated business metadata that is rejected.</p>
275
636
  * @public
@@ -546,6 +907,7 @@ export interface RevokeSubscriptionOutput {
546
907
  */
547
908
  export declare const SearchOutputAdditionalAttribute: {
548
909
  readonly FORMS: "FORMS";
910
+ readonly TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS";
549
911
  };
550
912
  /**
551
913
  * @public
@@ -2294,6 +2656,14 @@ export interface SearchTypesInput {
2294
2656
  */
2295
2657
  managed: boolean | undefined;
2296
2658
  }
2659
+ /**
2660
+ * @internal
2661
+ */
2662
+ export declare const SubscriptionTargetSummaryFilterSensitiveLog: (obj: SubscriptionTargetSummary) => any;
2663
+ /**
2664
+ * @internal
2665
+ */
2666
+ export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (obj: ListSubscriptionTargetsOutput) => any;
2297
2667
  /**
2298
2668
  * @internal
2299
2669
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTimeSeriesDataPointsCommandInput, ListTimeSeriesDataPointsCommandOutput } from "../commands/ListTimeSeriesDataPointsCommand";
3
+ import { DataZonePaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListTimeSeriesDataPoints: (config: DataZonePaginationConfiguration, input: ListTimeSeriesDataPointsCommandInput, ...rest: any[]) => 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";
@@ -38,6 +38,7 @@ import { DeleteProjectMembershipCommandInput, DeleteProjectMembershipCommandOutp
38
38
  import { DeleteSubscriptionGrantCommandInput, DeleteSubscriptionGrantCommandOutput } from "../commands/DeleteSubscriptionGrantCommand";
39
39
  import { DeleteSubscriptionRequestCommandInput, DeleteSubscriptionRequestCommandOutput } from "../commands/DeleteSubscriptionRequestCommand";
40
40
  import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOutput } from "../commands/DeleteSubscriptionTargetCommand";
41
+ import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "../commands/DeleteTimeSeriesDataPointsCommand";
41
42
  import { GetAssetCommandInput, GetAssetCommandOutput } from "../commands/GetAssetCommand";
42
43
  import { GetAssetTypeCommandInput, GetAssetTypeCommandOutput } from "../commands/GetAssetTypeCommand";
43
44
  import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "../commands/GetDataSourceCommand";
@@ -59,6 +60,7 @@ import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "../co
59
60
  import { GetSubscriptionGrantCommandInput, GetSubscriptionGrantCommandOutput } from "../commands/GetSubscriptionGrantCommand";
60
61
  import { GetSubscriptionRequestDetailsCommandInput, GetSubscriptionRequestDetailsCommandOutput } from "../commands/GetSubscriptionRequestDetailsCommand";
61
62
  import { GetSubscriptionTargetCommandInput, GetSubscriptionTargetCommandOutput } from "../commands/GetSubscriptionTargetCommand";
63
+ import { GetTimeSeriesDataPointCommandInput, GetTimeSeriesDataPointCommandOutput } from "../commands/GetTimeSeriesDataPointCommand";
62
64
  import { GetUserProfileCommandInput, GetUserProfileCommandOutput } from "../commands/GetUserProfileCommand";
63
65
  import { ListAssetRevisionsCommandInput, ListAssetRevisionsCommandOutput } from "../commands/ListAssetRevisionsCommand";
64
66
  import { ListDataSourceRunActivitiesCommandInput, ListDataSourceRunActivitiesCommandOutput } from "../commands/ListDataSourceRunActivitiesCommand";
@@ -78,6 +80,8 @@ import { ListSubscriptionRequestsCommandInput, ListSubscriptionRequestsCommandOu
78
80
  import { ListSubscriptionsCommandInput, ListSubscriptionsCommandOutput } from "../commands/ListSubscriptionsCommand";
79
81
  import { ListSubscriptionTargetsCommandInput, ListSubscriptionTargetsCommandOutput } from "../commands/ListSubscriptionTargetsCommand";
80
82
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
83
+ import { ListTimeSeriesDataPointsCommandInput, ListTimeSeriesDataPointsCommandOutput } from "../commands/ListTimeSeriesDataPointsCommand";
84
+ import { PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOutput } from "../commands/PostTimeSeriesDataPointsCommand";
81
85
  import { PutEnvironmentBlueprintConfigurationCommandInput, PutEnvironmentBlueprintConfigurationCommandOutput } from "../commands/PutEnvironmentBlueprintConfigurationCommand";
82
86
  import { RejectPredictionsCommandInput, RejectPredictionsCommandOutput } from "../commands/RejectPredictionsCommand";
83
87
  import { RejectSubscriptionRequestCommandInput, RejectSubscriptionRequestCommandOutput } from "../commands/RejectSubscriptionRequestCommand";
@@ -255,6 +259,10 @@ export declare const se_DeleteSubscriptionRequestCommand: (input: DeleteSubscrip
255
259
  * serializeAws_restJson1DeleteSubscriptionTargetCommand
256
260
  */
257
261
  export declare const se_DeleteSubscriptionTargetCommand: (input: DeleteSubscriptionTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
262
+ /**
263
+ * serializeAws_restJson1DeleteTimeSeriesDataPointsCommand
264
+ */
265
+ export declare const se_DeleteTimeSeriesDataPointsCommand: (input: DeleteTimeSeriesDataPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
258
266
  /**
259
267
  * serializeAws_restJson1GetAssetCommand
260
268
  */
@@ -339,6 +347,10 @@ export declare const se_GetSubscriptionRequestDetailsCommand: (input: GetSubscri
339
347
  * serializeAws_restJson1GetSubscriptionTargetCommand
340
348
  */
341
349
  export declare const se_GetSubscriptionTargetCommand: (input: GetSubscriptionTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
350
+ /**
351
+ * serializeAws_restJson1GetTimeSeriesDataPointCommand
352
+ */
353
+ export declare const se_GetTimeSeriesDataPointCommand: (input: GetTimeSeriesDataPointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
342
354
  /**
343
355
  * serializeAws_restJson1GetUserProfileCommand
344
356
  */
@@ -415,6 +427,14 @@ export declare const se_ListSubscriptionTargetsCommand: (input: ListSubscription
415
427
  * serializeAws_restJson1ListTagsForResourceCommand
416
428
  */
417
429
  export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
430
+ /**
431
+ * serializeAws_restJson1ListTimeSeriesDataPointsCommand
432
+ */
433
+ export declare const se_ListTimeSeriesDataPointsCommand: (input: ListTimeSeriesDataPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
434
+ /**
435
+ * serializeAws_restJson1PostTimeSeriesDataPointsCommand
436
+ */
437
+ export declare const se_PostTimeSeriesDataPointsCommand: (input: PostTimeSeriesDataPointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
418
438
  /**
419
439
  * serializeAws_restJson1PutEnvironmentBlueprintConfigurationCommand
420
440
  */
@@ -667,6 +687,10 @@ export declare const de_DeleteSubscriptionRequestCommand: (output: __HttpRespons
667
687
  * deserializeAws_restJson1DeleteSubscriptionTargetCommand
668
688
  */
669
689
  export declare const de_DeleteSubscriptionTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSubscriptionTargetCommandOutput>;
690
+ /**
691
+ * deserializeAws_restJson1DeleteTimeSeriesDataPointsCommand
692
+ */
693
+ export declare const de_DeleteTimeSeriesDataPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTimeSeriesDataPointsCommandOutput>;
670
694
  /**
671
695
  * deserializeAws_restJson1GetAssetCommand
672
696
  */
@@ -751,6 +775,10 @@ export declare const de_GetSubscriptionRequestDetailsCommand: (output: __HttpRes
751
775
  * deserializeAws_restJson1GetSubscriptionTargetCommand
752
776
  */
753
777
  export declare const de_GetSubscriptionTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSubscriptionTargetCommandOutput>;
778
+ /**
779
+ * deserializeAws_restJson1GetTimeSeriesDataPointCommand
780
+ */
781
+ export declare const de_GetTimeSeriesDataPointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTimeSeriesDataPointCommandOutput>;
754
782
  /**
755
783
  * deserializeAws_restJson1GetUserProfileCommand
756
784
  */
@@ -827,6 +855,14 @@ export declare const de_ListSubscriptionTargetsCommand: (output: __HttpResponse,
827
855
  * deserializeAws_restJson1ListTagsForResourceCommand
828
856
  */
829
857
  export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
858
+ /**
859
+ * deserializeAws_restJson1ListTimeSeriesDataPointsCommand
860
+ */
861
+ export declare const de_ListTimeSeriesDataPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTimeSeriesDataPointsCommandOutput>;
862
+ /**
863
+ * deserializeAws_restJson1PostTimeSeriesDataPointsCommand
864
+ */
865
+ export declare const de_PostTimeSeriesDataPointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PostTimeSeriesDataPointsCommandOutput>;
830
866
  /**
831
867
  * deserializeAws_restJson1PutEnvironmentBlueprintConfigurationCommand
832
868
  */
@@ -151,6 +151,10 @@ import {
151
151
  DeleteSubscriptionTargetCommandInput,
152
152
  DeleteSubscriptionTargetCommandOutput,
153
153
  } from "./commands/DeleteSubscriptionTargetCommand";
154
+ import {
155
+ DeleteTimeSeriesDataPointsCommandInput,
156
+ DeleteTimeSeriesDataPointsCommandOutput,
157
+ } from "./commands/DeleteTimeSeriesDataPointsCommand";
154
158
  import {
155
159
  GetAssetCommandInput,
156
160
  GetAssetCommandOutput,
@@ -235,6 +239,10 @@ import {
235
239
  GetSubscriptionTargetCommandInput,
236
240
  GetSubscriptionTargetCommandOutput,
237
241
  } from "./commands/GetSubscriptionTargetCommand";
242
+ import {
243
+ GetTimeSeriesDataPointCommandInput,
244
+ GetTimeSeriesDataPointCommandOutput,
245
+ } from "./commands/GetTimeSeriesDataPointCommand";
238
246
  import {
239
247
  GetUserProfileCommandInput,
240
248
  GetUserProfileCommandOutput,
@@ -311,6 +319,14 @@ import {
311
319
  ListTagsForResourceCommandInput,
312
320
  ListTagsForResourceCommandOutput,
313
321
  } from "./commands/ListTagsForResourceCommand";
322
+ import {
323
+ ListTimeSeriesDataPointsCommandInput,
324
+ ListTimeSeriesDataPointsCommandOutput,
325
+ } from "./commands/ListTimeSeriesDataPointsCommand";
326
+ import {
327
+ PostTimeSeriesDataPointsCommandInput,
328
+ PostTimeSeriesDataPointsCommandOutput,
329
+ } from "./commands/PostTimeSeriesDataPointsCommand";
314
330
  import {
315
331
  PutEnvironmentBlueprintConfigurationCommandInput,
316
332
  PutEnvironmentBlueprintConfigurationCommandOutput,
@@ -913,6 +929,19 @@ export interface DataZone {
913
929
  options: __HttpHandlerOptions,
914
930
  cb: (err: any, data?: DeleteSubscriptionTargetCommandOutput) => void
915
931
  ): void;
932
+ deleteTimeSeriesDataPoints(
933
+ args: DeleteTimeSeriesDataPointsCommandInput,
934
+ options?: __HttpHandlerOptions
935
+ ): Promise<DeleteTimeSeriesDataPointsCommandOutput>;
936
+ deleteTimeSeriesDataPoints(
937
+ args: DeleteTimeSeriesDataPointsCommandInput,
938
+ cb: (err: any, data?: DeleteTimeSeriesDataPointsCommandOutput) => void
939
+ ): void;
940
+ deleteTimeSeriesDataPoints(
941
+ args: DeleteTimeSeriesDataPointsCommandInput,
942
+ options: __HttpHandlerOptions,
943
+ cb: (err: any, data?: DeleteTimeSeriesDataPointsCommandOutput) => void
944
+ ): void;
916
945
  getAsset(
917
946
  args: GetAssetCommandInput,
918
947
  options?: __HttpHandlerOptions
@@ -1192,6 +1221,19 @@ export interface DataZone {
1192
1221
  options: __HttpHandlerOptions,
1193
1222
  cb: (err: any, data?: GetSubscriptionTargetCommandOutput) => void
1194
1223
  ): void;
1224
+ getTimeSeriesDataPoint(
1225
+ args: GetTimeSeriesDataPointCommandInput,
1226
+ options?: __HttpHandlerOptions
1227
+ ): Promise<GetTimeSeriesDataPointCommandOutput>;
1228
+ getTimeSeriesDataPoint(
1229
+ args: GetTimeSeriesDataPointCommandInput,
1230
+ cb: (err: any, data?: GetTimeSeriesDataPointCommandOutput) => void
1231
+ ): void;
1232
+ getTimeSeriesDataPoint(
1233
+ args: GetTimeSeriesDataPointCommandInput,
1234
+ options: __HttpHandlerOptions,
1235
+ cb: (err: any, data?: GetTimeSeriesDataPointCommandOutput) => void
1236
+ ): void;
1195
1237
  getUserProfile(
1196
1238
  args: GetUserProfileCommandInput,
1197
1239
  options?: __HttpHandlerOptions
@@ -1446,6 +1488,32 @@ export interface DataZone {
1446
1488
  options: __HttpHandlerOptions,
1447
1489
  cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
1448
1490
  ): void;
1491
+ listTimeSeriesDataPoints(
1492
+ args: ListTimeSeriesDataPointsCommandInput,
1493
+ options?: __HttpHandlerOptions
1494
+ ): Promise<ListTimeSeriesDataPointsCommandOutput>;
1495
+ listTimeSeriesDataPoints(
1496
+ args: ListTimeSeriesDataPointsCommandInput,
1497
+ cb: (err: any, data?: ListTimeSeriesDataPointsCommandOutput) => void
1498
+ ): void;
1499
+ listTimeSeriesDataPoints(
1500
+ args: ListTimeSeriesDataPointsCommandInput,
1501
+ options: __HttpHandlerOptions,
1502
+ cb: (err: any, data?: ListTimeSeriesDataPointsCommandOutput) => void
1503
+ ): void;
1504
+ postTimeSeriesDataPoints(
1505
+ args: PostTimeSeriesDataPointsCommandInput,
1506
+ options?: __HttpHandlerOptions
1507
+ ): Promise<PostTimeSeriesDataPointsCommandOutput>;
1508
+ postTimeSeriesDataPoints(
1509
+ args: PostTimeSeriesDataPointsCommandInput,
1510
+ cb: (err: any, data?: PostTimeSeriesDataPointsCommandOutput) => void
1511
+ ): void;
1512
+ postTimeSeriesDataPoints(
1513
+ args: PostTimeSeriesDataPointsCommandInput,
1514
+ options: __HttpHandlerOptions,
1515
+ cb: (err: any, data?: PostTimeSeriesDataPointsCommandOutput) => void
1516
+ ): void;
1449
1517
  putEnvironmentBlueprintConfiguration(
1450
1518
  args: PutEnvironmentBlueprintConfigurationCommandInput,
1451
1519
  options?: __HttpHandlerOptions