@aws-sdk/client-lookoutequipment 3.299.0 → 3.301.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 (34) hide show
  1. package/dist-types/commands/CreateDatasetCommand.d.ts +14 -0
  2. package/dist-types/commands/CreateInferenceSchedulerCommand.d.ts +33 -0
  3. package/dist-types/commands/CreateLabelCommand.d.ts +10 -0
  4. package/dist-types/commands/CreateLabelGroupCommand.d.ts +13 -0
  5. package/dist-types/commands/CreateModelCommand.d.ts +31 -0
  6. package/dist-types/commands/DeleteDatasetCommand.d.ts +3 -0
  7. package/dist-types/commands/DeleteInferenceSchedulerCommand.d.ts +3 -0
  8. package/dist-types/commands/DeleteLabelCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteLabelGroupCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteModelCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +3 -0
  12. package/dist-types/commands/DescribeDatasetCommand.d.ts +3 -0
  13. package/dist-types/commands/DescribeInferenceSchedulerCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeLabelCommand.d.ts +4 -0
  15. package/dist-types/commands/DescribeLabelGroupCommand.d.ts +3 -0
  16. package/dist-types/commands/DescribeModelCommand.d.ts +3 -0
  17. package/dist-types/commands/ListDataIngestionJobsCommand.d.ts +6 -0
  18. package/dist-types/commands/ListDatasetsCommand.d.ts +5 -0
  19. package/dist-types/commands/ListInferenceEventsCommand.d.ts +7 -0
  20. package/dist-types/commands/ListInferenceExecutionsCommand.d.ts +8 -0
  21. package/dist-types/commands/ListInferenceSchedulersCommand.d.ts +7 -0
  22. package/dist-types/commands/ListLabelGroupsCommand.d.ts +5 -0
  23. package/dist-types/commands/ListLabelsCommand.d.ts +9 -0
  24. package/dist-types/commands/ListModelsCommand.d.ts +7 -0
  25. package/dist-types/commands/ListSensorStatisticsCommand.d.ts +6 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  27. package/dist-types/commands/StartDataIngestionJobCommand.d.ts +12 -0
  28. package/dist-types/commands/StartInferenceSchedulerCommand.d.ts +3 -0
  29. package/dist-types/commands/StopInferenceSchedulerCommand.d.ts +3 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  32. package/dist-types/commands/UpdateInferenceSchedulerCommand.d.ts +24 -0
  33. package/dist-types/commands/UpdateLabelGroupCommand.d.ts +6 -0
  34. package/package.json +8 -8
@@ -29,6 +29,20 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
29
29
  * import { LookoutEquipmentClient, CreateDatasetCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
30
30
  * // const { LookoutEquipmentClient, CreateDatasetCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
31
31
  * const client = new LookoutEquipmentClient(config);
32
+ * const input = { // CreateDatasetRequest
33
+ * DatasetName: "STRING_VALUE", // required
34
+ * DatasetSchema: { // DatasetSchema
35
+ * InlineDataSchema: "STRING_VALUE",
36
+ * },
37
+ * ServerSideKmsKeyId: "STRING_VALUE",
38
+ * ClientToken: "STRING_VALUE", // required
39
+ * Tags: [ // TagList
40
+ * { // Tag
41
+ * Key: "STRING_VALUE", // required
42
+ * Value: "STRING_VALUE", // required
43
+ * },
44
+ * ],
45
+ * };
32
46
  * const command = new CreateDatasetCommand(input);
33
47
  * const response = await client.send(command);
34
48
  * ```
@@ -30,6 +30,39 @@ export interface CreateInferenceSchedulerCommandOutput extends CreateInferenceSc
30
30
  * import { LookoutEquipmentClient, CreateInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
31
31
  * // const { LookoutEquipmentClient, CreateInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
32
32
  * const client = new LookoutEquipmentClient(config);
33
+ * const input = { // CreateInferenceSchedulerRequest
34
+ * ModelName: "STRING_VALUE", // required
35
+ * InferenceSchedulerName: "STRING_VALUE", // required
36
+ * DataDelayOffsetInMinutes: Number("long"),
37
+ * DataUploadFrequency: "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H", // required
38
+ * DataInputConfiguration: { // InferenceInputConfiguration
39
+ * S3InputConfiguration: { // InferenceS3InputConfiguration
40
+ * Bucket: "STRING_VALUE", // required
41
+ * Prefix: "STRING_VALUE",
42
+ * },
43
+ * InputTimeZoneOffset: "STRING_VALUE",
44
+ * InferenceInputNameConfiguration: { // InferenceInputNameConfiguration
45
+ * TimestampFormat: "STRING_VALUE",
46
+ * ComponentTimestampDelimiter: "STRING_VALUE",
47
+ * },
48
+ * },
49
+ * DataOutputConfiguration: { // InferenceOutputConfiguration
50
+ * S3OutputConfiguration: { // InferenceS3OutputConfiguration
51
+ * Bucket: "STRING_VALUE", // required
52
+ * Prefix: "STRING_VALUE",
53
+ * },
54
+ * KmsKeyId: "STRING_VALUE",
55
+ * },
56
+ * RoleArn: "STRING_VALUE", // required
57
+ * ServerSideKmsKeyId: "STRING_VALUE",
58
+ * ClientToken: "STRING_VALUE", // required
59
+ * Tags: [ // TagList
60
+ * { // Tag
61
+ * Key: "STRING_VALUE", // required
62
+ * Value: "STRING_VALUE", // required
63
+ * },
64
+ * ],
65
+ * };
33
66
  * const command = new CreateInferenceSchedulerCommand(input);
34
67
  * const response = await client.send(command);
35
68
  * ```
@@ -28,6 +28,16 @@ export interface CreateLabelCommandOutput extends CreateLabelResponse, __Metadat
28
28
  * import { LookoutEquipmentClient, CreateLabelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, CreateLabelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // CreateLabelRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * StartTime: new Date("TIMESTAMP"), // required
34
+ * EndTime: new Date("TIMESTAMP"), // required
35
+ * Rating: "ANOMALY" || "NO_ANOMALY" || "NEUTRAL", // required
36
+ * FaultCode: "STRING_VALUE",
37
+ * Notes: "STRING_VALUE",
38
+ * Equipment: "STRING_VALUE",
39
+ * ClientToken: "STRING_VALUE", // required
40
+ * };
31
41
  * const command = new CreateLabelCommand(input);
32
42
  * const response = await client.send(command);
33
43
  * ```
@@ -28,6 +28,19 @@ export interface CreateLabelGroupCommandOutput extends CreateLabelGroupResponse,
28
28
  * import { LookoutEquipmentClient, CreateLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, CreateLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // CreateLabelGroupRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * FaultCodes: [ // FaultCodes
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * ClientToken: "STRING_VALUE", // required
37
+ * Tags: [ // TagList
38
+ * { // Tag
39
+ * Key: "STRING_VALUE", // required
40
+ * Value: "STRING_VALUE", // required
41
+ * },
42
+ * ],
43
+ * };
31
44
  * const command = new CreateLabelGroupCommand(input);
32
45
  * const response = await client.send(command);
33
46
  * ```
@@ -34,6 +34,37 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
34
34
  * import { LookoutEquipmentClient, CreateModelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
35
35
  * // const { LookoutEquipmentClient, CreateModelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
36
36
  * const client = new LookoutEquipmentClient(config);
37
+ * const input = { // CreateModelRequest
38
+ * ModelName: "STRING_VALUE", // required
39
+ * DatasetName: "STRING_VALUE", // required
40
+ * DatasetSchema: { // DatasetSchema
41
+ * InlineDataSchema: "STRING_VALUE",
42
+ * },
43
+ * LabelsInputConfiguration: { // LabelsInputConfiguration
44
+ * S3InputConfiguration: { // LabelsS3InputConfiguration
45
+ * Bucket: "STRING_VALUE", // required
46
+ * Prefix: "STRING_VALUE",
47
+ * },
48
+ * LabelGroupName: "STRING_VALUE",
49
+ * },
50
+ * ClientToken: "STRING_VALUE", // required
51
+ * TrainingDataStartTime: new Date("TIMESTAMP"),
52
+ * TrainingDataEndTime: new Date("TIMESTAMP"),
53
+ * EvaluationDataStartTime: new Date("TIMESTAMP"),
54
+ * EvaluationDataEndTime: new Date("TIMESTAMP"),
55
+ * RoleArn: "STRING_VALUE",
56
+ * DataPreProcessingConfiguration: { // DataPreProcessingConfiguration
57
+ * TargetSamplingRate: "PT1S" || "PT5S" || "PT10S" || "PT15S" || "PT30S" || "PT1M" || "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H",
58
+ * },
59
+ * ServerSideKmsKeyId: "STRING_VALUE",
60
+ * Tags: [ // TagList
61
+ * { // Tag
62
+ * Key: "STRING_VALUE", // required
63
+ * Value: "STRING_VALUE", // required
64
+ * },
65
+ * ],
66
+ * OffCondition: "STRING_VALUE",
67
+ * };
37
68
  * const command = new CreateModelCommand(input);
38
69
  * const response = await client.send(command);
39
70
  * ```
@@ -30,6 +30,9 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {
30
30
  * import { LookoutEquipmentClient, DeleteDatasetCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
31
31
  * // const { LookoutEquipmentClient, DeleteDatasetCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
32
32
  * const client = new LookoutEquipmentClient(config);
33
+ * const input = { // DeleteDatasetRequest
34
+ * DatasetName: "STRING_VALUE", // required
35
+ * };
33
36
  * const command = new DeleteDatasetCommand(input);
34
37
  * const response = await client.send(command);
35
38
  * ```
@@ -27,6 +27,9 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer
27
27
  * import { LookoutEquipmentClient, DeleteInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, DeleteInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // DeleteInferenceSchedulerRequest
31
+ * InferenceSchedulerName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteInferenceSchedulerCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -28,6 +28,10 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {
28
28
  * import { LookoutEquipmentClient, DeleteLabelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, DeleteLabelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // DeleteLabelRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * LabelId: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new DeleteLabelCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -28,6 +28,9 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
28
28
  * import { LookoutEquipmentClient, DeleteLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, DeleteLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // DeleteLabelGroupRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeleteLabelGroupCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,9 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
28
28
  * import { LookoutEquipmentClient, DeleteModelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, DeleteModelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // DeleteModelRequest
32
+ * ModelName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeleteModelCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -27,6 +27,9 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges
27
27
  * import { LookoutEquipmentClient, DescribeDataIngestionJobCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, DescribeDataIngestionJobCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // DescribeDataIngestionJobRequest
31
+ * JobId: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeDataIngestionJobCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
27
27
  * import { LookoutEquipmentClient, DescribeDatasetCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, DescribeDatasetCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // DescribeDatasetRequest
31
+ * DatasetName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeDatasetCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -27,6 +27,9 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen
27
27
  * import { LookoutEquipmentClient, DescribeInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, DescribeInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // DescribeInferenceSchedulerRequest
31
+ * InferenceSchedulerName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DescribeInferenceSchedulerCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -28,6 +28,10 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met
28
28
  * import { LookoutEquipmentClient, DescribeLabelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, DescribeLabelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // DescribeLabelRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * LabelId: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new DescribeLabelCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -28,6 +28,9 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo
28
28
  * import { LookoutEquipmentClient, DescribeLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, DescribeLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // DescribeLabelGroupRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DescribeLabelGroupCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -28,6 +28,9 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met
28
28
  * import { LookoutEquipmentClient, DescribeModelCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, DescribeModelCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // DescribeModelRequest
32
+ * ModelName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DescribeModelCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -27,6 +27,12 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob
27
27
  * import { LookoutEquipmentClient, ListDataIngestionJobsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, ListDataIngestionJobsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // ListDataIngestionJobsRequest
31
+ * DatasetName: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
35
+ * };
30
36
  * const command = new ListDataIngestionJobsCommand(input);
31
37
  * const response = await client.send(command);
32
38
  * ```
@@ -27,6 +27,11 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
27
27
  * import { LookoutEquipmentClient, ListDatasetsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, ListDatasetsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // ListDatasetsRequest
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * DatasetNameBeginsWith: "STRING_VALUE",
34
+ * };
30
35
  * const command = new ListDatasetsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,13 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes
27
27
  * import { LookoutEquipmentClient, ListInferenceEventsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, ListInferenceEventsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // ListInferenceEventsRequest
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * InferenceSchedulerName: "STRING_VALUE", // required
34
+ * IntervalStartTime: new Date("TIMESTAMP"), // required
35
+ * IntervalEndTime: new Date("TIMESTAMP"), // required
36
+ * };
30
37
  * const command = new ListInferenceEventsCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -27,6 +27,14 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu
27
27
  * import { LookoutEquipmentClient, ListInferenceExecutionsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, ListInferenceExecutionsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // ListInferenceExecutionsRequest
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * InferenceSchedulerName: "STRING_VALUE", // required
34
+ * DataStartTimeAfter: new Date("TIMESTAMP"),
35
+ * DataEndTimeBefore: new Date("TIMESTAMP"),
36
+ * Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
37
+ * };
30
38
  * const command = new ListInferenceExecutionsCommand(input);
31
39
  * const response = await client.send(command);
32
40
  * ```
@@ -27,6 +27,13 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched
27
27
  * import { LookoutEquipmentClient, ListInferenceSchedulersCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, ListInferenceSchedulersCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // ListInferenceSchedulersRequest
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * InferenceSchedulerNameBeginsWith: "STRING_VALUE",
34
+ * ModelName: "STRING_VALUE",
35
+ * Status: "PENDING" || "RUNNING" || "STOPPING" || "STOPPED",
36
+ * };
30
37
  * const command = new ListInferenceSchedulersCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -28,6 +28,11 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _
28
28
  * import { LookoutEquipmentClient, ListLabelGroupsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, ListLabelGroupsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // ListLabelGroupsRequest
32
+ * LabelGroupNameBeginsWith: "STRING_VALUE",
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
31
36
  * const command = new ListLabelGroupsCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -28,6 +28,15 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
28
28
  * import { LookoutEquipmentClient, ListLabelsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, ListLabelsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // ListLabelsRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * IntervalStartTime: new Date("TIMESTAMP"),
34
+ * IntervalEndTime: new Date("TIMESTAMP"),
35
+ * FaultCode: "STRING_VALUE",
36
+ * Equipment: "STRING_VALUE",
37
+ * NextToken: "STRING_VALUE",
38
+ * MaxResults: Number("int"),
39
+ * };
31
40
  * const command = new ListLabelsCommand(input);
32
41
  * const response = await client.send(command);
33
42
  * ```
@@ -27,6 +27,13 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB
27
27
  * import { LookoutEquipmentClient, ListModelsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, ListModelsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // ListModelsRequest
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
34
+ * ModelNameBeginsWith: "STRING_VALUE",
35
+ * DatasetNameBeginsWith: "STRING_VALUE",
36
+ * };
30
37
  * const command = new ListModelsCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -28,6 +28,12 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR
28
28
  * import { LookoutEquipmentClient, ListSensorStatisticsCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, ListSensorStatisticsCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // ListSensorStatisticsRequest
32
+ * DatasetName: "STRING_VALUE", // required
33
+ * IngestionJobId: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * NextToken: "STRING_VALUE",
36
+ * };
31
37
  * const command = new ListSensorStatisticsCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { LookoutEquipmentClient, ListTagsForResourceCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
27
27
  * // const { LookoutEquipmentClient, ListTagsForResourceCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
28
28
  * const client = new LookoutEquipmentClient(config);
29
+ * const input = { // ListTagsForResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,18 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo
27
27
  * import { LookoutEquipmentClient, StartDataIngestionJobCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
28
28
  * // const { LookoutEquipmentClient, StartDataIngestionJobCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
29
29
  * const client = new LookoutEquipmentClient(config);
30
+ * const input = { // StartDataIngestionJobRequest
31
+ * DatasetName: "STRING_VALUE", // required
32
+ * IngestionInputConfiguration: { // IngestionInputConfiguration
33
+ * S3InputConfiguration: { // IngestionS3InputConfiguration
34
+ * Bucket: "STRING_VALUE", // required
35
+ * Prefix: "STRING_VALUE",
36
+ * KeyPattern: "STRING_VALUE",
37
+ * },
38
+ * },
39
+ * RoleArn: "STRING_VALUE", // required
40
+ * ClientToken: "STRING_VALUE", // required
41
+ * };
30
42
  * const command = new StartDataIngestionJobCommand(input);
31
43
  * const response = await client.send(command);
32
44
  * ```
@@ -26,6 +26,9 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche
26
26
  * import { LookoutEquipmentClient, StartInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
27
27
  * // const { LookoutEquipmentClient, StartInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
28
28
  * const client = new LookoutEquipmentClient(config);
29
+ * const input = { // StartInferenceSchedulerRequest
30
+ * InferenceSchedulerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StartInferenceSchedulerCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu
26
26
  * import { LookoutEquipmentClient, StopInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
27
27
  * // const { LookoutEquipmentClient, StopInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
28
28
  * const client = new LookoutEquipmentClient(config);
29
+ * const input = { // StopInferenceSchedulerRequest
30
+ * InferenceSchedulerName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new StopInferenceSchedulerCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -30,6 +30,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
30
30
  * import { LookoutEquipmentClient, TagResourceCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
31
31
  * // const { LookoutEquipmentClient, TagResourceCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
32
32
  * const client = new LookoutEquipmentClient(config);
33
+ * const input = { // TagResourceRequest
34
+ * ResourceArn: "STRING_VALUE", // required
35
+ * Tags: [ // TagList // required
36
+ * { // Tag
37
+ * Key: "STRING_VALUE", // required
38
+ * Value: "STRING_VALUE", // required
39
+ * },
40
+ * ],
41
+ * };
33
42
  * const command = new TagResourceCommand(input);
34
43
  * const response = await client.send(command);
35
44
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { LookoutEquipmentClient, UntagResourceCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
27
27
  * // const { LookoutEquipmentClient, UntagResourceCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
28
28
  * const client = new LookoutEquipmentClient(config);
29
+ * const input = { // UntagResourceRequest
30
+ * ResourceArn: "STRING_VALUE", // required
31
+ * TagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,30 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer
26
26
  * import { LookoutEquipmentClient, UpdateInferenceSchedulerCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
27
27
  * // const { LookoutEquipmentClient, UpdateInferenceSchedulerCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
28
28
  * const client = new LookoutEquipmentClient(config);
29
+ * const input = { // UpdateInferenceSchedulerRequest
30
+ * InferenceSchedulerName: "STRING_VALUE", // required
31
+ * DataDelayOffsetInMinutes: Number("long"),
32
+ * DataUploadFrequency: "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H",
33
+ * DataInputConfiguration: { // InferenceInputConfiguration
34
+ * S3InputConfiguration: { // InferenceS3InputConfiguration
35
+ * Bucket: "STRING_VALUE", // required
36
+ * Prefix: "STRING_VALUE",
37
+ * },
38
+ * InputTimeZoneOffset: "STRING_VALUE",
39
+ * InferenceInputNameConfiguration: { // InferenceInputNameConfiguration
40
+ * TimestampFormat: "STRING_VALUE",
41
+ * ComponentTimestampDelimiter: "STRING_VALUE",
42
+ * },
43
+ * },
44
+ * DataOutputConfiguration: { // InferenceOutputConfiguration
45
+ * S3OutputConfiguration: { // InferenceS3OutputConfiguration
46
+ * Bucket: "STRING_VALUE", // required
47
+ * Prefix: "STRING_VALUE",
48
+ * },
49
+ * KmsKeyId: "STRING_VALUE",
50
+ * },
51
+ * RoleArn: "STRING_VALUE",
52
+ * };
29
53
  * const command = new UpdateInferenceSchedulerCommand(input);
30
54
  * const response = await client.send(command);
31
55
  * ```
@@ -28,6 +28,12 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
28
28
  * import { LookoutEquipmentClient, UpdateLabelGroupCommand } from "@aws-sdk/client-lookoutequipment"; // ES Modules import
29
29
  * // const { LookoutEquipmentClient, UpdateLabelGroupCommand } = require("@aws-sdk/client-lookoutequipment"); // CommonJS import
30
30
  * const client = new LookoutEquipmentClient(config);
31
+ * const input = { // UpdateLabelGroupRequest
32
+ * LabelGroupName: "STRING_VALUE", // required
33
+ * FaultCodes: [ // FaultCodes
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * };
31
37
  * const command = new UpdateLabelGroupCommand(input);
32
38
  * const response = await client.send(command);
33
39
  * ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lookoutequipment",
3
3
  "description": "AWS SDK for JavaScript Lookoutequipment Client for Node.js, Browser and React Native",
4
- "version": "3.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"