@aws-sdk/client-lookoutequipment 3.774.0 → 3.777.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/LookoutEquipmentClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/CreateDatasetCommand.d.ts +1 -0
- package/dist-types/commands/CreateInferenceSchedulerCommand.d.ts +1 -0
- package/dist-types/commands/CreateLabelCommand.d.ts +1 -0
- package/dist-types/commands/CreateLabelGroupCommand.d.ts +1 -0
- package/dist-types/commands/CreateModelCommand.d.ts +1 -0
- package/dist-types/commands/CreateRetrainingSchedulerCommand.d.ts +20 -21
- package/dist-types/commands/DeleteDatasetCommand.d.ts +1 -0
- package/dist-types/commands/DeleteInferenceSchedulerCommand.d.ts +1 -0
- package/dist-types/commands/DeleteLabelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteLabelGroupCommand.d.ts +1 -0
- package/dist-types/commands/DeleteModelCommand.d.ts +1 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +1 -0
- package/dist-types/commands/DeleteRetrainingSchedulerCommand.d.ts +7 -4
- package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +1 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInferenceSchedulerCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLabelCommand.d.ts +1 -0
- package/dist-types/commands/DescribeLabelGroupCommand.d.ts +1 -0
- package/dist-types/commands/DescribeModelCommand.d.ts +1 -0
- package/dist-types/commands/DescribeModelVersionCommand.d.ts +1 -0
- package/dist-types/commands/DescribeResourcePolicyCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRetrainingSchedulerCommand.d.ts +13 -13
- package/dist-types/commands/ImportDatasetCommand.d.ts +1 -0
- package/dist-types/commands/ImportModelVersionCommand.d.ts +1 -0
- package/dist-types/commands/ListDataIngestionJobsCommand.d.ts +1 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +1 -0
- package/dist-types/commands/ListInferenceEventsCommand.d.ts +1 -0
- package/dist-types/commands/ListInferenceExecutionsCommand.d.ts +1 -0
- package/dist-types/commands/ListInferenceSchedulersCommand.d.ts +1 -0
- package/dist-types/commands/ListLabelGroupsCommand.d.ts +1 -0
- package/dist-types/commands/ListLabelsCommand.d.ts +1 -1
- package/dist-types/commands/ListModelVersionsCommand.d.ts +1 -0
- package/dist-types/commands/ListModelsCommand.d.ts +1 -0
- package/dist-types/commands/ListRetrainingSchedulersCommand.d.ts +23 -23
- package/dist-types/commands/ListSensorStatisticsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +1 -0
- package/dist-types/commands/StartDataIngestionJobCommand.d.ts +1 -0
- package/dist-types/commands/StartInferenceSchedulerCommand.d.ts +1 -0
- package/dist-types/commands/StartRetrainingSchedulerCommand.d.ts +7 -7
- package/dist-types/commands/StopInferenceSchedulerCommand.d.ts +1 -0
- package/dist-types/commands/StopRetrainingSchedulerCommand.d.ts +7 -7
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateActiveModelVersionCommand.d.ts +1 -0
- package/dist-types/commands/UpdateInferenceSchedulerCommand.d.ts +1 -0
- package/dist-types/commands/UpdateLabelGroupCommand.d.ts +1 -0
- package/dist-types/commands/UpdateModelCommand.d.ts +9 -6
- package/dist-types/commands/UpdateRetrainingSchedulerCommand.d.ts +9 -6
- package/package.json +33 -33
|
@@ -40,8 +40,6 @@ const defaultLookoutEquipmentHttpAuthSchemeProvider = (authParameters) => {
|
|
|
40
40
|
exports.defaultLookoutEquipmentHttpAuthSchemeProvider = defaultLookoutEquipmentHttpAuthSchemeProvider;
|
|
41
41
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
42
42
|
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
43
|
-
return {
|
|
44
|
-
...config_0,
|
|
45
|
-
};
|
|
43
|
+
return Object.assign(config_0, {});
|
|
46
44
|
};
|
|
47
45
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/index.js
CHANGED
|
@@ -128,12 +128,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
|
128
128
|
|
|
129
129
|
// src/endpoint/EndpointParameters.ts
|
|
130
130
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
131
|
-
return {
|
|
132
|
-
...options,
|
|
131
|
+
return Object.assign(options, {
|
|
133
132
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
134
133
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
135
134
|
defaultSigningName: "lookoutequipment"
|
|
136
|
-
};
|
|
135
|
+
});
|
|
137
136
|
}, "resolveClientEndpointParameters");
|
|
138
137
|
var commonParams = {
|
|
139
138
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -190,22 +189,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
|
190
189
|
}, "resolveHttpAuthRuntimeConfig");
|
|
191
190
|
|
|
192
191
|
// src/runtimeExtensions.ts
|
|
193
|
-
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
194
192
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
195
|
-
const extensionConfiguration =
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
193
|
+
const extensionConfiguration = Object.assign(
|
|
194
|
+
(0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
|
|
195
|
+
(0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
|
|
196
|
+
(0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
|
|
197
|
+
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
198
|
+
);
|
|
201
199
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
202
|
-
return
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
200
|
+
return Object.assign(
|
|
201
|
+
runtimeConfig,
|
|
202
|
+
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
203
|
+
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
204
|
+
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
205
|
+
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
206
|
+
);
|
|
209
207
|
}, "resolveRuntimeExtensions");
|
|
210
208
|
|
|
211
209
|
// src/LookoutEquipmentClient.ts
|
|
@@ -219,6 +217,8 @@ var LookoutEquipmentClient = class extends import_smithy_client.Client {
|
|
|
219
217
|
config;
|
|
220
218
|
constructor(...[configuration]) {
|
|
221
219
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
220
|
+
super(_config_0);
|
|
221
|
+
this.initConfig = _config_0;
|
|
222
222
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
223
223
|
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
224
224
|
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
@@ -227,7 +227,6 @@ var LookoutEquipmentClient = class extends import_smithy_client.Client {
|
|
|
227
227
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
228
228
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
229
229
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
230
|
-
super(_config_8);
|
|
231
230
|
this.config = _config_8;
|
|
232
231
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
233
232
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
@@ -17,6 +17,8 @@ export class LookoutEquipmentClient extends __Client {
|
|
|
17
17
|
config;
|
|
18
18
|
constructor(...[configuration]) {
|
|
19
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
20
|
+
super(_config_0);
|
|
21
|
+
this.initConfig = _config_0;
|
|
20
22
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
21
23
|
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
22
24
|
const _config_3 = resolveRetryConfig(_config_2);
|
|
@@ -25,7 +27,6 @@ export class LookoutEquipmentClient extends __Client {
|
|
|
25
27
|
const _config_6 = resolveEndpointConfig(_config_5);
|
|
26
28
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
27
29
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
28
|
-
super(_config_8);
|
|
29
30
|
this.config = _config_8;
|
|
30
31
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
31
32
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
@@ -35,7 +35,5 @@ export const defaultLookoutEquipmentHttpAuthSchemeProvider = (authParameters) =>
|
|
|
35
35
|
};
|
|
36
36
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
|
37
37
|
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
38
|
-
return {
|
|
39
|
-
...config_0,
|
|
40
|
-
};
|
|
38
|
+
return Object.assign(config_0, {});
|
|
41
39
|
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
export const resolveClientEndpointParameters = (options) => {
|
|
2
|
-
return {
|
|
3
|
-
...options,
|
|
2
|
+
return Object.assign(options, {
|
|
4
3
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
5
4
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
6
5
|
defaultSigningName: "lookoutequipment",
|
|
7
|
-
};
|
|
6
|
+
});
|
|
8
7
|
};
|
|
9
8
|
export const commonParams = {
|
|
10
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
|
|
|
2
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
3
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
4
4
|
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
-
const asPartial = (t) => t;
|
|
6
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
-
const extensionConfiguration =
|
|
8
|
-
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
9
|
-
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
10
|
-
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
11
|
-
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
|
|
12
|
-
};
|
|
6
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
13
7
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
14
|
-
return
|
|
15
|
-
...runtimeConfig,
|
|
16
|
-
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
17
|
-
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
18
|
-
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
19
|
-
...resolveHttpAuthRuntimeConfig(extensionConfiguration),
|
|
20
|
-
};
|
|
8
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
21
9
|
};
|
|
@@ -92,6 +92,7 @@ declare const CreateDatasetCommand_base: {
|
|
|
92
92
|
* @throws {@link LookoutEquipmentServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
94
94
|
*
|
|
95
|
+
*
|
|
95
96
|
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class CreateDatasetCommand extends CreateDatasetCommand_base {
|
|
@@ -117,6 +117,7 @@ declare const CreateInferenceSchedulerCommand_base: {
|
|
|
117
117
|
* @throws {@link LookoutEquipmentServiceException}
|
|
118
118
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
119
119
|
*
|
|
120
|
+
*
|
|
120
121
|
* @public
|
|
121
122
|
*/
|
|
122
123
|
export declare class CreateInferenceSchedulerCommand extends CreateInferenceSchedulerCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const CreateLabelCommand_base: {
|
|
|
87
87
|
* @throws {@link LookoutEquipmentServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class CreateLabelCommand extends CreateLabelCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const CreateLabelGroupCommand_base: {
|
|
|
87
87
|
* @throws {@link LookoutEquipmentServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class CreateLabelGroupCommand extends CreateLabelGroupCommand_base {
|
|
@@ -124,6 +124,7 @@ declare const CreateModelCommand_base: {
|
|
|
124
124
|
* @throws {@link LookoutEquipmentServiceException}
|
|
125
125
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
126
126
|
*
|
|
127
|
+
*
|
|
127
128
|
* @public
|
|
128
129
|
*/
|
|
129
130
|
export declare class CreateModelCommand extends CreateModelCommand_base {
|
|
@@ -84,51 +84,50 @@ declare const CreateRetrainingSchedulerCommand_base: {
|
|
|
84
84
|
* @throws {@link LookoutEquipmentServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
86
86
|
*
|
|
87
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example Creates a retraining scheduler with manual promote mode
|
|
89
89
|
* ```javascript
|
|
90
90
|
* //
|
|
91
91
|
* const input = {
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
*
|
|
92
|
+
* ClientToken: "sample-client-token",
|
|
93
|
+
* LookbackWindow: "P360D",
|
|
94
|
+
* ModelName: "sample-model",
|
|
95
|
+
* PromoteMode: "MANUAL",
|
|
96
|
+
* RetrainingFrequency: "P1M"
|
|
97
97
|
* };
|
|
98
98
|
* const command = new CreateRetrainingSchedulerCommand(input);
|
|
99
99
|
* const response = await client.send(command);
|
|
100
|
-
* /* response
|
|
100
|
+
* /* response is
|
|
101
101
|
* {
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
102
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
103
|
+
* ModelName: "sample-model",
|
|
104
|
+
* Status: "PENDING"
|
|
105
105
|
* }
|
|
106
106
|
* *\/
|
|
107
|
-
* // example id: creates-a-retraining-scheduler-with-manual-promote-mode-1694018486212
|
|
108
107
|
* ```
|
|
109
108
|
*
|
|
110
109
|
* @example Creates a retraining scheduler with a specific start date
|
|
111
110
|
* ```javascript
|
|
112
111
|
* //
|
|
113
112
|
* const input = {
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
113
|
+
* ClientToken: "sample-client-token",
|
|
114
|
+
* LookbackWindow: "P360D",
|
|
115
|
+
* ModelName: "sample-model",
|
|
116
|
+
* RetrainingFrequency: "P1M",
|
|
117
|
+
* RetrainingStartDate: "2024-01-01T00:00:00Z"
|
|
119
118
|
* };
|
|
120
119
|
* const command = new CreateRetrainingSchedulerCommand(input);
|
|
121
120
|
* const response = await client.send(command);
|
|
122
|
-
* /* response
|
|
121
|
+
* /* response is
|
|
123
122
|
* {
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
123
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
124
|
+
* ModelName: "sample-model",
|
|
125
|
+
* Status: "PENDING"
|
|
127
126
|
* }
|
|
128
127
|
* *\/
|
|
129
|
-
* // example id: creates-a-retraining-scheduler-with-a-specific-start-date-1694018790519
|
|
130
128
|
* ```
|
|
131
129
|
*
|
|
130
|
+
* @public
|
|
132
131
|
*/
|
|
133
132
|
export declare class CreateRetrainingSchedulerCommand extends CreateRetrainingSchedulerCommand_base {
|
|
134
133
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -79,6 +79,7 @@ declare const DeleteDatasetCommand_base: {
|
|
|
79
79
|
* @throws {@link LookoutEquipmentServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class DeleteDatasetCommand extends DeleteDatasetCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const DeleteInferenceSchedulerCommand_base: {
|
|
|
76
76
|
* @throws {@link LookoutEquipmentServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteInferenceSchedulerCommand extends DeleteInferenceSchedulerCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const DeleteLabelCommand_base: {
|
|
|
76
76
|
* @throws {@link LookoutEquipmentServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteLabelCommand extends DeleteLabelCommand_base {
|
|
@@ -75,6 +75,7 @@ declare const DeleteLabelGroupCommand_base: {
|
|
|
75
75
|
* @throws {@link LookoutEquipmentServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class DeleteLabelGroupCommand extends DeleteLabelGroupCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const DeleteModelCommand_base: {
|
|
|
76
76
|
* @throws {@link LookoutEquipmentServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DeleteModelCommand extends DeleteModelCommand_base {
|
|
@@ -75,6 +75,7 @@ declare const DeleteResourcePolicyCommand_base: {
|
|
|
75
75
|
* @throws {@link LookoutEquipmentServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
77
77
|
*
|
|
78
|
+
*
|
|
78
79
|
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class DeleteResourcePolicyCommand extends DeleteResourcePolicyCommand_base {
|
|
@@ -76,18 +76,21 @@ declare const DeleteRetrainingSchedulerCommand_base: {
|
|
|
76
76
|
* @throws {@link LookoutEquipmentServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
78
78
|
*
|
|
79
|
-
*
|
|
79
|
+
*
|
|
80
80
|
* @example Deletes a retraining scheduler
|
|
81
81
|
* ```javascript
|
|
82
82
|
* //
|
|
83
83
|
* const input = {
|
|
84
|
-
*
|
|
84
|
+
* ModelName: "sample-model"
|
|
85
85
|
* };
|
|
86
86
|
* const command = new DeleteRetrainingSchedulerCommand(input);
|
|
87
|
-
* await client.send(command);
|
|
88
|
-
*
|
|
87
|
+
* const response = await client.send(command);
|
|
88
|
+
* /* response is
|
|
89
|
+
* { /* metadata only *\/ }
|
|
90
|
+
* *\/
|
|
89
91
|
* ```
|
|
90
92
|
*
|
|
93
|
+
* @public
|
|
91
94
|
*/
|
|
92
95
|
export declare class DeleteRetrainingSchedulerCommand extends DeleteRetrainingSchedulerCommand_base {
|
|
93
96
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -125,6 +125,7 @@ declare const DescribeDataIngestionJobCommand_base: {
|
|
|
125
125
|
* @throws {@link LookoutEquipmentServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
127
127
|
*
|
|
128
|
+
*
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class DescribeDataIngestionJobCommand extends DescribeDataIngestionJobCommand_base {
|
|
@@ -125,6 +125,7 @@ declare const DescribeDatasetCommand_base: {
|
|
|
125
125
|
* @throws {@link LookoutEquipmentServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
127
127
|
*
|
|
128
|
+
*
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class DescribeDatasetCommand extends DescribeDatasetCommand_base {
|
|
@@ -103,6 +103,7 @@ declare const DescribeInferenceSchedulerCommand_base: {
|
|
|
103
103
|
* @throws {@link LookoutEquipmentServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
105
105
|
*
|
|
106
|
+
*
|
|
106
107
|
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class DescribeInferenceSchedulerCommand extends DescribeInferenceSchedulerCommand_base {
|
|
@@ -83,6 +83,7 @@ declare const DescribeLabelCommand_base: {
|
|
|
83
83
|
* @throws {@link LookoutEquipmentServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
85
85
|
*
|
|
86
|
+
*
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class DescribeLabelCommand extends DescribeLabelCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const DescribeLabelGroupCommand_base: {
|
|
|
79
79
|
* @throws {@link LookoutEquipmentServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class DescribeLabelGroupCommand extends DescribeLabelGroupCommand_base {
|
|
@@ -130,6 +130,7 @@ declare const DescribeModelCommand_base: {
|
|
|
130
130
|
* @throws {@link LookoutEquipmentServiceException}
|
|
131
131
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
132
132
|
*
|
|
133
|
+
*
|
|
133
134
|
* @public
|
|
134
135
|
*/
|
|
135
136
|
export declare class DescribeModelCommand extends DescribeModelCommand_base {
|
|
@@ -125,6 +125,7 @@ declare const DescribeModelVersionCommand_base: {
|
|
|
125
125
|
* @throws {@link LookoutEquipmentServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
127
127
|
*
|
|
128
|
+
*
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class DescribeModelVersionCommand extends DescribeModelVersionCommand_base {
|
|
@@ -76,6 +76,7 @@ declare const DescribeResourcePolicyCommand_base: {
|
|
|
76
76
|
* @throws {@link LookoutEquipmentServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
78
78
|
*
|
|
79
|
+
*
|
|
79
80
|
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class DescribeResourcePolicyCommand extends DescribeResourcePolicyCommand_base {
|
|
@@ -82,31 +82,31 @@ declare const DescribeRetrainingSchedulerCommand_base: {
|
|
|
82
82
|
* @throws {@link LookoutEquipmentServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example Describes a retraining scheduler
|
|
87
87
|
* ```javascript
|
|
88
88
|
* //
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
90
|
+
* ModelName: "sample-model"
|
|
91
91
|
* };
|
|
92
92
|
* const command = new DescribeRetrainingSchedulerCommand(input);
|
|
93
93
|
* const response = await client.send(command);
|
|
94
|
-
* /* response
|
|
94
|
+
* /* response is
|
|
95
95
|
* {
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
96
|
+
* CreatedAt: "2023-10-01T15:00:00Z",
|
|
97
|
+
* LookbackWindow: "P360D",
|
|
98
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
99
|
+
* ModelName: "sample-model",
|
|
100
|
+
* PromoteMode: "MANAGED",
|
|
101
|
+
* RetrainingFrequency: "P1M",
|
|
102
|
+
* RetrainingStartDate: "2023-11-01T00:00:00Z",
|
|
103
|
+
* Status: "RUNNING",
|
|
104
|
+
* UpdatedAt: "2023-10-01T15:00:00Z"
|
|
105
105
|
* }
|
|
106
106
|
* *\/
|
|
107
|
-
* // example id: describes-a-retraining-scheduler-1694019344252
|
|
108
107
|
* ```
|
|
109
108
|
*
|
|
109
|
+
* @public
|
|
110
110
|
*/
|
|
111
111
|
export declare class DescribeRetrainingSchedulerCommand extends DescribeRetrainingSchedulerCommand_base {
|
|
112
112
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -92,6 +92,7 @@ declare const ImportDatasetCommand_base: {
|
|
|
92
92
|
* @throws {@link LookoutEquipmentServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
94
94
|
*
|
|
95
|
+
*
|
|
95
96
|
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class ImportDatasetCommand extends ImportDatasetCommand_base {
|
|
@@ -103,6 +103,7 @@ declare const ImportModelVersionCommand_base: {
|
|
|
103
103
|
* @throws {@link LookoutEquipmentServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
105
105
|
*
|
|
106
|
+
*
|
|
106
107
|
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class ImportModelVersionCommand extends ImportModelVersionCommand_base {
|
|
@@ -88,6 +88,7 @@ declare const ListDataIngestionJobsCommand_base: {
|
|
|
88
88
|
* @throws {@link LookoutEquipmentServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
90
90
|
*
|
|
91
|
+
*
|
|
91
92
|
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class ListDataIngestionJobsCommand extends ListDataIngestionJobsCommand_base {
|
|
@@ -80,6 +80,7 @@ declare const ListDatasetsCommand_base: {
|
|
|
80
80
|
* @throws {@link LookoutEquipmentServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
82
82
|
*
|
|
83
|
+
*
|
|
83
84
|
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class ListDatasetsCommand extends ListDatasetsCommand_base {
|
|
@@ -88,6 +88,7 @@ declare const ListInferenceEventsCommand_base: {
|
|
|
88
88
|
* @throws {@link LookoutEquipmentServiceException}
|
|
89
89
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
90
90
|
*
|
|
91
|
+
*
|
|
91
92
|
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class ListInferenceEventsCommand extends ListInferenceEventsCommand_base {
|
|
@@ -116,6 +116,7 @@ declare const ListInferenceExecutionsCommand_base: {
|
|
|
116
116
|
* @throws {@link LookoutEquipmentServiceException}
|
|
117
117
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
118
118
|
*
|
|
119
|
+
*
|
|
119
120
|
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class ListInferenceExecutionsCommand extends ListInferenceExecutionsCommand_base {
|
|
@@ -86,6 +86,7 @@ declare const ListInferenceSchedulersCommand_base: {
|
|
|
86
86
|
* @throws {@link LookoutEquipmentServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
88
88
|
*
|
|
89
|
+
*
|
|
89
90
|
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListInferenceSchedulersCommand extends ListInferenceSchedulersCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const ListLabelGroupsCommand_base: {
|
|
|
79
79
|
* @throws {@link LookoutEquipmentServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class ListLabelGroupsCommand extends ListLabelGroupsCommand_base {
|
|
@@ -24,7 +24,6 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
|
|
|
24
24
|
declare const ListLabelsCommand_base: {
|
|
25
25
|
new (input: ListLabelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLabelsCommandInput, ListLabelsCommandOutput, LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
26
|
new (__0_0: ListLabelsCommandInput): import("@smithy/smithy-client").CommandImpl<ListLabelsCommandInput, ListLabelsCommandOutput, LookoutEquipmentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
/** @internal type navigation helper, not in runtime. */
|
|
28
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
28
|
};
|
|
30
29
|
/**
|
|
@@ -89,6 +88,7 @@ declare const ListLabelsCommand_base: {
|
|
|
89
88
|
* @throws {@link LookoutEquipmentServiceException}
|
|
90
89
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
91
90
|
*
|
|
91
|
+
*
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
94
|
export declare class ListLabelsCommand extends ListLabelsCommand_base {
|
|
@@ -95,6 +95,7 @@ declare const ListModelVersionsCommand_base: {
|
|
|
95
95
|
* @throws {@link LookoutEquipmentServiceException}
|
|
96
96
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
97
97
|
*
|
|
98
|
+
*
|
|
98
99
|
* @public
|
|
99
100
|
*/
|
|
100
101
|
export declare class ListModelVersionsCommand extends ListModelVersionsCommand_base {
|
|
@@ -99,6 +99,7 @@ declare const ListModelsCommand_base: {
|
|
|
99
99
|
* @throws {@link LookoutEquipmentServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
101
101
|
*
|
|
102
|
+
*
|
|
102
103
|
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class ListModelsCommand extends ListModelsCommand_base {
|
|
@@ -83,48 +83,48 @@ declare const ListRetrainingSchedulersCommand_base: {
|
|
|
83
83
|
* @throws {@link LookoutEquipmentServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
85
85
|
*
|
|
86
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* @example Listing retraining schedulers
|
|
88
88
|
* ```javascript
|
|
89
89
|
* //
|
|
90
90
|
* const input = {
|
|
91
|
-
*
|
|
91
|
+
* MaxResults: 50
|
|
92
92
|
* };
|
|
93
93
|
* const command = new ListRetrainingSchedulersCommand(input);
|
|
94
94
|
* const response = await client.send(command);
|
|
95
|
-
* /* response
|
|
95
|
+
* /* response is
|
|
96
96
|
* {
|
|
97
|
-
*
|
|
97
|
+
* RetrainingSchedulerSummaries: [
|
|
98
98
|
* {
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
99
|
+
* LookbackWindow: "P180D",
|
|
100
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-1/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
101
|
+
* ModelName: "sample-model-1",
|
|
102
|
+
* RetrainingFrequency: "P1M",
|
|
103
|
+
* RetrainingStartDate: "2023-06-01T00:00:00Z",
|
|
104
|
+
* Status: "RUNNING"
|
|
105
105
|
* },
|
|
106
106
|
* {
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
107
|
+
* LookbackWindow: "P180D",
|
|
108
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-2/a1b2c3d4-5678-90ab-cdef-EXAMPLE22222",
|
|
109
|
+
* ModelName: "sample-model-2",
|
|
110
|
+
* RetrainingFrequency: "P30D",
|
|
111
|
+
* RetrainingStartDate: "2023-08-15T00:00:00Z",
|
|
112
|
+
* Status: "RUNNING"
|
|
113
113
|
* },
|
|
114
114
|
* {
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
*
|
|
115
|
+
* LookbackWindow: "P360D",
|
|
116
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model-3/a1b2c3d4-5678-90ab-cdef-EXAMPLE33333",
|
|
117
|
+
* ModelName: "sample-model-3",
|
|
118
|
+
* RetrainingFrequency: "P1M",
|
|
119
|
+
* RetrainingStartDate: "2023-09-01T00:00:00Z",
|
|
120
|
+
* Status: "STOPPED"
|
|
121
121
|
* }
|
|
122
122
|
* ]
|
|
123
123
|
* }
|
|
124
124
|
* *\/
|
|
125
|
-
* // example id: listing-retraining-schedulers-1694016740503
|
|
126
125
|
* ```
|
|
127
126
|
*
|
|
127
|
+
* @public
|
|
128
128
|
*/
|
|
129
129
|
export declare class ListRetrainingSchedulersCommand extends ListRetrainingSchedulersCommand_base {
|
|
130
130
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -119,6 +119,7 @@ declare const ListSensorStatisticsCommand_base: {
|
|
|
119
119
|
* @throws {@link LookoutEquipmentServiceException}
|
|
120
120
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
121
121
|
*
|
|
122
|
+
*
|
|
122
123
|
* @public
|
|
123
124
|
*/
|
|
124
125
|
export declare class ListSensorStatisticsCommand extends ListSensorStatisticsCommand_base {
|
|
@@ -78,6 +78,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
78
78
|
* @throws {@link LookoutEquipmentServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
80
80
|
*
|
|
81
|
+
*
|
|
81
82
|
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const PutResourcePolicyCommand_base: {
|
|
|
84
84
|
* @throws {@link LookoutEquipmentServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class PutResourcePolicyCommand extends PutResourcePolicyCommand_base {
|
|
@@ -90,6 +90,7 @@ declare const StartDataIngestionJobCommand_base: {
|
|
|
90
90
|
* @throws {@link LookoutEquipmentServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
92
92
|
*
|
|
93
|
+
*
|
|
93
94
|
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class StartDataIngestionJobCommand extends StartDataIngestionJobCommand_base {
|
|
@@ -81,6 +81,7 @@ declare const StartInferenceSchedulerCommand_base: {
|
|
|
81
81
|
* @throws {@link LookoutEquipmentServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
83
83
|
*
|
|
84
|
+
*
|
|
84
85
|
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class StartInferenceSchedulerCommand extends StartInferenceSchedulerCommand_base {
|
|
@@ -79,25 +79,25 @@ declare const StartRetrainingSchedulerCommand_base: {
|
|
|
79
79
|
* @throws {@link LookoutEquipmentServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
81
81
|
*
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @example Starts a retraining scheduler
|
|
84
84
|
* ```javascript
|
|
85
85
|
* //
|
|
86
86
|
* const input = {
|
|
87
|
-
*
|
|
87
|
+
* ModelName: "sample-model"
|
|
88
88
|
* };
|
|
89
89
|
* const command = new StartRetrainingSchedulerCommand(input);
|
|
90
90
|
* const response = await client.send(command);
|
|
91
|
-
* /* response
|
|
91
|
+
* /* response is
|
|
92
92
|
* {
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
93
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
94
|
+
* ModelName: "sample-model",
|
|
95
|
+
* Status: "PENDING"
|
|
96
96
|
* }
|
|
97
97
|
* *\/
|
|
98
|
-
* // example id: starts-a-retraining-scheduler-1694019629413
|
|
99
98
|
* ```
|
|
100
99
|
*
|
|
100
|
+
* @public
|
|
101
101
|
*/
|
|
102
102
|
export declare class StartRetrainingSchedulerCommand extends StartRetrainingSchedulerCommand_base {
|
|
103
103
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -81,6 +81,7 @@ declare const StopInferenceSchedulerCommand_base: {
|
|
|
81
81
|
* @throws {@link LookoutEquipmentServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
83
83
|
*
|
|
84
|
+
*
|
|
84
85
|
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class StopInferenceSchedulerCommand extends StopInferenceSchedulerCommand_base {
|
|
@@ -79,25 +79,25 @@ declare const StopRetrainingSchedulerCommand_base: {
|
|
|
79
79
|
* @throws {@link LookoutEquipmentServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
81
81
|
*
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @example Stops a retraining scheduler
|
|
84
84
|
* ```javascript
|
|
85
85
|
* //
|
|
86
86
|
* const input = {
|
|
87
|
-
*
|
|
87
|
+
* ModelName: "sample-model"
|
|
88
88
|
* };
|
|
89
89
|
* const command = new StopRetrainingSchedulerCommand(input);
|
|
90
90
|
* const response = await client.send(command);
|
|
91
|
-
* /* response
|
|
91
|
+
* /* response is
|
|
92
92
|
* {
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
93
|
+
* ModelArn: "arn:aws:lookoutequipment:us-east-1:123456789012:model/sample-model/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111",
|
|
94
|
+
* ModelName: "sample-model",
|
|
95
|
+
* Status: "STOPPING"
|
|
96
96
|
* }
|
|
97
97
|
* *\/
|
|
98
|
-
* // example id: stops-a-retraining-scheduler-1694019734149
|
|
99
98
|
* ```
|
|
100
99
|
*
|
|
100
|
+
* @public
|
|
101
101
|
*/
|
|
102
102
|
export declare class StopRetrainingSchedulerCommand extends StopRetrainingSchedulerCommand_base {
|
|
103
103
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -84,6 +84,7 @@ declare const TagResourceCommand_base: {
|
|
|
84
84
|
* @throws {@link LookoutEquipmentServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
@@ -74,6 +74,7 @@ declare const UntagResourceCommand_base: {
|
|
|
74
74
|
* @throws {@link LookoutEquipmentServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
76
76
|
*
|
|
77
|
+
*
|
|
77
78
|
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
@@ -83,6 +83,7 @@ declare const UpdateActiveModelVersionCommand_base: {
|
|
|
83
83
|
* @throws {@link LookoutEquipmentServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
85
85
|
*
|
|
86
|
+
*
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class UpdateActiveModelVersionCommand extends UpdateActiveModelVersionCommand_base {
|
|
@@ -96,6 +96,7 @@ declare const UpdateInferenceSchedulerCommand_base: {
|
|
|
96
96
|
* @throws {@link LookoutEquipmentServiceException}
|
|
97
97
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
98
98
|
*
|
|
99
|
+
*
|
|
99
100
|
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class UpdateInferenceSchedulerCommand extends UpdateInferenceSchedulerCommand_base {
|
|
@@ -78,6 +78,7 @@ declare const UpdateLabelGroupCommand_base: {
|
|
|
78
78
|
* @throws {@link LookoutEquipmentServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
80
80
|
*
|
|
81
|
+
*
|
|
81
82
|
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class UpdateLabelGroupCommand extends UpdateLabelGroupCommand_base {
|
|
@@ -90,21 +90,24 @@ declare const UpdateModelCommand_base: {
|
|
|
90
90
|
* @throws {@link LookoutEquipmentServiceException}
|
|
91
91
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
92
92
|
*
|
|
93
|
-
*
|
|
93
|
+
*
|
|
94
94
|
* @example Updates a model
|
|
95
95
|
* ```javascript
|
|
96
96
|
* //
|
|
97
97
|
* const input = {
|
|
98
|
-
*
|
|
99
|
-
*
|
|
98
|
+
* LabelsInputConfiguration: {
|
|
99
|
+
* LabelGroupName: "sample-label-group"
|
|
100
100
|
* },
|
|
101
|
-
*
|
|
101
|
+
* ModelName: "sample-model"
|
|
102
102
|
* };
|
|
103
103
|
* const command = new UpdateModelCommand(input);
|
|
104
|
-
* await client.send(command);
|
|
105
|
-
*
|
|
104
|
+
* const response = await client.send(command);
|
|
105
|
+
* /* response is
|
|
106
|
+
* { /* metadata only *\/ }
|
|
107
|
+
* *\/
|
|
106
108
|
* ```
|
|
107
109
|
*
|
|
110
|
+
* @public
|
|
108
111
|
*/
|
|
109
112
|
export declare class UpdateModelCommand extends UpdateModelCommand_base {
|
|
110
113
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -79,20 +79,23 @@ declare const UpdateRetrainingSchedulerCommand_base: {
|
|
|
79
79
|
* @throws {@link LookoutEquipmentServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
|
|
81
81
|
*
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @example Updates a retraining scheduler
|
|
84
84
|
* ```javascript
|
|
85
85
|
* //
|
|
86
86
|
* const input = {
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
87
|
+
* ModelName: "sample-model",
|
|
88
|
+
* RetrainingFrequency: "P1Y",
|
|
89
|
+
* RetrainingStartDate: "2024-01-01T00:00:00Z"
|
|
90
90
|
* };
|
|
91
91
|
* const command = new UpdateRetrainingSchedulerCommand(input);
|
|
92
|
-
* await client.send(command);
|
|
93
|
-
*
|
|
92
|
+
* const response = await client.send(command);
|
|
93
|
+
* /* response is
|
|
94
|
+
* { /* metadata only *\/ }
|
|
95
|
+
* *\/
|
|
94
96
|
* ```
|
|
95
97
|
*
|
|
98
|
+
* @public
|
|
96
99
|
*/
|
|
97
100
|
export declare class UpdateRetrainingSchedulerCommand extends UpdateRetrainingSchedulerCommand_base {
|
|
98
101
|
/** @internal type navigation helper, not in runtime. */
|
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.
|
|
4
|
+
"version": "3.777.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-lookoutequipment",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.0
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0
|
|
41
|
-
"@smithy/middleware-retry": "^4.0
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.0.
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
46
|
-
"@smithy/protocol-http": "^5.0
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.775.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.775.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
|
+
"@aws-sdk/types": "3.775.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.775.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.0",
|
|
35
|
+
"@smithy/core": "^3.2.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.2",
|
|
37
|
+
"@smithy/hash-node": "^4.0.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.2",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.2",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.0",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.0",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.3",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.2",
|
|
44
|
+
"@smithy/node-config-provider": "^4.0.2",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.4",
|
|
46
|
+
"@smithy/protocol-http": "^5.1.0",
|
|
47
|
+
"@smithy/smithy-client": "^4.2.0",
|
|
48
|
+
"@smithy/types": "^4.2.0",
|
|
49
|
+
"@smithy/url-parser": "^4.0.2",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.2",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.2",
|
|
57
|
+
"@smithy/util-retry": "^4.0.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
59
|
"@types/uuid": "^9.0.1",
|
|
60
60
|
"tslib": "^2.6.2",
|