@aws-sdk/client-iotthingsgraph 3.934.0 → 3.936.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/index.js +85 -84
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +84 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -169
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +188 -0
- package/dist-types/models/errors.d.ts +86 -0
- package/dist-types/models/models_0.d.ts +1 -274
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +108 -0
- package/dist-types/ts3.4/models/errors.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +15 -159
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
export declare const DefinitionLanguage: {
|
|
2
|
+
readonly GRAPHQL: "GRAPHQL";
|
|
3
|
+
};
|
|
4
|
+
export type DefinitionLanguage =
|
|
5
|
+
(typeof DefinitionLanguage)[keyof typeof DefinitionLanguage];
|
|
6
|
+
export declare const DeploymentTarget: {
|
|
7
|
+
readonly CLOUD: "CLOUD";
|
|
8
|
+
readonly GREENGRASS: "GREENGRASS";
|
|
9
|
+
};
|
|
10
|
+
export type DeploymentTarget =
|
|
11
|
+
(typeof DeploymentTarget)[keyof typeof DeploymentTarget];
|
|
12
|
+
export declare const SystemInstanceDeploymentStatus: {
|
|
13
|
+
readonly BOOTSTRAP: "BOOTSTRAP";
|
|
14
|
+
readonly DELETED_IN_TARGET: "DELETED_IN_TARGET";
|
|
15
|
+
readonly DEPLOYED_IN_TARGET: "DEPLOYED_IN_TARGET";
|
|
16
|
+
readonly DEPLOY_IN_PROGRESS: "DEPLOY_IN_PROGRESS";
|
|
17
|
+
readonly FAILED: "FAILED";
|
|
18
|
+
readonly NOT_DEPLOYED: "NOT_DEPLOYED";
|
|
19
|
+
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
20
|
+
readonly UNDEPLOY_IN_PROGRESS: "UNDEPLOY_IN_PROGRESS";
|
|
21
|
+
};
|
|
22
|
+
export type SystemInstanceDeploymentStatus =
|
|
23
|
+
(typeof SystemInstanceDeploymentStatus)[keyof typeof SystemInstanceDeploymentStatus];
|
|
24
|
+
export declare const EntityType: {
|
|
25
|
+
readonly ACTION: "ACTION";
|
|
26
|
+
readonly CAPABILITY: "CAPABILITY";
|
|
27
|
+
readonly DEVICE: "DEVICE";
|
|
28
|
+
readonly DEVICE_MODEL: "DEVICE_MODEL";
|
|
29
|
+
readonly ENUM: "ENUM";
|
|
30
|
+
readonly EVENT: "EVENT";
|
|
31
|
+
readonly MAPPING: "MAPPING";
|
|
32
|
+
readonly PROPERTY: "PROPERTY";
|
|
33
|
+
readonly SERVICE: "SERVICE";
|
|
34
|
+
readonly STATE: "STATE";
|
|
35
|
+
};
|
|
36
|
+
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
37
|
+
export declare const EntityFilterName: {
|
|
38
|
+
readonly NAME: "NAME";
|
|
39
|
+
readonly NAMESPACE: "NAMESPACE";
|
|
40
|
+
readonly REFERENCED_ENTITY_ID: "REFERENCED_ENTITY_ID";
|
|
41
|
+
readonly SEMANTIC_TYPE_PATH: "SEMANTIC_TYPE_PATH";
|
|
42
|
+
};
|
|
43
|
+
export type EntityFilterName =
|
|
44
|
+
(typeof EntityFilterName)[keyof typeof EntityFilterName];
|
|
45
|
+
export declare const FlowExecutionEventType: {
|
|
46
|
+
readonly ACKNOWLEDGE_TASK_MESSAGE: "ACKNOWLEDGE_TASK_MESSAGE";
|
|
47
|
+
readonly ACTIVITY_FAILED: "ACTIVITY_FAILED";
|
|
48
|
+
readonly ACTIVITY_SCHEDULED: "ACTIVITY_SCHEDULED";
|
|
49
|
+
readonly ACTIVITY_STARTED: "ACTIVITY_STARTED";
|
|
50
|
+
readonly ACTIVITY_SUCCEEDED: "ACTIVITY_SUCCEEDED";
|
|
51
|
+
readonly EXECUTION_ABORTED: "EXECUTION_ABORTED";
|
|
52
|
+
readonly EXECUTION_FAILED: "EXECUTION_FAILED";
|
|
53
|
+
readonly EXECUTION_STARTED: "EXECUTION_STARTED";
|
|
54
|
+
readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
|
|
55
|
+
readonly SCHEDULE_NEXT_READY_STEPS_TASK: "SCHEDULE_NEXT_READY_STEPS_TASK";
|
|
56
|
+
readonly START_FLOW_EXECUTION_TASK: "START_FLOW_EXECUTION_TASK";
|
|
57
|
+
readonly STEP_FAILED: "STEP_FAILED";
|
|
58
|
+
readonly STEP_STARTED: "STEP_STARTED";
|
|
59
|
+
readonly STEP_SUCCEEDED: "STEP_SUCCEEDED";
|
|
60
|
+
readonly THING_ACTION_TASK: "THING_ACTION_TASK";
|
|
61
|
+
readonly THING_ACTION_TASK_FAILED: "THING_ACTION_TASK_FAILED";
|
|
62
|
+
readonly THING_ACTION_TASK_SUCCEEDED: "THING_ACTION_TASK_SUCCEEDED";
|
|
63
|
+
};
|
|
64
|
+
export type FlowExecutionEventType =
|
|
65
|
+
(typeof FlowExecutionEventType)[keyof typeof FlowExecutionEventType];
|
|
66
|
+
export declare const FlowExecutionStatus: {
|
|
67
|
+
readonly ABORTED: "ABORTED";
|
|
68
|
+
readonly FAILED: "FAILED";
|
|
69
|
+
readonly RUNNING: "RUNNING";
|
|
70
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
71
|
+
};
|
|
72
|
+
export type FlowExecutionStatus =
|
|
73
|
+
(typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
|
|
74
|
+
export declare const FlowTemplateFilterName: {
|
|
75
|
+
readonly DEVICE_MODEL_ID: "DEVICE_MODEL_ID";
|
|
76
|
+
};
|
|
77
|
+
export type FlowTemplateFilterName =
|
|
78
|
+
(typeof FlowTemplateFilterName)[keyof typeof FlowTemplateFilterName];
|
|
79
|
+
export declare const NamespaceDeletionStatusErrorCodes: {
|
|
80
|
+
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
81
|
+
};
|
|
82
|
+
export type NamespaceDeletionStatusErrorCodes =
|
|
83
|
+
(typeof NamespaceDeletionStatusErrorCodes)[keyof typeof NamespaceDeletionStatusErrorCodes];
|
|
84
|
+
export declare const NamespaceDeletionStatus: {
|
|
85
|
+
readonly FAILED: "FAILED";
|
|
86
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
87
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
88
|
+
};
|
|
89
|
+
export type NamespaceDeletionStatus =
|
|
90
|
+
(typeof NamespaceDeletionStatus)[keyof typeof NamespaceDeletionStatus];
|
|
91
|
+
export declare const UploadStatus: {
|
|
92
|
+
readonly FAILED: "FAILED";
|
|
93
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
94
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
95
|
+
};
|
|
96
|
+
export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
|
|
97
|
+
export declare const SystemInstanceFilterName: {
|
|
98
|
+
readonly GREENGRASS_GROUP_NAME: "GREENGRASS_GROUP_NAME";
|
|
99
|
+
readonly STATUS: "STATUS";
|
|
100
|
+
readonly SYSTEM_TEMPLATE_ID: "SYSTEM_TEMPLATE_ID";
|
|
101
|
+
};
|
|
102
|
+
export type SystemInstanceFilterName =
|
|
103
|
+
(typeof SystemInstanceFilterName)[keyof typeof SystemInstanceFilterName];
|
|
104
|
+
export declare const SystemTemplateFilterName: {
|
|
105
|
+
readonly FLOW_TEMPLATE_ID: "FLOW_TEMPLATE_ID";
|
|
106
|
+
};
|
|
107
|
+
export type SystemTemplateFilterName =
|
|
108
|
+
(typeof SystemTemplateFilterName)[keyof typeof SystemTemplateFilterName];
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { IoTThingsGraphServiceException as __BaseException } from "./IoTThingsGraphServiceException";
|
|
3
|
+
export declare class InternalFailureException extends __BaseException {
|
|
4
|
+
readonly name: "InternalFailureException";
|
|
5
|
+
readonly $fault: "server";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
11
|
+
readonly name: "InvalidRequestException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
18
|
+
readonly name: "ResourceNotFoundException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ThrottlingException extends __BaseException {
|
|
25
|
+
readonly name: "ThrottlingException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class LimitExceededException extends __BaseException {
|
|
32
|
+
readonly name: "LimitExceededException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
39
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
46
|
+
readonly name: "ResourceInUseException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
@@ -1,44 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
DefinitionLanguage,
|
|
3
|
+
DeploymentTarget,
|
|
4
|
+
EntityFilterName,
|
|
5
|
+
EntityType,
|
|
6
|
+
FlowExecutionEventType,
|
|
7
|
+
FlowExecutionStatus,
|
|
8
|
+
FlowTemplateFilterName,
|
|
9
|
+
NamespaceDeletionStatus,
|
|
10
|
+
NamespaceDeletionStatusErrorCodes,
|
|
11
|
+
SystemInstanceDeploymentStatus,
|
|
12
|
+
SystemInstanceFilterName,
|
|
13
|
+
SystemTemplateFilterName,
|
|
14
|
+
UploadStatus,
|
|
15
|
+
} from "./enums";
|
|
3
16
|
export interface AssociateEntityToThingRequest {
|
|
4
17
|
thingName: string | undefined;
|
|
5
18
|
entityId: string | undefined;
|
|
6
19
|
namespaceVersion?: number | undefined;
|
|
7
20
|
}
|
|
8
21
|
export interface AssociateEntityToThingResponse {}
|
|
9
|
-
export declare class InternalFailureException extends __BaseException {
|
|
10
|
-
readonly name: "InternalFailureException";
|
|
11
|
-
readonly $fault: "server";
|
|
12
|
-
constructor(
|
|
13
|
-
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
14
|
-
);
|
|
15
|
-
}
|
|
16
|
-
export declare class InvalidRequestException extends __BaseException {
|
|
17
|
-
readonly name: "InvalidRequestException";
|
|
18
|
-
readonly $fault: "client";
|
|
19
|
-
constructor(
|
|
20
|
-
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
24
|
-
readonly name: "ResourceNotFoundException";
|
|
25
|
-
readonly $fault: "client";
|
|
26
|
-
constructor(
|
|
27
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
28
|
-
);
|
|
29
|
-
}
|
|
30
|
-
export declare class ThrottlingException extends __BaseException {
|
|
31
|
-
readonly name: "ThrottlingException";
|
|
32
|
-
readonly $fault: "client";
|
|
33
|
-
constructor(
|
|
34
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
35
|
-
);
|
|
36
|
-
}
|
|
37
|
-
export declare const DefinitionLanguage: {
|
|
38
|
-
readonly GRAPHQL: "GRAPHQL";
|
|
39
|
-
};
|
|
40
|
-
export type DefinitionLanguage =
|
|
41
|
-
(typeof DefinitionLanguage)[keyof typeof DefinitionLanguage];
|
|
42
22
|
export interface DefinitionDocument {
|
|
43
23
|
language: DefinitionLanguage | undefined;
|
|
44
24
|
text: string | undefined;
|
|
@@ -56,20 +36,6 @@ export interface FlowTemplateSummary {
|
|
|
56
36
|
export interface CreateFlowTemplateResponse {
|
|
57
37
|
summary?: FlowTemplateSummary | undefined;
|
|
58
38
|
}
|
|
59
|
-
export declare class LimitExceededException extends __BaseException {
|
|
60
|
-
readonly name: "LimitExceededException";
|
|
61
|
-
readonly $fault: "client";
|
|
62
|
-
constructor(
|
|
63
|
-
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
64
|
-
);
|
|
65
|
-
}
|
|
66
|
-
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
67
|
-
readonly name: "ResourceAlreadyExistsException";
|
|
68
|
-
readonly $fault: "client";
|
|
69
|
-
constructor(
|
|
70
|
-
opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
|
|
71
|
-
);
|
|
72
|
-
}
|
|
73
39
|
export interface MetricsConfiguration {
|
|
74
40
|
cloudMetricEnabled?: boolean | undefined;
|
|
75
41
|
metricRuleRoleArn?: string | undefined;
|
|
@@ -78,12 +44,6 @@ export interface Tag {
|
|
|
78
44
|
key: string | undefined;
|
|
79
45
|
value: string | undefined;
|
|
80
46
|
}
|
|
81
|
-
export declare const DeploymentTarget: {
|
|
82
|
-
readonly CLOUD: "CLOUD";
|
|
83
|
-
readonly GREENGRASS: "GREENGRASS";
|
|
84
|
-
};
|
|
85
|
-
export type DeploymentTarget =
|
|
86
|
-
(typeof DeploymentTarget)[keyof typeof DeploymentTarget];
|
|
87
47
|
export interface CreateSystemInstanceRequest {
|
|
88
48
|
tags?: Tag[] | undefined;
|
|
89
49
|
definition: DefinitionDocument | undefined;
|
|
@@ -93,18 +53,6 @@ export interface CreateSystemInstanceRequest {
|
|
|
93
53
|
metricsConfiguration?: MetricsConfiguration | undefined;
|
|
94
54
|
flowActionsRoleArn?: string | undefined;
|
|
95
55
|
}
|
|
96
|
-
export declare const SystemInstanceDeploymentStatus: {
|
|
97
|
-
readonly BOOTSTRAP: "BOOTSTRAP";
|
|
98
|
-
readonly DELETED_IN_TARGET: "DELETED_IN_TARGET";
|
|
99
|
-
readonly DEPLOYED_IN_TARGET: "DEPLOYED_IN_TARGET";
|
|
100
|
-
readonly DEPLOY_IN_PROGRESS: "DEPLOY_IN_PROGRESS";
|
|
101
|
-
readonly FAILED: "FAILED";
|
|
102
|
-
readonly NOT_DEPLOYED: "NOT_DEPLOYED";
|
|
103
|
-
readonly PENDING_DELETE: "PENDING_DELETE";
|
|
104
|
-
readonly UNDEPLOY_IN_PROGRESS: "UNDEPLOY_IN_PROGRESS";
|
|
105
|
-
};
|
|
106
|
-
export type SystemInstanceDeploymentStatus =
|
|
107
|
-
(typeof SystemInstanceDeploymentStatus)[keyof typeof SystemInstanceDeploymentStatus];
|
|
108
56
|
export interface SystemInstanceSummary {
|
|
109
57
|
id?: string | undefined;
|
|
110
58
|
arn?: string | undefined;
|
|
@@ -136,13 +84,6 @@ export interface DeleteFlowTemplateRequest {
|
|
|
136
84
|
id: string | undefined;
|
|
137
85
|
}
|
|
138
86
|
export interface DeleteFlowTemplateResponse {}
|
|
139
|
-
export declare class ResourceInUseException extends __BaseException {
|
|
140
|
-
readonly name: "ResourceInUseException";
|
|
141
|
-
readonly $fault: "client";
|
|
142
|
-
constructor(
|
|
143
|
-
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
144
|
-
);
|
|
145
|
-
}
|
|
146
87
|
export interface DeleteNamespaceRequest {}
|
|
147
88
|
export interface DeleteNamespaceResponse {
|
|
148
89
|
namespaceArn?: string | undefined;
|
|
@@ -185,19 +126,6 @@ export interface DescribeNamespaceResponse {
|
|
|
185
126
|
trackingNamespaceVersion?: number | undefined;
|
|
186
127
|
namespaceVersion?: number | undefined;
|
|
187
128
|
}
|
|
188
|
-
export declare const EntityType: {
|
|
189
|
-
readonly ACTION: "ACTION";
|
|
190
|
-
readonly CAPABILITY: "CAPABILITY";
|
|
191
|
-
readonly DEVICE: "DEVICE";
|
|
192
|
-
readonly DEVICE_MODEL: "DEVICE_MODEL";
|
|
193
|
-
readonly ENUM: "ENUM";
|
|
194
|
-
readonly EVENT: "EVENT";
|
|
195
|
-
readonly MAPPING: "MAPPING";
|
|
196
|
-
readonly PROPERTY: "PROPERTY";
|
|
197
|
-
readonly SERVICE: "SERVICE";
|
|
198
|
-
readonly STATE: "STATE";
|
|
199
|
-
};
|
|
200
|
-
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
201
129
|
export interface DissociateEntityFromThingRequest {
|
|
202
130
|
thingName: string | undefined;
|
|
203
131
|
entityType: EntityType | undefined;
|
|
@@ -210,53 +138,16 @@ export interface EntityDescription {
|
|
|
210
138
|
createdAt?: Date | undefined;
|
|
211
139
|
definition?: DefinitionDocument | undefined;
|
|
212
140
|
}
|
|
213
|
-
export declare const EntityFilterName: {
|
|
214
|
-
readonly NAME: "NAME";
|
|
215
|
-
readonly NAMESPACE: "NAMESPACE";
|
|
216
|
-
readonly REFERENCED_ENTITY_ID: "REFERENCED_ENTITY_ID";
|
|
217
|
-
readonly SEMANTIC_TYPE_PATH: "SEMANTIC_TYPE_PATH";
|
|
218
|
-
};
|
|
219
|
-
export type EntityFilterName =
|
|
220
|
-
(typeof EntityFilterName)[keyof typeof EntityFilterName];
|
|
221
141
|
export interface EntityFilter {
|
|
222
142
|
name?: EntityFilterName | undefined;
|
|
223
143
|
value?: string[] | undefined;
|
|
224
144
|
}
|
|
225
|
-
export declare const FlowExecutionEventType: {
|
|
226
|
-
readonly ACKNOWLEDGE_TASK_MESSAGE: "ACKNOWLEDGE_TASK_MESSAGE";
|
|
227
|
-
readonly ACTIVITY_FAILED: "ACTIVITY_FAILED";
|
|
228
|
-
readonly ACTIVITY_SCHEDULED: "ACTIVITY_SCHEDULED";
|
|
229
|
-
readonly ACTIVITY_STARTED: "ACTIVITY_STARTED";
|
|
230
|
-
readonly ACTIVITY_SUCCEEDED: "ACTIVITY_SUCCEEDED";
|
|
231
|
-
readonly EXECUTION_ABORTED: "EXECUTION_ABORTED";
|
|
232
|
-
readonly EXECUTION_FAILED: "EXECUTION_FAILED";
|
|
233
|
-
readonly EXECUTION_STARTED: "EXECUTION_STARTED";
|
|
234
|
-
readonly EXECUTION_SUCCEEDED: "EXECUTION_SUCCEEDED";
|
|
235
|
-
readonly SCHEDULE_NEXT_READY_STEPS_TASK: "SCHEDULE_NEXT_READY_STEPS_TASK";
|
|
236
|
-
readonly START_FLOW_EXECUTION_TASK: "START_FLOW_EXECUTION_TASK";
|
|
237
|
-
readonly STEP_FAILED: "STEP_FAILED";
|
|
238
|
-
readonly STEP_STARTED: "STEP_STARTED";
|
|
239
|
-
readonly STEP_SUCCEEDED: "STEP_SUCCEEDED";
|
|
240
|
-
readonly THING_ACTION_TASK: "THING_ACTION_TASK";
|
|
241
|
-
readonly THING_ACTION_TASK_FAILED: "THING_ACTION_TASK_FAILED";
|
|
242
|
-
readonly THING_ACTION_TASK_SUCCEEDED: "THING_ACTION_TASK_SUCCEEDED";
|
|
243
|
-
};
|
|
244
|
-
export type FlowExecutionEventType =
|
|
245
|
-
(typeof FlowExecutionEventType)[keyof typeof FlowExecutionEventType];
|
|
246
145
|
export interface FlowExecutionMessage {
|
|
247
146
|
messageId?: string | undefined;
|
|
248
147
|
eventType?: FlowExecutionEventType | undefined;
|
|
249
148
|
timestamp?: Date | undefined;
|
|
250
149
|
payload?: string | undefined;
|
|
251
150
|
}
|
|
252
|
-
export declare const FlowExecutionStatus: {
|
|
253
|
-
readonly ABORTED: "ABORTED";
|
|
254
|
-
readonly FAILED: "FAILED";
|
|
255
|
-
readonly RUNNING: "RUNNING";
|
|
256
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
257
|
-
};
|
|
258
|
-
export type FlowExecutionStatus =
|
|
259
|
-
(typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
|
|
260
151
|
export interface FlowExecutionSummary {
|
|
261
152
|
flowExecutionId?: string | undefined;
|
|
262
153
|
status?: FlowExecutionStatus | undefined;
|
|
@@ -270,11 +161,6 @@ export interface FlowTemplateDescription {
|
|
|
270
161
|
definition?: DefinitionDocument | undefined;
|
|
271
162
|
validatedNamespaceVersion?: number | undefined;
|
|
272
163
|
}
|
|
273
|
-
export declare const FlowTemplateFilterName: {
|
|
274
|
-
readonly DEVICE_MODEL_ID: "DEVICE_MODEL_ID";
|
|
275
|
-
};
|
|
276
|
-
export type FlowTemplateFilterName =
|
|
277
|
-
(typeof FlowTemplateFilterName)[keyof typeof FlowTemplateFilterName];
|
|
278
164
|
export interface FlowTemplateFilter {
|
|
279
165
|
name: FlowTemplateFilterName | undefined;
|
|
280
166
|
value: string[] | undefined;
|
|
@@ -303,18 +189,6 @@ export interface GetFlowTemplateRevisionsResponse {
|
|
|
303
189
|
nextToken?: string | undefined;
|
|
304
190
|
}
|
|
305
191
|
export interface GetNamespaceDeletionStatusRequest {}
|
|
306
|
-
export declare const NamespaceDeletionStatusErrorCodes: {
|
|
307
|
-
readonly VALIDATION_FAILED: "VALIDATION_FAILED";
|
|
308
|
-
};
|
|
309
|
-
export type NamespaceDeletionStatusErrorCodes =
|
|
310
|
-
(typeof NamespaceDeletionStatusErrorCodes)[keyof typeof NamespaceDeletionStatusErrorCodes];
|
|
311
|
-
export declare const NamespaceDeletionStatus: {
|
|
312
|
-
readonly FAILED: "FAILED";
|
|
313
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
314
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
315
|
-
};
|
|
316
|
-
export type NamespaceDeletionStatus =
|
|
317
|
-
(typeof NamespaceDeletionStatus)[keyof typeof NamespaceDeletionStatus];
|
|
318
192
|
export interface GetNamespaceDeletionStatusResponse {
|
|
319
193
|
namespaceArn?: string | undefined;
|
|
320
194
|
namespaceName?: string | undefined;
|
|
@@ -361,12 +235,6 @@ export interface GetSystemTemplateRevisionsResponse {
|
|
|
361
235
|
export interface GetUploadStatusRequest {
|
|
362
236
|
uploadId: string | undefined;
|
|
363
237
|
}
|
|
364
|
-
export declare const UploadStatus: {
|
|
365
|
-
readonly FAILED: "FAILED";
|
|
366
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
367
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
368
|
-
};
|
|
369
|
-
export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
|
|
370
238
|
export interface GetUploadStatusResponse {
|
|
371
239
|
uploadId: string | undefined;
|
|
372
240
|
uploadStatus: UploadStatus | undefined;
|
|
@@ -426,13 +294,6 @@ export interface SearchFlowTemplatesResponse {
|
|
|
426
294
|
summaries?: FlowTemplateSummary[] | undefined;
|
|
427
295
|
nextToken?: string | undefined;
|
|
428
296
|
}
|
|
429
|
-
export declare const SystemInstanceFilterName: {
|
|
430
|
-
readonly GREENGRASS_GROUP_NAME: "GREENGRASS_GROUP_NAME";
|
|
431
|
-
readonly STATUS: "STATUS";
|
|
432
|
-
readonly SYSTEM_TEMPLATE_ID: "SYSTEM_TEMPLATE_ID";
|
|
433
|
-
};
|
|
434
|
-
export type SystemInstanceFilterName =
|
|
435
|
-
(typeof SystemInstanceFilterName)[keyof typeof SystemInstanceFilterName];
|
|
436
297
|
export interface SystemInstanceFilter {
|
|
437
298
|
name?: SystemInstanceFilterName | undefined;
|
|
438
299
|
value?: string[] | undefined;
|
|
@@ -446,11 +307,6 @@ export interface SearchSystemInstancesResponse {
|
|
|
446
307
|
summaries?: SystemInstanceSummary[] | undefined;
|
|
447
308
|
nextToken?: string | undefined;
|
|
448
309
|
}
|
|
449
|
-
export declare const SystemTemplateFilterName: {
|
|
450
|
-
readonly FLOW_TEMPLATE_ID: "FLOW_TEMPLATE_ID";
|
|
451
|
-
};
|
|
452
|
-
export type SystemTemplateFilterName =
|
|
453
|
-
(typeof SystemTemplateFilterName)[keyof typeof SystemTemplateFilterName];
|
|
454
310
|
export interface SystemTemplateFilter {
|
|
455
311
|
name: SystemTemplateFilterName | undefined;
|
|
456
312
|
value: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-iotthingsgraph",
|
|
3
3
|
"description": "AWS SDK for JavaScript Iotthingsgraph Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.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-iotthingsgraph",
|
|
@@ -20,38 +20,38 @@
|
|
|
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.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|