@aws-sdk/client-iottwinmaker 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/IoTTwinMakerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +134 -2
- package/dist-cjs/protocols/Aws_restJson1.js +320 -1120
- package/dist-es/index.js +1 -0
- package/dist-es/models/IoTTwinMakerServiceException.js +12 -0
- package/dist-es/models/models_0.js +122 -1
- package/dist-es/protocols/Aws_restJson1.js +638 -1236
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/IoTTwinMakerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +72 -41
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/IoTTwinMakerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +52 -41
- package/package.json +25 -25
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from IoTTwinMaker service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class IoTTwinMakerServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>Access is denied.</p>
|
|
4
5
|
*/
|
|
5
|
-
export
|
|
6
|
-
name: "AccessDeniedException";
|
|
7
|
-
$fault: "client";
|
|
8
|
-
|
|
6
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
7
|
+
readonly name: "AccessDeniedException";
|
|
8
|
+
readonly $fault: "client";
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
9
13
|
}
|
|
10
14
|
/**
|
|
11
15
|
* <p>An object that uniquely identifies an entity property.</p>
|
|
@@ -58,42 +62,57 @@ export declare namespace RelationshipValue {
|
|
|
58
62
|
/**
|
|
59
63
|
* <p>An unexpected error has occurred.</p>
|
|
60
64
|
*/
|
|
61
|
-
export
|
|
62
|
-
name: "InternalServerException";
|
|
63
|
-
$fault: "server";
|
|
64
|
-
|
|
65
|
+
export declare class InternalServerException extends __BaseException {
|
|
66
|
+
readonly name: "InternalServerException";
|
|
67
|
+
readonly $fault: "server";
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
71
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
65
72
|
}
|
|
66
73
|
/**
|
|
67
74
|
* <p>The resource wasn't found.</p>
|
|
68
75
|
*/
|
|
69
|
-
export
|
|
70
|
-
name: "ResourceNotFoundException";
|
|
71
|
-
$fault: "client";
|
|
72
|
-
|
|
76
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
77
|
+
readonly name: "ResourceNotFoundException";
|
|
78
|
+
readonly $fault: "client";
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
73
83
|
}
|
|
74
84
|
/**
|
|
75
85
|
* <p>The rate exceeds the limit.</p>
|
|
76
86
|
*/
|
|
77
|
-
export
|
|
78
|
-
name: "ThrottlingException";
|
|
79
|
-
$fault: "client";
|
|
80
|
-
|
|
87
|
+
export declare class ThrottlingException extends __BaseException {
|
|
88
|
+
readonly name: "ThrottlingException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
81
94
|
}
|
|
82
95
|
/**
|
|
83
96
|
* <p>Failed</p>
|
|
84
97
|
*/
|
|
85
|
-
export
|
|
86
|
-
name: "ValidationException";
|
|
87
|
-
$fault: "client";
|
|
88
|
-
|
|
98
|
+
export declare class ValidationException extends __BaseException {
|
|
99
|
+
readonly name: "ValidationException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
104
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
89
105
|
}
|
|
90
106
|
/**
|
|
91
107
|
* <p>A conflict occurred.</p>
|
|
92
108
|
*/
|
|
93
|
-
export
|
|
94
|
-
name: "ConflictException";
|
|
95
|
-
$fault: "client";
|
|
96
|
-
|
|
109
|
+
export declare class ConflictException extends __BaseException {
|
|
110
|
+
readonly name: "ConflictException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
115
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
97
116
|
}
|
|
98
117
|
/**
|
|
99
118
|
* <p>The Lambda function.</p>
|
|
@@ -215,10 +234,13 @@ export declare namespace CreateComponentTypeResponse {
|
|
|
215
234
|
/**
|
|
216
235
|
* <p>The service quota was exceeded.</p>
|
|
217
236
|
*/
|
|
218
|
-
export
|
|
219
|
-
name: "ServiceQuotaExceededException";
|
|
220
|
-
$fault: "client";
|
|
221
|
-
|
|
237
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
238
|
+
readonly name: "ServiceQuotaExceededException";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
/**
|
|
241
|
+
* @internal
|
|
242
|
+
*/
|
|
243
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
222
244
|
}
|
|
223
245
|
export declare enum PropertyUpdateType {
|
|
224
246
|
DELETE = "DELETE",
|
|
@@ -552,18 +574,24 @@ export declare namespace GetEntityRequest {
|
|
|
552
574
|
/**
|
|
553
575
|
* <p>The connector failed.</p>
|
|
554
576
|
*/
|
|
555
|
-
export
|
|
556
|
-
name: "ConnectorFailureException";
|
|
557
|
-
$fault: "client";
|
|
558
|
-
|
|
577
|
+
export declare class ConnectorFailureException extends __BaseException {
|
|
578
|
+
readonly name: "ConnectorFailureException";
|
|
579
|
+
readonly $fault: "client";
|
|
580
|
+
/**
|
|
581
|
+
* @internal
|
|
582
|
+
*/
|
|
583
|
+
constructor(opts: __ExceptionOptionType<ConnectorFailureException, __BaseException>);
|
|
559
584
|
}
|
|
560
585
|
/**
|
|
561
586
|
* <p>The connector timed out.</p>
|
|
562
587
|
*/
|
|
563
|
-
export
|
|
564
|
-
name: "ConnectorTimeoutException";
|
|
565
|
-
$fault: "client";
|
|
566
|
-
|
|
588
|
+
export declare class ConnectorTimeoutException extends __BaseException {
|
|
589
|
+
readonly name: "ConnectorTimeoutException";
|
|
590
|
+
readonly $fault: "client";
|
|
591
|
+
/**
|
|
592
|
+
* @internal
|
|
593
|
+
*/
|
|
594
|
+
constructor(opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>);
|
|
567
595
|
}
|
|
568
596
|
export interface GetPropertyValueRequest {
|
|
569
597
|
/**
|
|
@@ -1181,10 +1209,13 @@ export declare namespace TagResourceResponse {
|
|
|
1181
1209
|
/**
|
|
1182
1210
|
* <p>The number of tags exceeds the limit.</p>
|
|
1183
1211
|
*/
|
|
1184
|
-
export
|
|
1185
|
-
name: "TooManyTagsException";
|
|
1186
|
-
$fault: "client";
|
|
1187
|
-
|
|
1212
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
1213
|
+
readonly name: "TooManyTagsException";
|
|
1214
|
+
readonly $fault: "client";
|
|
1215
|
+
/**
|
|
1216
|
+
* @internal
|
|
1217
|
+
*/
|
|
1218
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1188
1219
|
}
|
|
1189
1220
|
export interface UntagResourceRequest {
|
|
1190
1221
|
/**
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class IoTTwinMakerServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { IoTTwinMakerServiceException as __BaseException } from "./IoTTwinMakerServiceException";
|
|
2
3
|
|
|
3
|
-
export
|
|
4
|
-
name: "AccessDeniedException";
|
|
5
|
-
$fault: "client";
|
|
6
|
-
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
|
|
8
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
7
9
|
}
|
|
8
10
|
|
|
9
11
|
export interface EntityPropertyReference {
|
|
@@ -34,34 +36,39 @@ export declare namespace RelationshipValue {
|
|
|
34
36
|
const filterSensitiveLog: (obj: RelationshipValue) => any;
|
|
35
37
|
}
|
|
36
38
|
|
|
37
|
-
export
|
|
38
|
-
name: "InternalServerException";
|
|
39
|
-
$fault: "server";
|
|
40
|
-
|
|
39
|
+
export declare class InternalServerException extends __BaseException {
|
|
40
|
+
readonly name: "InternalServerException";
|
|
41
|
+
readonly $fault: "server";
|
|
42
|
+
|
|
43
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
41
44
|
}
|
|
42
45
|
|
|
43
|
-
export
|
|
44
|
-
name: "ResourceNotFoundException";
|
|
45
|
-
$fault: "client";
|
|
46
|
-
|
|
46
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
47
|
+
readonly name: "ResourceNotFoundException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
|
|
50
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
47
51
|
}
|
|
48
52
|
|
|
49
|
-
export
|
|
50
|
-
name: "ThrottlingException";
|
|
51
|
-
$fault: "client";
|
|
52
|
-
|
|
53
|
+
export declare class ThrottlingException extends __BaseException {
|
|
54
|
+
readonly name: "ThrottlingException";
|
|
55
|
+
readonly $fault: "client";
|
|
56
|
+
|
|
57
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
53
58
|
}
|
|
54
59
|
|
|
55
|
-
export
|
|
56
|
-
name: "ValidationException";
|
|
57
|
-
$fault: "client";
|
|
58
|
-
|
|
60
|
+
export declare class ValidationException extends __BaseException {
|
|
61
|
+
readonly name: "ValidationException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
|
|
64
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
59
65
|
}
|
|
60
66
|
|
|
61
|
-
export
|
|
62
|
-
name: "ConflictException";
|
|
63
|
-
$fault: "client";
|
|
64
|
-
|
|
67
|
+
export declare class ConflictException extends __BaseException {
|
|
68
|
+
readonly name: "ConflictException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
|
|
71
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
65
72
|
}
|
|
66
73
|
|
|
67
74
|
export interface LambdaFunction {
|
|
@@ -141,10 +148,11 @@ export declare namespace CreateComponentTypeResponse {
|
|
|
141
148
|
const filterSensitiveLog: (obj: CreateComponentTypeResponse) => any;
|
|
142
149
|
}
|
|
143
150
|
|
|
144
|
-
export
|
|
145
|
-
name: "ServiceQuotaExceededException";
|
|
146
|
-
$fault: "client";
|
|
147
|
-
|
|
151
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
152
|
+
readonly name: "ServiceQuotaExceededException";
|
|
153
|
+
readonly $fault: "client";
|
|
154
|
+
|
|
155
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
148
156
|
}
|
|
149
157
|
export declare enum PropertyUpdateType {
|
|
150
158
|
DELETE = "DELETE",
|
|
@@ -352,16 +360,18 @@ export declare namespace GetEntityRequest {
|
|
|
352
360
|
const filterSensitiveLog: (obj: GetEntityRequest) => any;
|
|
353
361
|
}
|
|
354
362
|
|
|
355
|
-
export
|
|
356
|
-
name: "ConnectorFailureException";
|
|
357
|
-
$fault: "client";
|
|
358
|
-
|
|
363
|
+
export declare class ConnectorFailureException extends __BaseException {
|
|
364
|
+
readonly name: "ConnectorFailureException";
|
|
365
|
+
readonly $fault: "client";
|
|
366
|
+
|
|
367
|
+
constructor(opts: __ExceptionOptionType<ConnectorFailureException, __BaseException>);
|
|
359
368
|
}
|
|
360
369
|
|
|
361
|
-
export
|
|
362
|
-
name: "ConnectorTimeoutException";
|
|
363
|
-
$fault: "client";
|
|
364
|
-
|
|
370
|
+
export declare class ConnectorTimeoutException extends __BaseException {
|
|
371
|
+
readonly name: "ConnectorTimeoutException";
|
|
372
|
+
readonly $fault: "client";
|
|
373
|
+
|
|
374
|
+
constructor(opts: __ExceptionOptionType<ConnectorTimeoutException, __BaseException>);
|
|
365
375
|
}
|
|
366
376
|
export interface GetPropertyValueRequest {
|
|
367
377
|
|
|
@@ -749,10 +759,11 @@ export declare namespace TagResourceResponse {
|
|
|
749
759
|
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
750
760
|
}
|
|
751
761
|
|
|
752
|
-
export
|
|
753
|
-
name: "TooManyTagsException";
|
|
754
|
-
$fault: "client";
|
|
755
|
-
|
|
762
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
763
|
+
readonly name: "TooManyTagsException";
|
|
764
|
+
readonly $fault: "client";
|
|
765
|
+
|
|
766
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
756
767
|
}
|
|
757
768
|
export interface UntagResourceRequest {
|
|
758
769
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iottwinmaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iottwinmaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.53.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",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
39
|
+
"@aws-sdk/types": "3.53.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|