@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.
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 +6 -6
@@ -45,6 +45,7 @@ import { DeleteProjectMembershipCommandInput, DeleteProjectMembershipCommandOutp
45
45
  import { DeleteSubscriptionGrantCommandInput, DeleteSubscriptionGrantCommandOutput } from "./commands/DeleteSubscriptionGrantCommand";
46
46
  import { DeleteSubscriptionRequestCommandInput, DeleteSubscriptionRequestCommandOutput } from "./commands/DeleteSubscriptionRequestCommand";
47
47
  import { DeleteSubscriptionTargetCommandInput, DeleteSubscriptionTargetCommandOutput } from "./commands/DeleteSubscriptionTargetCommand";
48
+ import { DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput } from "./commands/DeleteTimeSeriesDataPointsCommand";
48
49
  import { GetAssetCommandInput, GetAssetCommandOutput } from "./commands/GetAssetCommand";
49
50
  import { GetAssetTypeCommandInput, GetAssetTypeCommandOutput } from "./commands/GetAssetTypeCommand";
50
51
  import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
@@ -66,6 +67,7 @@ import { GetSubscriptionCommandInput, GetSubscriptionCommandOutput } from "./com
66
67
  import { GetSubscriptionGrantCommandInput, GetSubscriptionGrantCommandOutput } from "./commands/GetSubscriptionGrantCommand";
67
68
  import { GetSubscriptionRequestDetailsCommandInput, GetSubscriptionRequestDetailsCommandOutput } from "./commands/GetSubscriptionRequestDetailsCommand";
68
69
  import { GetSubscriptionTargetCommandInput, GetSubscriptionTargetCommandOutput } from "./commands/GetSubscriptionTargetCommand";
70
+ import { GetTimeSeriesDataPointCommandInput, GetTimeSeriesDataPointCommandOutput } from "./commands/GetTimeSeriesDataPointCommand";
69
71
  import { GetUserProfileCommandInput, GetUserProfileCommandOutput } from "./commands/GetUserProfileCommand";
70
72
  import { ListAssetRevisionsCommandInput, ListAssetRevisionsCommandOutput } from "./commands/ListAssetRevisionsCommand";
71
73
  import { ListDataSourceRunActivitiesCommandInput, ListDataSourceRunActivitiesCommandOutput } from "./commands/ListDataSourceRunActivitiesCommand";
@@ -85,6 +87,8 @@ import { ListSubscriptionRequestsCommandInput, ListSubscriptionRequestsCommandOu
85
87
  import { ListSubscriptionsCommandInput, ListSubscriptionsCommandOutput } from "./commands/ListSubscriptionsCommand";
86
88
  import { ListSubscriptionTargetsCommandInput, ListSubscriptionTargetsCommandOutput } from "./commands/ListSubscriptionTargetsCommand";
87
89
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
90
+ import { ListTimeSeriesDataPointsCommandInput, ListTimeSeriesDataPointsCommandOutput } from "./commands/ListTimeSeriesDataPointsCommand";
91
+ import { PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOutput } from "./commands/PostTimeSeriesDataPointsCommand";
88
92
  import { PutEnvironmentBlueprintConfigurationCommandInput, PutEnvironmentBlueprintConfigurationCommandOutput } from "./commands/PutEnvironmentBlueprintConfigurationCommand";
89
93
  import { RejectPredictionsCommandInput, RejectPredictionsCommandOutput } from "./commands/RejectPredictionsCommand";
90
94
  import { RejectSubscriptionRequestCommandInput, RejectSubscriptionRequestCommandOutput } from "./commands/RejectSubscriptionRequestCommand";
@@ -116,11 +120,11 @@ export { __Client };
116
120
  /**
117
121
  * @public
118
122
  */
119
- export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAssetCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAssetCommandInput | DeleteAssetTypeCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | GetAssetCommandInput | GetAssetTypeCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetProjectCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetUserProfileCommandInput | ListAssetRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListMetadataGenerationRunsCommandInput | ListNotificationsCommandInput | ListProjectMembershipsCommandInput | ListProjectsCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
123
+ export type ServiceInputTypes = AcceptPredictionsCommandInput | AcceptSubscriptionRequestCommandInput | CancelMetadataGenerationRunCommandInput | CancelSubscriptionCommandInput | CreateAssetCommandInput | CreateAssetRevisionCommandInput | CreateAssetTypeCommandInput | CreateDataSourceCommandInput | CreateDomainCommandInput | CreateEnvironmentCommandInput | CreateEnvironmentProfileCommandInput | CreateFormTypeCommandInput | CreateGlossaryCommandInput | CreateGlossaryTermCommandInput | CreateGroupProfileCommandInput | CreateListingChangeSetCommandInput | CreateProjectCommandInput | CreateProjectMembershipCommandInput | CreateSubscriptionGrantCommandInput | CreateSubscriptionRequestCommandInput | CreateSubscriptionTargetCommandInput | CreateUserProfileCommandInput | DeleteAssetCommandInput | DeleteAssetTypeCommandInput | DeleteDataSourceCommandInput | DeleteDomainCommandInput | DeleteEnvironmentBlueprintConfigurationCommandInput | DeleteEnvironmentCommandInput | DeleteEnvironmentProfileCommandInput | DeleteFormTypeCommandInput | DeleteGlossaryCommandInput | DeleteGlossaryTermCommandInput | DeleteListingCommandInput | DeleteProjectCommandInput | DeleteProjectMembershipCommandInput | DeleteSubscriptionGrantCommandInput | DeleteSubscriptionRequestCommandInput | DeleteSubscriptionTargetCommandInput | DeleteTimeSeriesDataPointsCommandInput | GetAssetCommandInput | GetAssetTypeCommandInput | GetDataSourceCommandInput | GetDataSourceRunCommandInput | GetDomainCommandInput | GetEnvironmentBlueprintCommandInput | GetEnvironmentBlueprintConfigurationCommandInput | GetEnvironmentCommandInput | GetEnvironmentProfileCommandInput | GetFormTypeCommandInput | GetGlossaryCommandInput | GetGlossaryTermCommandInput | GetGroupProfileCommandInput | GetIamPortalLoginUrlCommandInput | GetListingCommandInput | GetMetadataGenerationRunCommandInput | GetProjectCommandInput | GetSubscriptionCommandInput | GetSubscriptionGrantCommandInput | GetSubscriptionRequestDetailsCommandInput | GetSubscriptionTargetCommandInput | GetTimeSeriesDataPointCommandInput | GetUserProfileCommandInput | ListAssetRevisionsCommandInput | ListDataSourceRunActivitiesCommandInput | ListDataSourceRunsCommandInput | ListDataSourcesCommandInput | ListDomainsCommandInput | ListEnvironmentBlueprintConfigurationsCommandInput | ListEnvironmentBlueprintsCommandInput | ListEnvironmentProfilesCommandInput | ListEnvironmentsCommandInput | ListMetadataGenerationRunsCommandInput | ListNotificationsCommandInput | ListProjectMembershipsCommandInput | ListProjectsCommandInput | ListSubscriptionGrantsCommandInput | ListSubscriptionRequestsCommandInput | ListSubscriptionTargetsCommandInput | ListSubscriptionsCommandInput | ListTagsForResourceCommandInput | ListTimeSeriesDataPointsCommandInput | PostTimeSeriesDataPointsCommandInput | PutEnvironmentBlueprintConfigurationCommandInput | RejectPredictionsCommandInput | RejectSubscriptionRequestCommandInput | RevokeSubscriptionCommandInput | SearchCommandInput | SearchGroupProfilesCommandInput | SearchListingsCommandInput | SearchTypesCommandInput | SearchUserProfilesCommandInput | StartDataSourceRunCommandInput | StartMetadataGenerationRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataSourceCommandInput | UpdateDomainCommandInput | UpdateEnvironmentCommandInput | UpdateEnvironmentProfileCommandInput | UpdateGlossaryCommandInput | UpdateGlossaryTermCommandInput | UpdateGroupProfileCommandInput | UpdateProjectCommandInput | UpdateSubscriptionGrantStatusCommandInput | UpdateSubscriptionRequestCommandInput | UpdateSubscriptionTargetCommandInput | UpdateUserProfileCommandInput;
120
124
  /**
121
125
  * @public
122
126
  */
123
- export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAssetCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAssetCommandOutput | DeleteAssetTypeCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | GetAssetCommandOutput | GetAssetTypeCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetProjectCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetUserProfileCommandOutput | ListAssetRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotificationsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectsCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
127
+ export type ServiceOutputTypes = AcceptPredictionsCommandOutput | AcceptSubscriptionRequestCommandOutput | CancelMetadataGenerationRunCommandOutput | CancelSubscriptionCommandOutput | CreateAssetCommandOutput | CreateAssetRevisionCommandOutput | CreateAssetTypeCommandOutput | CreateDataSourceCommandOutput | CreateDomainCommandOutput | CreateEnvironmentCommandOutput | CreateEnvironmentProfileCommandOutput | CreateFormTypeCommandOutput | CreateGlossaryCommandOutput | CreateGlossaryTermCommandOutput | CreateGroupProfileCommandOutput | CreateListingChangeSetCommandOutput | CreateProjectCommandOutput | CreateProjectMembershipCommandOutput | CreateSubscriptionGrantCommandOutput | CreateSubscriptionRequestCommandOutput | CreateSubscriptionTargetCommandOutput | CreateUserProfileCommandOutput | DeleteAssetCommandOutput | DeleteAssetTypeCommandOutput | DeleteDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteEnvironmentBlueprintConfigurationCommandOutput | DeleteEnvironmentCommandOutput | DeleteEnvironmentProfileCommandOutput | DeleteFormTypeCommandOutput | DeleteGlossaryCommandOutput | DeleteGlossaryTermCommandOutput | DeleteListingCommandOutput | DeleteProjectCommandOutput | DeleteProjectMembershipCommandOutput | DeleteSubscriptionGrantCommandOutput | DeleteSubscriptionRequestCommandOutput | DeleteSubscriptionTargetCommandOutput | DeleteTimeSeriesDataPointsCommandOutput | GetAssetCommandOutput | GetAssetTypeCommandOutput | GetDataSourceCommandOutput | GetDataSourceRunCommandOutput | GetDomainCommandOutput | GetEnvironmentBlueprintCommandOutput | GetEnvironmentBlueprintConfigurationCommandOutput | GetEnvironmentCommandOutput | GetEnvironmentProfileCommandOutput | GetFormTypeCommandOutput | GetGlossaryCommandOutput | GetGlossaryTermCommandOutput | GetGroupProfileCommandOutput | GetIamPortalLoginUrlCommandOutput | GetListingCommandOutput | GetMetadataGenerationRunCommandOutput | GetProjectCommandOutput | GetSubscriptionCommandOutput | GetSubscriptionGrantCommandOutput | GetSubscriptionRequestDetailsCommandOutput | GetSubscriptionTargetCommandOutput | GetTimeSeriesDataPointCommandOutput | GetUserProfileCommandOutput | ListAssetRevisionsCommandOutput | ListDataSourceRunActivitiesCommandOutput | ListDataSourceRunsCommandOutput | ListDataSourcesCommandOutput | ListDomainsCommandOutput | ListEnvironmentBlueprintConfigurationsCommandOutput | ListEnvironmentBlueprintsCommandOutput | ListEnvironmentProfilesCommandOutput | ListEnvironmentsCommandOutput | ListMetadataGenerationRunsCommandOutput | ListNotificationsCommandOutput | ListProjectMembershipsCommandOutput | ListProjectsCommandOutput | ListSubscriptionGrantsCommandOutput | ListSubscriptionRequestsCommandOutput | ListSubscriptionTargetsCommandOutput | ListSubscriptionsCommandOutput | ListTagsForResourceCommandOutput | ListTimeSeriesDataPointsCommandOutput | PostTimeSeriesDataPointsCommandOutput | PutEnvironmentBlueprintConfigurationCommandOutput | RejectPredictionsCommandOutput | RejectSubscriptionRequestCommandOutput | RevokeSubscriptionCommandOutput | SearchCommandOutput | SearchGroupProfilesCommandOutput | SearchListingsCommandOutput | SearchTypesCommandOutput | SearchUserProfilesCommandOutput | StartDataSourceRunCommandOutput | StartMetadataGenerationRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataSourceCommandOutput | UpdateDomainCommandOutput | UpdateEnvironmentCommandOutput | UpdateEnvironmentProfileCommandOutput | UpdateGlossaryCommandOutput | UpdateGlossaryTermCommandOutput | UpdateGroupProfileCommandOutput | UpdateProjectCommandOutput | UpdateSubscriptionGrantStatusCommandOutput | UpdateSubscriptionRequestCommandOutput | UpdateSubscriptionTargetCommandOutput | UpdateUserProfileCommandOutput;
124
128
  /**
125
129
  * @public
126
130
  */
@@ -98,6 +98,16 @@ declare const CreateAssetCommand_base: {
98
98
  * // content: "STRING_VALUE",
99
99
  * // },
100
100
  * // ],
101
+ * // latestTimeSeriesDataPointFormsOutput: [ // TimeSeriesDataPointSummaryFormOutputList
102
+ * // { // TimeSeriesDataPointSummaryFormOutput
103
+ * // formName: "STRING_VALUE", // required
104
+ * // typeIdentifier: "STRING_VALUE", // required
105
+ * // typeRevision: "STRING_VALUE",
106
+ * // timestamp: new Date("TIMESTAMP"), // required
107
+ * // contentSummary: "STRING_VALUE",
108
+ * // id: "STRING_VALUE",
109
+ * // },
110
+ * // ],
101
111
  * // predictionConfiguration: { // PredictionConfiguration
102
112
  * // businessNameGeneration: { // BusinessNameGenerationConfiguration
103
113
  * // enabled: true || false,
@@ -96,6 +96,16 @@ declare const CreateAssetRevisionCommand_base: {
96
96
  * // content: "STRING_VALUE",
97
97
  * // },
98
98
  * // ],
99
+ * // latestTimeSeriesDataPointFormsOutput: [ // TimeSeriesDataPointSummaryFormOutputList
100
+ * // { // TimeSeriesDataPointSummaryFormOutput
101
+ * // formName: "STRING_VALUE", // required
102
+ * // typeIdentifier: "STRING_VALUE", // required
103
+ * // typeRevision: "STRING_VALUE",
104
+ * // timestamp: new Date("TIMESTAMP"), // required
105
+ * // contentSummary: "STRING_VALUE",
106
+ * // id: "STRING_VALUE",
107
+ * // },
108
+ * // ],
99
109
  * // predictionConfiguration: { // PredictionConfiguration
100
110
  * // businessNameGeneration: { // BusinessNameGenerationConfiguration
101
111
  * // enabled: true || false,
@@ -55,6 +55,7 @@ declare const CreateDataSourceCommand_base: {
55
55
  * ],
56
56
  * },
57
57
  * ],
58
+ * autoImportDataQualityResult: true || false,
58
59
  * },
59
60
  * redshiftRunConfiguration: { // RedshiftRunConfigurationInput
60
61
  * dataAccessRole: "STRING_VALUE",
@@ -130,6 +131,7 @@ declare const CreateDataSourceCommand_base: {
130
131
  * // ],
131
132
  * // },
132
133
  * // ],
134
+ * // autoImportDataQualityResult: true || false,
133
135
  * // },
134
136
  * // redshiftRunConfiguration: { // RedshiftRunConfigurationOutput
135
137
  * // accountId: "STRING_VALUE",
@@ -66,6 +66,7 @@ declare const DeleteDataSourceCommand_base: {
66
66
  * // ],
67
67
  * // },
68
68
  * // ],
69
+ * // autoImportDataQualityResult: true || false,
69
70
  * // },
70
71
  * // redshiftRunConfiguration: { // RedshiftRunConfigurationOutput
71
72
  * // accountId: "STRING_VALUE",
@@ -0,0 +1,79 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
+ import { DeleteTimeSeriesDataPointsInput, DeleteTimeSeriesDataPointsOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link DeleteTimeSeriesDataPointsCommand}.
13
+ */
14
+ export interface DeleteTimeSeriesDataPointsCommandInput extends DeleteTimeSeriesDataPointsInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link DeleteTimeSeriesDataPointsCommand}.
20
+ */
21
+ export interface DeleteTimeSeriesDataPointsCommandOutput extends DeleteTimeSeriesDataPointsOutput, __MetadataBearer {
22
+ }
23
+ declare const DeleteTimeSeriesDataPointsCommand_base: {
24
+ new (input: DeleteTimeSeriesDataPointsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteTimeSeriesDataPointsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTimeSeriesDataPointsCommandInput, DeleteTimeSeriesDataPointsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Deletes the specified time series form for the specified asset. </p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { DataZoneClient, DeleteTimeSeriesDataPointsCommand } from "@aws-sdk/client-datazone"; // ES Modules import
34
+ * // const { DataZoneClient, DeleteTimeSeriesDataPointsCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
35
+ * const client = new DataZoneClient(config);
36
+ * const input = { // DeleteTimeSeriesDataPointsInput
37
+ * domainIdentifier: "STRING_VALUE", // required
38
+ * entityIdentifier: "STRING_VALUE", // required
39
+ * entityType: "ASSET" || "LISTING", // required
40
+ * formName: "STRING_VALUE", // required
41
+ * clientToken: "STRING_VALUE",
42
+ * };
43
+ * const command = new DeleteTimeSeriesDataPointsCommand(input);
44
+ * const response = await client.send(command);
45
+ * // {};
46
+ *
47
+ * ```
48
+ *
49
+ * @param DeleteTimeSeriesDataPointsCommandInput - {@link DeleteTimeSeriesDataPointsCommandInput}
50
+ * @returns {@link DeleteTimeSeriesDataPointsCommandOutput}
51
+ * @see {@link DeleteTimeSeriesDataPointsCommandInput} for command's `input` shape.
52
+ * @see {@link DeleteTimeSeriesDataPointsCommandOutput} for command's `response` shape.
53
+ * @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
54
+ *
55
+ * @throws {@link AccessDeniedException} (client fault)
56
+ * <p>You do not have sufficient access to perform this action.</p>
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>The request has failed because of an unknown error, exception or failure.</p>
60
+ *
61
+ * @throws {@link ResourceNotFoundException} (client fault)
62
+ * <p>The specified resource cannot be found.</p>
63
+ *
64
+ * @throws {@link ThrottlingException} (client fault)
65
+ * <p>The request was denied due to request throttling.</p>
66
+ *
67
+ * @throws {@link ValidationException} (client fault)
68
+ * <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
69
+ *
70
+ * @throws {@link UnauthorizedException} (client fault)
71
+ * <p>You do not have permission to perform this action.</p>
72
+ *
73
+ * @throws {@link DataZoneServiceException}
74
+ * <p>Base exception class for all service exceptions from DataZone service.</p>
75
+ *
76
+ * @public
77
+ */
78
+ export declare class DeleteTimeSeriesDataPointsCommand extends DeleteTimeSeriesDataPointsCommand_base {
79
+ }
@@ -77,6 +77,16 @@ declare const GetAssetCommand_base: {
77
77
  * // content: "STRING_VALUE",
78
78
  * // },
79
79
  * // ],
80
+ * // latestTimeSeriesDataPointFormsOutput: [ // TimeSeriesDataPointSummaryFormOutputList
81
+ * // { // TimeSeriesDataPointSummaryFormOutput
82
+ * // formName: "STRING_VALUE", // required
83
+ * // typeIdentifier: "STRING_VALUE", // required
84
+ * // typeRevision: "STRING_VALUE",
85
+ * // timestamp: new Date("TIMESTAMP"), // required
86
+ * // contentSummary: "STRING_VALUE",
87
+ * // id: "STRING_VALUE",
88
+ * // },
89
+ * // ],
80
90
  * // };
81
91
  *
82
92
  * ```
@@ -65,6 +65,7 @@ declare const GetDataSourceCommand_base: {
65
65
  * // ],
66
66
  * // },
67
67
  * // ],
68
+ * // autoImportDataQualityResult: true || false,
68
69
  * // },
69
70
  * // redshiftRunConfiguration: { // RedshiftRunConfigurationOutput
70
71
  * // accountId: "STRING_VALUE",
@@ -55,6 +55,16 @@ declare const GetListingCommand_base: {
55
55
  * // assetType: "STRING_VALUE",
56
56
  * // createdAt: new Date("TIMESTAMP"),
57
57
  * // forms: "STRING_VALUE",
58
+ * // latestTimeSeriesDataPointForms: [ // TimeSeriesDataPointSummaryFormOutputList
59
+ * // { // TimeSeriesDataPointSummaryFormOutput
60
+ * // formName: "STRING_VALUE", // required
61
+ * // typeIdentifier: "STRING_VALUE", // required
62
+ * // typeRevision: "STRING_VALUE",
63
+ * // timestamp: new Date("TIMESTAMP"), // required
64
+ * // contentSummary: "STRING_VALUE",
65
+ * // id: "STRING_VALUE",
66
+ * // },
67
+ * // ],
58
68
  * // glossaryTerms: [ // DetailedGlossaryTerms
59
69
  * // { // DetailedGlossaryTerm
60
70
  * // name: "STRING_VALUE",
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
- import { GetMetadataGenerationRunInput } from "../models/models_0";
5
- import { GetMetadataGenerationRunOutput } from "../models/models_1";
4
+ import { GetMetadataGenerationRunInput, GetMetadataGenerationRunOutput } from "../models/models_1";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
+ import { GetTimeSeriesDataPointInput, GetTimeSeriesDataPointOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link GetTimeSeriesDataPointCommand}.
13
+ */
14
+ export interface GetTimeSeriesDataPointCommandInput extends GetTimeSeriesDataPointInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link GetTimeSeriesDataPointCommand}.
20
+ */
21
+ export interface GetTimeSeriesDataPointCommandOutput extends GetTimeSeriesDataPointOutput, __MetadataBearer {
22
+ }
23
+ declare const GetTimeSeriesDataPointCommand_base: {
24
+ new (input: GetTimeSeriesDataPointCommandInput): import("@smithy/smithy-client").CommandImpl<GetTimeSeriesDataPointCommandInput, GetTimeSeriesDataPointCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetTimeSeriesDataPointCommandInput): import("@smithy/smithy-client").CommandImpl<GetTimeSeriesDataPointCommandInput, GetTimeSeriesDataPointCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Gets the existing data point for the asset.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { DataZoneClient, GetTimeSeriesDataPointCommand } from "@aws-sdk/client-datazone"; // ES Modules import
34
+ * // const { DataZoneClient, GetTimeSeriesDataPointCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
35
+ * const client = new DataZoneClient(config);
36
+ * const input = { // GetTimeSeriesDataPointInput
37
+ * domainIdentifier: "STRING_VALUE", // required
38
+ * entityIdentifier: "STRING_VALUE", // required
39
+ * entityType: "ASSET" || "LISTING", // required
40
+ * identifier: "STRING_VALUE", // required
41
+ * formName: "STRING_VALUE", // required
42
+ * };
43
+ * const command = new GetTimeSeriesDataPointCommand(input);
44
+ * const response = await client.send(command);
45
+ * // { // GetTimeSeriesDataPointOutput
46
+ * // domainId: "STRING_VALUE",
47
+ * // entityId: "STRING_VALUE",
48
+ * // entityType: "ASSET" || "LISTING",
49
+ * // formName: "STRING_VALUE",
50
+ * // form: { // TimeSeriesDataPointFormOutput
51
+ * // formName: "STRING_VALUE", // required
52
+ * // typeIdentifier: "STRING_VALUE", // required
53
+ * // typeRevision: "STRING_VALUE",
54
+ * // timestamp: new Date("TIMESTAMP"), // required
55
+ * // content: "STRING_VALUE",
56
+ * // id: "STRING_VALUE",
57
+ * // },
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param GetTimeSeriesDataPointCommandInput - {@link GetTimeSeriesDataPointCommandInput}
63
+ * @returns {@link GetTimeSeriesDataPointCommandOutput}
64
+ * @see {@link GetTimeSeriesDataPointCommandInput} for command's `input` shape.
65
+ * @see {@link GetTimeSeriesDataPointCommandOutput} for command's `response` shape.
66
+ * @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
67
+ *
68
+ * @throws {@link AccessDeniedException} (client fault)
69
+ * <p>You do not have sufficient access to perform this action.</p>
70
+ *
71
+ * @throws {@link InternalServerException} (server fault)
72
+ * <p>The request has failed because of an unknown error, exception or failure.</p>
73
+ *
74
+ * @throws {@link ResourceNotFoundException} (client fault)
75
+ * <p>The specified resource cannot be found.</p>
76
+ *
77
+ * @throws {@link ThrottlingException} (client fault)
78
+ * <p>The request was denied due to request throttling.</p>
79
+ *
80
+ * @throws {@link ValidationException} (client fault)
81
+ * <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
82
+ *
83
+ * @throws {@link UnauthorizedException} (client fault)
84
+ * <p>You do not have permission to perform this action.</p>
85
+ *
86
+ * @throws {@link DataZoneServiceException}
87
+ * <p>Base exception class for all service exceptions from DataZone service.</p>
88
+ *
89
+ * @public
90
+ */
91
+ export declare class GetTimeSeriesDataPointCommand extends GetTimeSeriesDataPointCommand_base {
92
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
- import { ListSubscriptionTargetsInput, ListSubscriptionTargetsOutput } from "../models/models_0";
4
+ import { ListSubscriptionTargetsInput, ListSubscriptionTargetsOutput } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -0,0 +1,94 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
+ import { ListTimeSeriesDataPointsInput, ListTimeSeriesDataPointsOutput } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link ListTimeSeriesDataPointsCommand}.
13
+ */
14
+ export interface ListTimeSeriesDataPointsCommandInput extends ListTimeSeriesDataPointsInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link ListTimeSeriesDataPointsCommand}.
20
+ */
21
+ export interface ListTimeSeriesDataPointsCommandOutput extends ListTimeSeriesDataPointsOutput, __MetadataBearer {
22
+ }
23
+ declare const ListTimeSeriesDataPointsCommand_base: {
24
+ new (input: ListTimeSeriesDataPointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTimeSeriesDataPointsCommandInput, ListTimeSeriesDataPointsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTimeSeriesDataPointsCommandInput): import("@smithy/smithy-client").CommandImpl<ListTimeSeriesDataPointsCommandInput, ListTimeSeriesDataPointsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Lists time series data points.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { DataZoneClient, ListTimeSeriesDataPointsCommand } from "@aws-sdk/client-datazone"; // ES Modules import
34
+ * // const { DataZoneClient, ListTimeSeriesDataPointsCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
35
+ * const client = new DataZoneClient(config);
36
+ * const input = { // ListTimeSeriesDataPointsInput
37
+ * domainIdentifier: "STRING_VALUE", // required
38
+ * entityIdentifier: "STRING_VALUE", // required
39
+ * entityType: "ASSET" || "LISTING", // required
40
+ * formName: "STRING_VALUE", // required
41
+ * startedAt: new Date("TIMESTAMP"),
42
+ * endedAt: new Date("TIMESTAMP"),
43
+ * nextToken: "STRING_VALUE",
44
+ * maxResults: Number("int"),
45
+ * };
46
+ * const command = new ListTimeSeriesDataPointsCommand(input);
47
+ * const response = await client.send(command);
48
+ * // { // ListTimeSeriesDataPointsOutput
49
+ * // items: [ // TimeSeriesDataPointSummaryFormOutputList
50
+ * // { // TimeSeriesDataPointSummaryFormOutput
51
+ * // formName: "STRING_VALUE", // required
52
+ * // typeIdentifier: "STRING_VALUE", // required
53
+ * // typeRevision: "STRING_VALUE",
54
+ * // timestamp: new Date("TIMESTAMP"), // required
55
+ * // contentSummary: "STRING_VALUE",
56
+ * // id: "STRING_VALUE",
57
+ * // },
58
+ * // ],
59
+ * // nextToken: "STRING_VALUE",
60
+ * // };
61
+ *
62
+ * ```
63
+ *
64
+ * @param ListTimeSeriesDataPointsCommandInput - {@link ListTimeSeriesDataPointsCommandInput}
65
+ * @returns {@link ListTimeSeriesDataPointsCommandOutput}
66
+ * @see {@link ListTimeSeriesDataPointsCommandInput} for command's `input` shape.
67
+ * @see {@link ListTimeSeriesDataPointsCommandOutput} for command's `response` shape.
68
+ * @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
69
+ *
70
+ * @throws {@link AccessDeniedException} (client fault)
71
+ * <p>You do not have sufficient access to perform this action.</p>
72
+ *
73
+ * @throws {@link InternalServerException} (server fault)
74
+ * <p>The request has failed because of an unknown error, exception or failure.</p>
75
+ *
76
+ * @throws {@link ResourceNotFoundException} (client fault)
77
+ * <p>The specified resource cannot be found.</p>
78
+ *
79
+ * @throws {@link ThrottlingException} (client fault)
80
+ * <p>The request was denied due to request throttling.</p>
81
+ *
82
+ * @throws {@link ValidationException} (client fault)
83
+ * <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
84
+ *
85
+ * @throws {@link UnauthorizedException} (client fault)
86
+ * <p>You do not have permission to perform this action.</p>
87
+ *
88
+ * @throws {@link DataZoneServiceException}
89
+ * <p>Base exception class for all service exceptions from DataZone service.</p>
90
+ *
91
+ * @public
92
+ */
93
+ export declare class ListTimeSeriesDataPointsCommand extends ListTimeSeriesDataPointsCommand_base {
94
+ }
@@ -0,0 +1,107 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
+ import { PostTimeSeriesDataPointsInput, PostTimeSeriesDataPointsOutput } from "../models/models_1";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link PostTimeSeriesDataPointsCommand}.
13
+ */
14
+ export interface PostTimeSeriesDataPointsCommandInput extends PostTimeSeriesDataPointsInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link PostTimeSeriesDataPointsCommand}.
20
+ */
21
+ export interface PostTimeSeriesDataPointsCommandOutput extends PostTimeSeriesDataPointsOutput, __MetadataBearer {
22
+ }
23
+ declare const PostTimeSeriesDataPointsCommand_base: {
24
+ new (input: PostTimeSeriesDataPointsCommandInput): import("@smithy/smithy-client").CommandImpl<PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: PostTimeSeriesDataPointsCommandInput): import("@smithy/smithy-client").CommandImpl<PostTimeSeriesDataPointsCommandInput, PostTimeSeriesDataPointsCommandOutput, DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
+ };
28
+ /**
29
+ * <p>Posts time series data points to Amazon DataZone for the specified asset.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { DataZoneClient, PostTimeSeriesDataPointsCommand } from "@aws-sdk/client-datazone"; // ES Modules import
34
+ * // const { DataZoneClient, PostTimeSeriesDataPointsCommand } = require("@aws-sdk/client-datazone"); // CommonJS import
35
+ * const client = new DataZoneClient(config);
36
+ * const input = { // PostTimeSeriesDataPointsInput
37
+ * domainIdentifier: "STRING_VALUE", // required
38
+ * entityIdentifier: "STRING_VALUE", // required
39
+ * entityType: "ASSET" || "LISTING", // required
40
+ * forms: [ // TimeSeriesDataPointFormInputList // required
41
+ * { // TimeSeriesDataPointFormInput
42
+ * formName: "STRING_VALUE", // required
43
+ * typeIdentifier: "STRING_VALUE", // required
44
+ * typeRevision: "STRING_VALUE",
45
+ * timestamp: new Date("TIMESTAMP"), // required
46
+ * content: "STRING_VALUE",
47
+ * },
48
+ * ],
49
+ * clientToken: "STRING_VALUE",
50
+ * };
51
+ * const command = new PostTimeSeriesDataPointsCommand(input);
52
+ * const response = await client.send(command);
53
+ * // { // PostTimeSeriesDataPointsOutput
54
+ * // domainId: "STRING_VALUE",
55
+ * // entityId: "STRING_VALUE",
56
+ * // entityType: "ASSET" || "LISTING",
57
+ * // forms: [ // TimeSeriesDataPointFormOutputList
58
+ * // { // TimeSeriesDataPointFormOutput
59
+ * // formName: "STRING_VALUE", // required
60
+ * // typeIdentifier: "STRING_VALUE", // required
61
+ * // typeRevision: "STRING_VALUE",
62
+ * // timestamp: new Date("TIMESTAMP"), // required
63
+ * // content: "STRING_VALUE",
64
+ * // id: "STRING_VALUE",
65
+ * // },
66
+ * // ],
67
+ * // };
68
+ *
69
+ * ```
70
+ *
71
+ * @param PostTimeSeriesDataPointsCommandInput - {@link PostTimeSeriesDataPointsCommandInput}
72
+ * @returns {@link PostTimeSeriesDataPointsCommandOutput}
73
+ * @see {@link PostTimeSeriesDataPointsCommandInput} for command's `input` shape.
74
+ * @see {@link PostTimeSeriesDataPointsCommandOutput} for command's `response` shape.
75
+ * @see {@link DataZoneClientResolvedConfig | config} for DataZoneClient's `config` shape.
76
+ *
77
+ * @throws {@link AccessDeniedException} (client fault)
78
+ * <p>You do not have sufficient access to perform this action.</p>
79
+ *
80
+ * @throws {@link ConflictException} (client fault)
81
+ * <p>There is a conflict while performing this action.</p>
82
+ *
83
+ * @throws {@link InternalServerException} (server fault)
84
+ * <p>The request has failed because of an unknown error, exception or failure.</p>
85
+ *
86
+ * @throws {@link ResourceNotFoundException} (client fault)
87
+ * <p>The specified resource cannot be found.</p>
88
+ *
89
+ * @throws {@link ServiceQuotaExceededException} (client fault)
90
+ * <p>The request has exceeded the specified service quota.</p>
91
+ *
92
+ * @throws {@link ThrottlingException} (client fault)
93
+ * <p>The request was denied due to request throttling.</p>
94
+ *
95
+ * @throws {@link ValidationException} (client fault)
96
+ * <p>The input fails to satisfy the constraints specified by the Amazon Web Services service.</p>
97
+ *
98
+ * @throws {@link UnauthorizedException} (client fault)
99
+ * <p>You do not have permission to perform this action.</p>
100
+ *
101
+ * @throws {@link DataZoneServiceException}
102
+ * <p>Base exception class for all service exceptions from DataZone service.</p>
103
+ *
104
+ * @public
105
+ */
106
+ export declare class PostTimeSeriesDataPointsCommand extends PostTimeSeriesDataPointsCommand_base {
107
+ }
@@ -73,7 +73,7 @@ declare const SearchCommand_base: {
73
73
  * order: "ASCENDING" || "DESCENDING",
74
74
  * },
75
75
  * additionalAttributes: [ // SearchOutputAdditionalAttributes
76
- * "FORMS",
76
+ * "FORMS" || "TIME_SERIES_DATA_POINT_FORMS",
77
77
  * ],
78
78
  * };
79
79
  * const command = new SearchCommand(input);
@@ -147,6 +147,16 @@ declare const SearchCommand_base: {
147
147
  * // content: "STRING_VALUE",
148
148
  * // },
149
149
  * // ],
150
+ * // latestTimeSeriesDataPointFormsOutput: [ // TimeSeriesDataPointSummaryFormOutputList
151
+ * // { // TimeSeriesDataPointSummaryFormOutput
152
+ * // formName: "STRING_VALUE", // required
153
+ * // typeIdentifier: "STRING_VALUE", // required
154
+ * // typeRevision: "STRING_VALUE",
155
+ * // timestamp: new Date("TIMESTAMP"), // required
156
+ * // contentSummary: "STRING_VALUE",
157
+ * // id: "STRING_VALUE",
158
+ * // },
159
+ * // ],
150
160
  * // },
151
161
  * // },
152
162
  * // dataProductItem: { // DataProductSummary
@@ -71,7 +71,7 @@ declare const SearchListingsCommand_base: {
71
71
  * order: "ASCENDING" || "DESCENDING",
72
72
  * },
73
73
  * additionalAttributes: [ // SearchOutputAdditionalAttributes
74
- * "FORMS",
74
+ * "FORMS" || "TIME_SERIES_DATA_POINT_FORMS",
75
75
  * ],
76
76
  * };
77
77
  * const command = new SearchListingsCommand(input);
@@ -99,6 +99,16 @@ declare const SearchListingsCommand_base: {
99
99
  * // owningProjectId: "STRING_VALUE",
100
100
  * // additionalAttributes: { // AssetListingItemAdditionalAttributes
101
101
  * // forms: "STRING_VALUE",
102
+ * // latestTimeSeriesDataPointForms: [ // TimeSeriesDataPointSummaryFormOutputList
103
+ * // { // TimeSeriesDataPointSummaryFormOutput
104
+ * // formName: "STRING_VALUE", // required
105
+ * // typeIdentifier: "STRING_VALUE", // required
106
+ * // typeRevision: "STRING_VALUE",
107
+ * // timestamp: new Date("TIMESTAMP"), // required
108
+ * // contentSummary: "STRING_VALUE",
109
+ * // id: "STRING_VALUE",
110
+ * // },
111
+ * // ],
102
112
  * // },
103
113
  * // },
104
114
  * // },