@aws-sdk/client-iotthingsgraph 3.428.0 → 3.430.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-types/models/models_0.d.ts +16 -16
- package/dist-types/ts3.4/models/models_0.d.ts +16 -16
- package/package.json +11 -11
|
@@ -97,7 +97,7 @@ export interface DefinitionDocument {
|
|
|
97
97
|
* @public
|
|
98
98
|
* <p>The language used to define the entity. <code>GRAPHQL</code> is the only valid value.</p>
|
|
99
99
|
*/
|
|
100
|
-
language: DefinitionLanguage |
|
|
100
|
+
language: DefinitionLanguage | undefined;
|
|
101
101
|
/**
|
|
102
102
|
* @public
|
|
103
103
|
* <p>The GraphQL text that defines the entity.</p>
|
|
@@ -242,7 +242,7 @@ export interface CreateSystemInstanceRequest {
|
|
|
242
242
|
* @public
|
|
243
243
|
* <p>The target type of the deployment. Valid values are <code>GREENGRASS</code> and <code>CLOUD</code>.</p>
|
|
244
244
|
*/
|
|
245
|
-
target: DeploymentTarget |
|
|
245
|
+
target: DeploymentTarget | undefined;
|
|
246
246
|
/**
|
|
247
247
|
* @public
|
|
248
248
|
* <p>The name of the Greengrass group where the system instance will be deployed. This value is required if
|
|
@@ -305,12 +305,12 @@ export interface SystemInstanceSummary {
|
|
|
305
305
|
* @public
|
|
306
306
|
* <p>The status of the system instance.</p>
|
|
307
307
|
*/
|
|
308
|
-
status?: SystemInstanceDeploymentStatus
|
|
308
|
+
status?: SystemInstanceDeploymentStatus;
|
|
309
309
|
/**
|
|
310
310
|
* @public
|
|
311
311
|
* <p>The target of the system instance.</p>
|
|
312
312
|
*/
|
|
313
|
-
target?: DeploymentTarget
|
|
313
|
+
target?: DeploymentTarget;
|
|
314
314
|
/**
|
|
315
315
|
* @public
|
|
316
316
|
* <p>The ID of the Greengrass group where the system instance is deployed.</p>
|
|
@@ -642,7 +642,7 @@ export interface DissociateEntityFromThingRequest {
|
|
|
642
642
|
* @public
|
|
643
643
|
* <p>The entity type from which to disassociate the thing.</p>
|
|
644
644
|
*/
|
|
645
|
-
entityType: EntityType |
|
|
645
|
+
entityType: EntityType | undefined;
|
|
646
646
|
}
|
|
647
647
|
/**
|
|
648
648
|
* @public
|
|
@@ -668,7 +668,7 @@ export interface EntityDescription {
|
|
|
668
668
|
* @public
|
|
669
669
|
* <p>The entity type.</p>
|
|
670
670
|
*/
|
|
671
|
-
type?: EntityType
|
|
671
|
+
type?: EntityType;
|
|
672
672
|
/**
|
|
673
673
|
* @public
|
|
674
674
|
* <p>The time at which the entity was created.</p>
|
|
@@ -706,7 +706,7 @@ export interface EntityFilter {
|
|
|
706
706
|
* <p>The name of the entity search filter field. <code>REFERENCED_ENTITY_ID</code> filters on entities that are used by the entity in the result set. For example,
|
|
707
707
|
* you can filter on the ID of a property that is used in a state.</p>
|
|
708
708
|
*/
|
|
709
|
-
name?: EntityFilterName
|
|
709
|
+
name?: EntityFilterName;
|
|
710
710
|
/**
|
|
711
711
|
* @public
|
|
712
712
|
* <p>An array of string values for the search filter field. Multiple values function as AND criteria in the search.</p>
|
|
@@ -754,7 +754,7 @@ export interface FlowExecutionMessage {
|
|
|
754
754
|
* @public
|
|
755
755
|
* <p>The type of flow event .</p>
|
|
756
756
|
*/
|
|
757
|
-
eventType?: FlowExecutionEventType
|
|
757
|
+
eventType?: FlowExecutionEventType;
|
|
758
758
|
/**
|
|
759
759
|
* @public
|
|
760
760
|
* <p>The date and time when the message was last updated.</p>
|
|
@@ -794,7 +794,7 @@ export interface FlowExecutionSummary {
|
|
|
794
794
|
* @public
|
|
795
795
|
* <p>The current status of the flow execution.</p>
|
|
796
796
|
*/
|
|
797
|
-
status?: FlowExecutionStatus
|
|
797
|
+
status?: FlowExecutionStatus;
|
|
798
798
|
/**
|
|
799
799
|
* @public
|
|
800
800
|
* <p>The ID of the system instance that contains the flow.</p>
|
|
@@ -857,7 +857,7 @@ export interface FlowTemplateFilter {
|
|
|
857
857
|
* @public
|
|
858
858
|
* <p>The name of the search filter field.</p>
|
|
859
859
|
*/
|
|
860
|
-
name: FlowTemplateFilterName |
|
|
860
|
+
name: FlowTemplateFilterName | undefined;
|
|
861
861
|
/**
|
|
862
862
|
* @public
|
|
863
863
|
* <p>An array of string values for the search filter field. Multiple values function as AND criteria in the search.</p>
|
|
@@ -1008,12 +1008,12 @@ export interface GetNamespaceDeletionStatusResponse {
|
|
|
1008
1008
|
* @public
|
|
1009
1009
|
* <p>The status of the deletion request.</p>
|
|
1010
1010
|
*/
|
|
1011
|
-
status?: NamespaceDeletionStatus
|
|
1011
|
+
status?: NamespaceDeletionStatus;
|
|
1012
1012
|
/**
|
|
1013
1013
|
* @public
|
|
1014
1014
|
* <p>An error code returned by the namespace deletion task.</p>
|
|
1015
1015
|
*/
|
|
1016
|
-
errorCode?: NamespaceDeletionStatusErrorCodes
|
|
1016
|
+
errorCode?: NamespaceDeletionStatusErrorCodes;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* @public
|
|
1019
1019
|
* <p>An error code returned by the namespace deletion task.</p>
|
|
@@ -1212,7 +1212,7 @@ export interface GetUploadStatusResponse {
|
|
|
1212
1212
|
* @public
|
|
1213
1213
|
* <p>The status of the upload. The initial status is <code>IN_PROGRESS</code>. The response show all validation failures if the upload fails.</p>
|
|
1214
1214
|
*/
|
|
1215
|
-
uploadStatus: UploadStatus |
|
|
1215
|
+
uploadStatus: UploadStatus | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* @public
|
|
1218
1218
|
* <p>The ARN of the upload.</p>
|
|
@@ -1317,7 +1317,7 @@ export interface SearchEntitiesRequest {
|
|
|
1317
1317
|
* @public
|
|
1318
1318
|
* <p>The entity types for which to search.</p>
|
|
1319
1319
|
*/
|
|
1320
|
-
entityTypes:
|
|
1320
|
+
entityTypes: EntityType[] | undefined;
|
|
1321
1321
|
/**
|
|
1322
1322
|
* @public
|
|
1323
1323
|
* <p>Optional filter to apply to the search. Valid filters are <code>NAME</code>
|
|
@@ -1467,7 +1467,7 @@ export interface SystemInstanceFilter {
|
|
|
1467
1467
|
* @public
|
|
1468
1468
|
* <p>The name of the search filter field.</p>
|
|
1469
1469
|
*/
|
|
1470
|
-
name?: SystemInstanceFilterName
|
|
1470
|
+
name?: SystemInstanceFilterName;
|
|
1471
1471
|
/**
|
|
1472
1472
|
* @public
|
|
1473
1473
|
* <p>An array of string values for the search filter field. Multiple values function as AND criteria in the search. </p>
|
|
@@ -1531,7 +1531,7 @@ export interface SystemTemplateFilter {
|
|
|
1531
1531
|
* @public
|
|
1532
1532
|
* <p>The name of the system search filter field.</p>
|
|
1533
1533
|
*/
|
|
1534
|
-
name: SystemTemplateFilterName |
|
|
1534
|
+
name: SystemTemplateFilterName | undefined;
|
|
1535
1535
|
/**
|
|
1536
1536
|
* @public
|
|
1537
1537
|
* <p>An array of string values for the search filter field. Multiple values function as AND criteria in the search.</p>
|
|
@@ -40,7 +40,7 @@ export declare const DefinitionLanguage: {
|
|
|
40
40
|
export type DefinitionLanguage =
|
|
41
41
|
(typeof DefinitionLanguage)[keyof typeof DefinitionLanguage];
|
|
42
42
|
export interface DefinitionDocument {
|
|
43
|
-
language: DefinitionLanguage |
|
|
43
|
+
language: DefinitionLanguage | undefined;
|
|
44
44
|
text: string | undefined;
|
|
45
45
|
}
|
|
46
46
|
export interface CreateFlowTemplateRequest {
|
|
@@ -87,7 +87,7 @@ export type DeploymentTarget =
|
|
|
87
87
|
export interface CreateSystemInstanceRequest {
|
|
88
88
|
tags?: Tag[];
|
|
89
89
|
definition: DefinitionDocument | undefined;
|
|
90
|
-
target: DeploymentTarget |
|
|
90
|
+
target: DeploymentTarget | undefined;
|
|
91
91
|
greengrassGroupName?: string;
|
|
92
92
|
s3BucketName?: string;
|
|
93
93
|
metricsConfiguration?: MetricsConfiguration;
|
|
@@ -108,8 +108,8 @@ export type SystemInstanceDeploymentStatus =
|
|
|
108
108
|
export interface SystemInstanceSummary {
|
|
109
109
|
id?: string;
|
|
110
110
|
arn?: string;
|
|
111
|
-
status?: SystemInstanceDeploymentStatus
|
|
112
|
-
target?: DeploymentTarget
|
|
111
|
+
status?: SystemInstanceDeploymentStatus;
|
|
112
|
+
target?: DeploymentTarget;
|
|
113
113
|
greengrassGroupName?: string;
|
|
114
114
|
createdAt?: Date;
|
|
115
115
|
updatedAt?: Date;
|
|
@@ -200,13 +200,13 @@ export declare const EntityType: {
|
|
|
200
200
|
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
201
201
|
export interface DissociateEntityFromThingRequest {
|
|
202
202
|
thingName: string | undefined;
|
|
203
|
-
entityType: EntityType |
|
|
203
|
+
entityType: EntityType | undefined;
|
|
204
204
|
}
|
|
205
205
|
export interface DissociateEntityFromThingResponse {}
|
|
206
206
|
export interface EntityDescription {
|
|
207
207
|
id?: string;
|
|
208
208
|
arn?: string;
|
|
209
|
-
type?: EntityType
|
|
209
|
+
type?: EntityType;
|
|
210
210
|
createdAt?: Date;
|
|
211
211
|
definition?: DefinitionDocument;
|
|
212
212
|
}
|
|
@@ -219,7 +219,7 @@ export declare const EntityFilterName: {
|
|
|
219
219
|
export type EntityFilterName =
|
|
220
220
|
(typeof EntityFilterName)[keyof typeof EntityFilterName];
|
|
221
221
|
export interface EntityFilter {
|
|
222
|
-
name?: EntityFilterName
|
|
222
|
+
name?: EntityFilterName;
|
|
223
223
|
value?: string[];
|
|
224
224
|
}
|
|
225
225
|
export declare const FlowExecutionEventType: {
|
|
@@ -245,7 +245,7 @@ export type FlowExecutionEventType =
|
|
|
245
245
|
(typeof FlowExecutionEventType)[keyof typeof FlowExecutionEventType];
|
|
246
246
|
export interface FlowExecutionMessage {
|
|
247
247
|
messageId?: string;
|
|
248
|
-
eventType?: FlowExecutionEventType
|
|
248
|
+
eventType?: FlowExecutionEventType;
|
|
249
249
|
timestamp?: Date;
|
|
250
250
|
payload?: string;
|
|
251
251
|
}
|
|
@@ -259,7 +259,7 @@ export type FlowExecutionStatus =
|
|
|
259
259
|
(typeof FlowExecutionStatus)[keyof typeof FlowExecutionStatus];
|
|
260
260
|
export interface FlowExecutionSummary {
|
|
261
261
|
flowExecutionId?: string;
|
|
262
|
-
status?: FlowExecutionStatus
|
|
262
|
+
status?: FlowExecutionStatus;
|
|
263
263
|
systemInstanceId?: string;
|
|
264
264
|
flowTemplateId?: string;
|
|
265
265
|
createdAt?: Date;
|
|
@@ -276,7 +276,7 @@ export declare const FlowTemplateFilterName: {
|
|
|
276
276
|
export type FlowTemplateFilterName =
|
|
277
277
|
(typeof FlowTemplateFilterName)[keyof typeof FlowTemplateFilterName];
|
|
278
278
|
export interface FlowTemplateFilter {
|
|
279
|
-
name: FlowTemplateFilterName |
|
|
279
|
+
name: FlowTemplateFilterName | undefined;
|
|
280
280
|
value: string[] | undefined;
|
|
281
281
|
}
|
|
282
282
|
export interface GetEntitiesRequest {
|
|
@@ -318,8 +318,8 @@ export type NamespaceDeletionStatus =
|
|
|
318
318
|
export interface GetNamespaceDeletionStatusResponse {
|
|
319
319
|
namespaceArn?: string;
|
|
320
320
|
namespaceName?: string;
|
|
321
|
-
status?: NamespaceDeletionStatus
|
|
322
|
-
errorCode?: NamespaceDeletionStatusErrorCodes
|
|
321
|
+
status?: NamespaceDeletionStatus;
|
|
322
|
+
errorCode?: NamespaceDeletionStatusErrorCodes;
|
|
323
323
|
errorMessage?: string;
|
|
324
324
|
}
|
|
325
325
|
export interface GetSystemInstanceRequest {
|
|
@@ -369,7 +369,7 @@ export declare const UploadStatus: {
|
|
|
369
369
|
export type UploadStatus = (typeof UploadStatus)[keyof typeof UploadStatus];
|
|
370
370
|
export interface GetUploadStatusResponse {
|
|
371
371
|
uploadId: string | undefined;
|
|
372
|
-
uploadStatus: UploadStatus |
|
|
372
|
+
uploadStatus: UploadStatus | undefined;
|
|
373
373
|
namespaceArn?: string;
|
|
374
374
|
namespaceName?: string;
|
|
375
375
|
namespaceVersion?: number;
|
|
@@ -395,7 +395,7 @@ export interface ListTagsForResourceResponse {
|
|
|
395
395
|
nextToken?: string;
|
|
396
396
|
}
|
|
397
397
|
export interface SearchEntitiesRequest {
|
|
398
|
-
entityTypes:
|
|
398
|
+
entityTypes: EntityType[] | undefined;
|
|
399
399
|
filters?: EntityFilter[];
|
|
400
400
|
nextToken?: string;
|
|
401
401
|
maxResults?: number;
|
|
@@ -434,7 +434,7 @@ export declare const SystemInstanceFilterName: {
|
|
|
434
434
|
export type SystemInstanceFilterName =
|
|
435
435
|
(typeof SystemInstanceFilterName)[keyof typeof SystemInstanceFilterName];
|
|
436
436
|
export interface SystemInstanceFilter {
|
|
437
|
-
name?: SystemInstanceFilterName
|
|
437
|
+
name?: SystemInstanceFilterName;
|
|
438
438
|
value?: string[];
|
|
439
439
|
}
|
|
440
440
|
export interface SearchSystemInstancesRequest {
|
|
@@ -452,7 +452,7 @@ export declare const SystemTemplateFilterName: {
|
|
|
452
452
|
export type SystemTemplateFilterName =
|
|
453
453
|
(typeof SystemTemplateFilterName)[keyof typeof SystemTemplateFilterName];
|
|
454
454
|
export interface SystemTemplateFilter {
|
|
455
|
-
name: SystemTemplateFilterName |
|
|
455
|
+
name: SystemTemplateFilterName | undefined;
|
|
456
456
|
value: string[] | undefined;
|
|
457
457
|
}
|
|
458
458
|
export interface SearchSystemTemplatesRequest {
|
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.430.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,28 +21,28 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.430.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.430.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.430.0",
|
|
32
32
|
"@aws-sdk/types": "3.428.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.430.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.15",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.17",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.2",
|
|
46
46
|
"@smithy/node-http-handler": "^2.1.7",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.7",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.11",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.20",
|
|
56
56
|
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|