@aws-sdk/client-iotthingsgraph 3.535.0 → 3.540.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/commands/AssociateEntityToThingCommand.d.ts +2 -1
  6. package/dist-types/commands/CreateFlowTemplateCommand.d.ts +2 -1
  7. package/dist-types/commands/CreateSystemInstanceCommand.d.ts +2 -1
  8. package/dist-types/commands/CreateSystemTemplateCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteFlowTemplateCommand.d.ts +2 -1
  10. package/dist-types/commands/DeleteNamespaceCommand.d.ts +2 -1
  11. package/dist-types/commands/DeleteSystemInstanceCommand.d.ts +2 -1
  12. package/dist-types/commands/DeleteSystemTemplateCommand.d.ts +2 -1
  13. package/dist-types/commands/DeploySystemInstanceCommand.d.ts +2 -1
  14. package/dist-types/commands/DeprecateFlowTemplateCommand.d.ts +2 -1
  15. package/dist-types/commands/DeprecateSystemTemplateCommand.d.ts +2 -1
  16. package/dist-types/commands/DescribeNamespaceCommand.d.ts +2 -1
  17. package/dist-types/commands/DissociateEntityFromThingCommand.d.ts +2 -1
  18. package/dist-types/commands/GetEntitiesCommand.d.ts +2 -1
  19. package/dist-types/commands/GetFlowTemplateCommand.d.ts +2 -1
  20. package/dist-types/commands/GetFlowTemplateRevisionsCommand.d.ts +2 -1
  21. package/dist-types/commands/GetNamespaceDeletionStatusCommand.d.ts +2 -1
  22. package/dist-types/commands/GetSystemInstanceCommand.d.ts +2 -1
  23. package/dist-types/commands/GetSystemTemplateCommand.d.ts +2 -1
  24. package/dist-types/commands/GetSystemTemplateRevisionsCommand.d.ts +2 -1
  25. package/dist-types/commands/GetUploadStatusCommand.d.ts +2 -1
  26. package/dist-types/commands/ListFlowExecutionMessagesCommand.d.ts +2 -1
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  28. package/dist-types/commands/SearchEntitiesCommand.d.ts +2 -1
  29. package/dist-types/commands/SearchFlowExecutionsCommand.d.ts +2 -1
  30. package/dist-types/commands/SearchFlowTemplatesCommand.d.ts +2 -1
  31. package/dist-types/commands/SearchSystemInstancesCommand.d.ts +2 -1
  32. package/dist-types/commands/SearchSystemTemplatesCommand.d.ts +2 -1
  33. package/dist-types/commands/SearchThingsCommand.d.ts +2 -1
  34. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  35. package/dist-types/commands/UndeploySystemInstanceCommand.d.ts +2 -1
  36. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  37. package/dist-types/commands/UpdateFlowTemplateCommand.d.ts +2 -1
  38. package/dist-types/commands/UpdateSystemTemplateCommand.d.ts +2 -1
  39. package/dist-types/commands/UploadEntityDefinitionsCommand.d.ts +2 -1
  40. package/dist-types/index.d.ts +0 -1
  41. package/dist-types/ts3.4/index.d.ts +0 -1
  42. package/package.json +5 -5
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -2184,9 +2184,6 @@ var paginateSearchSystemTemplates = (0, import_core.createPaginator)(IoTThingsGr
2184
2184
  // src/pagination/SearchThingsPaginator.ts
2185
2185
 
2186
2186
  var paginateSearchThings = (0, import_core.createPaginator)(IoTThingsGraphClient, SearchThingsCommand, "nextToken", "nextToken", "maxResults");
2187
-
2188
- // src/index.ts
2189
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
2190
2187
  // Annotate the CommonJS export names for ESM import in node:
2191
2188
 
2192
2189
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./IoTThingsGraph";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { IoTThingsGraphServiceException } from "./models/IoTThingsGraphServiceException";
@@ -28,6 +28,8 @@ declare const AssociateEntityToThingCommand_base: {
28
28
  /**
29
29
  * <p>Associates a device with a concrete thing that is in the user's registry.</p>
30
30
  * <p>A thing can be associated with only one device at a time. If you associate a thing with a new device id, its previous association will be removed.</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -67,7 +69,6 @@ declare const AssociateEntityToThingCommand_base: {
67
69
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
68
70
  *
69
71
  * @public
70
- * @deprecated since: 2022-08-30
71
72
  */
72
73
  export declare class AssociateEntityToThingCommand extends AssociateEntityToThingCommand_base {
73
74
  }
@@ -29,6 +29,8 @@ declare const CreateFlowTemplateCommand_base: {
29
29
  * <p>Creates a workflow template. Workflows can be created only in the user's namespace. (The public namespace contains only
30
30
  * entities.) The workflow can contain only entities in the specified namespace. The workflow is validated against the entities in the
31
31
  * latest version of the user's namespace unless another namespace version is specified in the request.</p>
32
+ *
33
+ * @deprecated since: 2022-08-30
32
34
  * @example
33
35
  * Use a bare-bones client and the command you need to make an API call.
34
36
  * ```javascript
@@ -80,7 +82,6 @@ declare const CreateFlowTemplateCommand_base: {
80
82
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
81
83
  *
82
84
  * @public
83
- * @deprecated since: 2022-08-30
84
85
  */
85
86
  export declare class CreateFlowTemplateCommand extends CreateFlowTemplateCommand_base {
86
87
  }
@@ -35,6 +35,8 @@ declare const CreateSystemInstanceCommand_base: {
35
35
  * <p>For cloud deployments, this action requires a <code>flowActionsRoleArn</code> value. This is an IAM role
36
36
  * that has permissions to access AWS services, such as AWS Lambda and AWS IoT, that the flow uses when it executes.</p>
37
37
  * <p>If the definition document doesn't specify a version of the user's namespace, the latest version will be used by default.</p>
38
+ *
39
+ * @deprecated since: 2022-08-30
38
40
  * @example
39
41
  * Use a bare-bones client and the command you need to make an API call.
40
42
  * ```javascript
@@ -104,7 +106,6 @@ declare const CreateSystemInstanceCommand_base: {
104
106
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
105
107
  *
106
108
  * @public
107
- * @deprecated since: 2022-08-30
108
109
  */
109
110
  export declare class CreateSystemInstanceCommand extends CreateSystemInstanceCommand_base {
110
111
  }
@@ -28,6 +28,8 @@ declare const CreateSystemTemplateCommand_base: {
28
28
  /**
29
29
  * <p>Creates a system. The system is validated against the entities in the
30
30
  * latest version of the user's namespace unless another namespace version is specified in the request.</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -76,7 +78,6 @@ declare const CreateSystemTemplateCommand_base: {
76
78
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
77
79
  *
78
80
  * @public
79
- * @deprecated since: 2022-08-30
80
81
  */
81
82
  export declare class CreateSystemTemplateCommand extends CreateSystemTemplateCommand_base {
82
83
  }
@@ -28,6 +28,8 @@ declare const DeleteFlowTemplateCommand_base: {
28
28
  /**
29
29
  * <p>Deletes a workflow. Any new system or deployment that contains this workflow will fail to update or deploy.
30
30
  * Existing deployments that contain the workflow will continue to run (since they use a snapshot of the workflow taken at the time of deployment).</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -65,7 +67,6 @@ declare const DeleteFlowTemplateCommand_base: {
65
67
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
66
68
  *
67
69
  * @public
68
- * @deprecated since: 2022-08-30
69
70
  */
70
71
  export declare class DeleteFlowTemplateCommand extends DeleteFlowTemplateCommand_base {
71
72
  }
@@ -28,6 +28,8 @@ declare const DeleteNamespaceCommand_base: {
28
28
  /**
29
29
  * <p>Deletes the specified namespace. This action deletes all of the entities in the namespace. Delete the systems and flows that use entities in the namespace before performing this action. This action takes no
30
30
  * request parameters.</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -60,7 +62,6 @@ declare const DeleteNamespaceCommand_base: {
60
62
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
61
63
  *
62
64
  * @public
63
- * @deprecated since: 2022-08-30
64
65
  */
65
66
  export declare class DeleteNamespaceCommand extends DeleteNamespaceCommand_base {
66
67
  }
@@ -29,6 +29,8 @@ declare const DeleteSystemInstanceCommand_base: {
29
29
  * <p>Deletes a system instance.
30
30
  * Only system instances that have never been deployed, or that have been undeployed can be deleted.</p>
31
31
  * <p>Users can create a new system instance that has the same ID as a deleted system instance.</p>
32
+ *
33
+ * @deprecated since: 2022-08-30
32
34
  * @example
33
35
  * Use a bare-bones client and the command you need to make an API call.
34
36
  * ```javascript
@@ -66,7 +68,6 @@ declare const DeleteSystemInstanceCommand_base: {
66
68
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
67
69
  *
68
70
  * @public
69
- * @deprecated since: 2022-08-30
70
71
  */
71
72
  export declare class DeleteSystemInstanceCommand extends DeleteSystemInstanceCommand_base {
72
73
  }
@@ -28,6 +28,8 @@ declare const DeleteSystemTemplateCommand_base: {
28
28
  /**
29
29
  * <p>Deletes a system. New deployments can't contain the system after its deletion.
30
30
  * Existing deployments that contain the system will continue to work because they use a snapshot of the system that is taken when it is deployed.</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -65,7 +67,6 @@ declare const DeleteSystemTemplateCommand_base: {
65
67
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
66
68
  *
67
69
  * @public
68
- * @deprecated since: 2022-08-30
69
70
  */
70
71
  export declare class DeleteSystemTemplateCommand extends DeleteSystemTemplateCommand_base {
71
72
  }
@@ -38,6 +38,8 @@ declare const DeploySystemInstanceCommand_base: {
38
38
  * <p>Since this action creates a Greengrass deployment on the caller's behalf, the calling identity must have write permissions
39
39
  * to the specified Greengrass group. Otherwise, the call will fail with an authorization error.</p>
40
40
  * <p>For information about the artifacts that get added to your Greengrass core device when you use this API, see <a href="https://docs.aws.amazon.com/thingsgraph/latest/ug/iot-tg-greengrass.html">AWS IoT Things Graph and AWS IoT Greengrass</a>.</p>
41
+ *
42
+ * @deprecated since: 2022-08-30
41
43
  * @example
42
44
  * Use a bare-bones client and the command you need to make an API call.
43
45
  * ```javascript
@@ -91,7 +93,6 @@ declare const DeploySystemInstanceCommand_base: {
91
93
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
92
94
  *
93
95
  * @public
94
- * @deprecated since: 2022-08-30
95
96
  */
96
97
  export declare class DeploySystemInstanceCommand extends DeploySystemInstanceCommand_base {
97
98
  }
@@ -27,6 +27,8 @@ declare const DeprecateFlowTemplateCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Deprecates the specified workflow. This action marks the workflow for deletion. Deprecated flows can't be deployed, but existing deployments will continue to run.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -64,7 +66,6 @@ declare const DeprecateFlowTemplateCommand_base: {
64
66
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
65
67
  *
66
68
  * @public
67
- * @deprecated since: 2022-08-30
68
69
  */
69
70
  export declare class DeprecateFlowTemplateCommand extends DeprecateFlowTemplateCommand_base {
70
71
  }
@@ -27,6 +27,8 @@ declare const DeprecateSystemTemplateCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Deprecates the specified system.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -64,7 +66,6 @@ declare const DeprecateSystemTemplateCommand_base: {
64
66
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
65
67
  *
66
68
  * @public
67
- * @deprecated since: 2022-08-30
68
69
  */
69
70
  export declare class DeprecateSystemTemplateCommand extends DeprecateSystemTemplateCommand_base {
70
71
  }
@@ -27,6 +27,8 @@ declare const DescribeNamespaceCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Gets the latest version of the user's namespace and the public version that it is tracking.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -70,7 +72,6 @@ declare const DescribeNamespaceCommand_base: {
70
72
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
71
73
  *
72
74
  * @public
73
- * @deprecated since: 2022-08-30
74
75
  */
75
76
  export declare class DescribeNamespaceCommand extends DescribeNamespaceCommand_base {
76
77
  }
@@ -28,6 +28,8 @@ declare const DissociateEntityFromThingCommand_base: {
28
28
  /**
29
29
  * <p>Dissociates a device entity from a concrete thing. The action takes only the type of the entity that you need to dissociate because only
30
30
  * one entity of a particular type can be associated with a thing.</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -66,7 +68,6 @@ declare const DissociateEntityFromThingCommand_base: {
66
68
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
67
69
  *
68
70
  * @public
69
- * @deprecated since: 2022-08-30
70
71
  */
71
72
  export declare class DissociateEntityFromThingCommand extends DissociateEntityFromThingCommand_base {
72
73
  }
@@ -58,6 +58,8 @@ declare const GetEntitiesCommand_base: {
58
58
  * </li>
59
59
  * </ul>
60
60
  * <p>This action doesn't return definitions for systems, flows, and deployments.</p>
61
+ *
62
+ * @deprecated since: 2022-08-30
61
63
  * @example
62
64
  * Use a bare-bones client and the command you need to make an API call.
63
65
  * ```javascript
@@ -111,7 +113,6 @@ declare const GetEntitiesCommand_base: {
111
113
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
112
114
  *
113
115
  * @public
114
- * @deprecated since: 2022-08-30
115
116
  */
116
117
  export declare class GetEntitiesCommand extends GetEntitiesCommand_base {
117
118
  }
@@ -27,6 +27,8 @@ declare const GetFlowTemplateCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Gets the latest version of the <code>DefinitionDocument</code> and <code>FlowTemplateSummary</code> for the specified workflow.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -79,7 +81,6 @@ declare const GetFlowTemplateCommand_base: {
79
81
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
80
82
  *
81
83
  * @public
82
- * @deprecated since: 2022-08-30
83
84
  */
84
85
  export declare class GetFlowTemplateCommand extends GetFlowTemplateCommand_base {
85
86
  }
@@ -28,6 +28,8 @@ declare const GetFlowTemplateRevisionsCommand_base: {
28
28
  /**
29
29
  * <p>Gets revisions of the specified workflow. Only the last 100 revisions are stored. If the workflow has been deprecated,
30
30
  * this action will return revisions that occurred before the deprecation. This action won't work for workflows that have been deleted.</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -77,7 +79,6 @@ declare const GetFlowTemplateRevisionsCommand_base: {
77
79
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
78
80
  *
79
81
  * @public
80
- * @deprecated since: 2022-08-30
81
82
  */
82
83
  export declare class GetFlowTemplateRevisionsCommand extends GetFlowTemplateRevisionsCommand_base {
83
84
  }
@@ -27,6 +27,8 @@ declare const GetNamespaceDeletionStatusCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Gets the status of a namespace deletion task.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -65,7 +67,6 @@ declare const GetNamespaceDeletionStatusCommand_base: {
65
67
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
66
68
  *
67
69
  * @public
68
- * @deprecated since: 2022-08-30
69
70
  */
70
71
  export declare class GetNamespaceDeletionStatusCommand extends GetNamespaceDeletionStatusCommand_base {
71
72
  }
@@ -27,6 +27,8 @@ declare const GetSystemInstanceCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Gets a system instance.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -95,7 +97,6 @@ declare const GetSystemInstanceCommand_base: {
95
97
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
96
98
  *
97
99
  * @public
98
- * @deprecated since: 2022-08-30
99
100
  */
100
101
  export declare class GetSystemInstanceCommand extends GetSystemInstanceCommand_base {
101
102
  }
@@ -27,6 +27,8 @@ declare const GetSystemTemplateCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Gets a system.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -79,7 +81,6 @@ declare const GetSystemTemplateCommand_base: {
79
81
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
80
82
  *
81
83
  * @public
82
- * @deprecated since: 2022-08-30
83
84
  */
84
85
  export declare class GetSystemTemplateCommand extends GetSystemTemplateCommand_base {
85
86
  }
@@ -28,6 +28,8 @@ declare const GetSystemTemplateRevisionsCommand_base: {
28
28
  /**
29
29
  * <p>Gets revisions made to the specified system template. Only the previous 100 revisions are stored. If the system has been deprecated, this action will return
30
30
  * the revisions that occurred before its deprecation. This action won't work with systems that have been deleted.</p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -77,7 +79,6 @@ declare const GetSystemTemplateRevisionsCommand_base: {
77
79
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
78
80
  *
79
81
  * @public
80
- * @deprecated since: 2022-08-30
81
82
  */
82
83
  export declare class GetSystemTemplateRevisionsCommand extends GetSystemTemplateRevisionsCommand_base {
83
84
  }
@@ -27,6 +27,8 @@ declare const GetUploadStatusCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Gets the status of the specified upload.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -74,7 +76,6 @@ declare const GetUploadStatusCommand_base: {
74
76
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
75
77
  *
76
78
  * @public
77
- * @deprecated since: 2022-08-30
78
79
  */
79
80
  export declare class GetUploadStatusCommand extends GetUploadStatusCommand_base {
80
81
  }
@@ -27,6 +27,8 @@ declare const ListFlowExecutionMessagesCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Returns a list of objects that contain information about events in a flow execution.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -76,7 +78,6 @@ declare const ListFlowExecutionMessagesCommand_base: {
76
78
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
77
79
  *
78
80
  * @public
79
- * @deprecated since: 2022-08-30
80
81
  */
81
82
  export declare class ListFlowExecutionMessagesCommand extends ListFlowExecutionMessagesCommand_base {
82
83
  }
@@ -27,6 +27,8 @@ declare const ListTagsForResourceCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Lists all tags on an AWS IoT Things Graph resource.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -74,7 +76,6 @@ declare const ListTagsForResourceCommand_base: {
74
76
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
75
77
  *
76
78
  * @public
77
- * @deprecated since: 2022-08-30
78
79
  */
79
80
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
80
81
  }
@@ -27,6 +27,8 @@ declare const SearchEntitiesCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Searches for entities of the specified type. You can search for entities in your namespace and the public namespace that you're tracking.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -88,7 +90,6 @@ declare const SearchEntitiesCommand_base: {
88
90
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
89
91
  *
90
92
  * @public
91
- * @deprecated since: 2022-08-30
92
93
  */
93
94
  export declare class SearchEntitiesCommand extends SearchEntitiesCommand_base {
94
95
  }
@@ -27,6 +27,8 @@ declare const SearchFlowExecutionsCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Searches for AWS IoT Things Graph workflow execution instances.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -81,7 +83,6 @@ declare const SearchFlowExecutionsCommand_base: {
81
83
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
82
84
  *
83
85
  * @public
84
- * @deprecated since: 2022-08-30
85
86
  */
86
87
  export declare class SearchFlowExecutionsCommand extends SearchFlowExecutionsCommand_base {
87
88
  }
@@ -27,6 +27,8 @@ declare const SearchFlowTemplatesCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Searches for summary information about workflows.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -80,7 +82,6 @@ declare const SearchFlowTemplatesCommand_base: {
80
82
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
81
83
  *
82
84
  * @public
83
- * @deprecated since: 2022-08-30
84
85
  */
85
86
  export declare class SearchFlowTemplatesCommand extends SearchFlowTemplatesCommand_base {
86
87
  }
@@ -27,6 +27,8 @@ declare const SearchSystemInstancesCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Searches for system instances in the user's account.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -85,7 +87,6 @@ declare const SearchSystemInstancesCommand_base: {
85
87
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
86
88
  *
87
89
  * @public
88
- * @deprecated since: 2022-08-30
89
90
  */
90
91
  export declare class SearchSystemInstancesCommand extends SearchSystemInstancesCommand_base {
91
92
  }
@@ -27,6 +27,8 @@ declare const SearchSystemTemplatesCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Searches for summary information about systems in the user's account. You can filter by the ID of a workflow to return only systems that use the specified workflow.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -80,7 +82,6 @@ declare const SearchSystemTemplatesCommand_base: {
80
82
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
81
83
  *
82
84
  * @public
83
- * @deprecated since: 2022-08-30
84
85
  */
85
86
  export declare class SearchSystemTemplatesCommand extends SearchSystemTemplatesCommand_base {
86
87
  }
@@ -30,6 +30,8 @@ declare const SearchThingsCommand_base: {
30
30
  * <p>For example, if two different devices, camera1 and camera2, implement the camera device model, the user can associate thing1 to camera1 and thing2 to camera2.
31
31
  * <code>SearchThings(camera2)</code> will return only thing2, but <code>SearchThings(camera)</code> will return both thing1 and thing2.</p>
32
32
  * <p>This action searches for exact matches and doesn't perform partial text matching.</p>
33
+ *
34
+ * @deprecated since: 2022-08-30
33
35
  * @example
34
36
  * Use a bare-bones client and the command you need to make an API call.
35
37
  * ```javascript
@@ -78,7 +80,6 @@ declare const SearchThingsCommand_base: {
78
80
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
79
81
  *
80
82
  * @public
81
- * @deprecated since: 2022-08-30
82
83
  */
83
84
  export declare class SearchThingsCommand extends SearchThingsCommand_base {
84
85
  }
@@ -27,6 +27,8 @@ declare const TagResourceCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Creates a tag for the specified resource.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -70,7 +72,6 @@ declare const TagResourceCommand_base: {
70
72
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
71
73
  *
72
74
  * @public
73
- * @deprecated since: 2022-08-30
74
75
  */
75
76
  export declare class TagResourceCommand extends TagResourceCommand_base {
76
77
  }
@@ -27,6 +27,8 @@ declare const UndeploySystemInstanceCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Removes a system instance from its target (Cloud or Greengrass).</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -79,7 +81,6 @@ declare const UndeploySystemInstanceCommand_base: {
79
81
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
80
82
  *
81
83
  * @public
82
- * @deprecated since: 2022-08-30
83
84
  */
84
85
  export declare class UndeploySystemInstanceCommand extends UndeploySystemInstanceCommand_base {
85
86
  }
@@ -27,6 +27,8 @@ declare const UntagResourceCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Removes a tag from the specified resource.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -67,7 +69,6 @@ declare const UntagResourceCommand_base: {
67
69
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
68
70
  *
69
71
  * @public
70
- * @deprecated since: 2022-08-30
71
72
  */
72
73
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
73
74
  }
@@ -28,6 +28,8 @@ declare const UpdateFlowTemplateCommand_base: {
28
28
  /**
29
29
  * <p>Updates the specified workflow. All deployed systems and system instances that use the workflow will see the changes in the flow when it is redeployed. If you don't want this
30
30
  * behavior, copy the workflow (creating a new workflow with a different ID), and update the copy. The workflow can contain only entities in the specified namespace. </p>
31
+ *
32
+ * @deprecated since: 2022-08-30
31
33
  * @example
32
34
  * Use a bare-bones client and the command you need to make an API call.
33
35
  * ```javascript
@@ -77,7 +79,6 @@ declare const UpdateFlowTemplateCommand_base: {
77
79
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
78
80
  *
79
81
  * @public
80
- * @deprecated since: 2022-08-30
81
82
  */
82
83
  export declare class UpdateFlowTemplateCommand extends UpdateFlowTemplateCommand_base {
83
84
  }
@@ -27,6 +27,8 @@ declare const UpdateSystemTemplateCommand_base: {
27
27
  };
28
28
  /**
29
29
  * <p>Updates the specified system. You don't need to run this action after updating a workflow. Any deployment that uses the system will see the changes in the system when it is redeployed.</p>
30
+ *
31
+ * @deprecated since: 2022-08-30
30
32
  * @example
31
33
  * Use a bare-bones client and the command you need to make an API call.
32
34
  * ```javascript
@@ -76,7 +78,6 @@ declare const UpdateSystemTemplateCommand_base: {
76
78
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
77
79
  *
78
80
  * @public
79
- * @deprecated since: 2022-08-30
80
81
  */
81
82
  export declare class UpdateSystemTemplateCommand extends UpdateSystemTemplateCommand_base {
82
83
  }
@@ -37,6 +37,8 @@ declare const UploadEntityDefinitionsCommand_base: {
37
37
  * <p>Valid entities are <code>Device</code>, <code>DeviceModel</code>, <code>Service</code>, <code>Capability</code>, <code>State</code>, <code>Action</code>, <code>Event</code>, <code>Property</code>,
38
38
  * <code>Mapping</code>, <code>Enum</code>.
39
39
  * </p>
40
+ *
41
+ * @deprecated since: 2022-08-30
40
42
  * @example
41
43
  * Use a bare-bones client and the command you need to make an API call.
42
44
  * ```javascript
@@ -78,7 +80,6 @@ declare const UploadEntityDefinitionsCommand_base: {
78
80
  * <p>Base exception class for all service exceptions from IoTThingsGraph service.</p>
79
81
  *
80
82
  * @public
81
- * @deprecated since: 2022-08-30
82
83
  */
83
84
  export declare class UploadEntityDefinitionsCommand extends UploadEntityDefinitionsCommand_base {
84
85
  }
@@ -16,5 +16,4 @@ export { IoTThingsGraphExtensionConfiguration } from "./extensionConfiguration";
16
16
  export * from "./commands";
17
17
  export * from "./pagination";
18
18
  export * from "./models";
19
- import "@aws-sdk/util-endpoints";
20
19
  export { IoTThingsGraphServiceException } from "./models/IoTThingsGraphServiceException";
@@ -6,5 +6,4 @@ export { IoTThingsGraphExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
7
  export * from "./pagination";
8
8
  export * from "./models";
9
- import "@aws-sdk/util-endpoints";
10
9
  export { IoTThingsGraphServiceException } from "./models/IoTThingsGraphServiceException";
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.535.0",
4
+ "version": "3.540.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,16 +20,16 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.535.0",
23
+ "@aws-sdk/client-sts": "3.540.0",
24
24
  "@aws-sdk/core": "3.535.0",
25
- "@aws-sdk/credential-provider-node": "3.535.0",
25
+ "@aws-sdk/credential-provider-node": "3.540.0",
26
26
  "@aws-sdk/middleware-host-header": "3.535.0",
27
27
  "@aws-sdk/middleware-logger": "3.535.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.535.0",
29
- "@aws-sdk/middleware-user-agent": "3.535.0",
29
+ "@aws-sdk/middleware-user-agent": "3.540.0",
30
30
  "@aws-sdk/region-config-resolver": "3.535.0",
31
31
  "@aws-sdk/types": "3.535.0",
32
- "@aws-sdk/util-endpoints": "3.535.0",
32
+ "@aws-sdk/util-endpoints": "3.540.0",
33
33
  "@aws-sdk/util-user-agent-browser": "3.535.0",
34
34
  "@aws-sdk/util-user-agent-node": "3.535.0",
35
35
  "@smithy/config-resolver": "^2.2.0",