@aws-sdk/client-greengrassv2 3.890.0 → 3.893.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 (30) hide show
  1. package/dist-types/commands/AssociateServiceRoleToAccountCommand.d.ts +2 -0
  2. package/dist-types/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +2 -0
  3. package/dist-types/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +2 -0
  4. package/dist-types/commands/CancelDeploymentCommand.d.ts +2 -0
  5. package/dist-types/commands/CreateComponentVersionCommand.d.ts +2 -0
  6. package/dist-types/commands/CreateDeploymentCommand.d.ts +2 -0
  7. package/dist-types/commands/DeleteComponentCommand.d.ts +2 -0
  8. package/dist-types/commands/DeleteCoreDeviceCommand.d.ts +2 -0
  9. package/dist-types/commands/DeleteDeploymentCommand.d.ts +2 -0
  10. package/dist-types/commands/DescribeComponentCommand.d.ts +2 -0
  11. package/dist-types/commands/DisassociateServiceRoleFromAccountCommand.d.ts +2 -0
  12. package/dist-types/commands/GetComponentCommand.d.ts +2 -0
  13. package/dist-types/commands/GetComponentVersionArtifactCommand.d.ts +2 -0
  14. package/dist-types/commands/GetConnectivityInfoCommand.d.ts +2 -0
  15. package/dist-types/commands/GetCoreDeviceCommand.d.ts +2 -0
  16. package/dist-types/commands/GetDeploymentCommand.d.ts +2 -0
  17. package/dist-types/commands/GetServiceRoleForAccountCommand.d.ts +2 -0
  18. package/dist-types/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +2 -0
  19. package/dist-types/commands/ListComponentVersionsCommand.d.ts +2 -0
  20. package/dist-types/commands/ListComponentsCommand.d.ts +2 -0
  21. package/dist-types/commands/ListCoreDevicesCommand.d.ts +2 -0
  22. package/dist-types/commands/ListDeploymentsCommand.d.ts +2 -0
  23. package/dist-types/commands/ListEffectiveDeploymentsCommand.d.ts +2 -0
  24. package/dist-types/commands/ListInstalledComponentsCommand.d.ts +2 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
  26. package/dist-types/commands/ResolveComponentCandidatesCommand.d.ts +2 -0
  27. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  28. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  29. package/dist-types/commands/UpdateConnectivityInfoCommand.d.ts +2 -0
  30. package/package.json +19 -19
@@ -37,6 +37,8 @@ declare const AssociateServiceRoleToAccountCommand_base: {
37
37
  * ```javascript
38
38
  * import { GreengrassV2Client, AssociateServiceRoleToAccountCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
39
39
  * // const { GreengrassV2Client, AssociateServiceRoleToAccountCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
40
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
41
+ * const config = {}; // type is GreengrassV2ClientConfig
40
42
  * const client = new GreengrassV2Client(config);
41
43
  * const input = { // AssociateServiceRoleToAccountRequest
42
44
  * roleArn: "STRING_VALUE", // required
@@ -44,6 +44,8 @@ declare const BatchAssociateClientDeviceWithCoreDeviceCommand_base: {
44
44
  * ```javascript
45
45
  * import { GreengrassV2Client, BatchAssociateClientDeviceWithCoreDeviceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
46
46
  * // const { GreengrassV2Client, BatchAssociateClientDeviceWithCoreDeviceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
47
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
48
+ * const config = {}; // type is GreengrassV2ClientConfig
47
49
  * const client = new GreengrassV2Client(config);
48
50
  * const input = { // BatchAssociateClientDeviceWithCoreDeviceRequest
49
51
  * entries: [ // AssociateClientDeviceWithCoreDeviceEntryList
@@ -35,6 +35,8 @@ declare const BatchDisassociateClientDeviceFromCoreDeviceCommand_base: {
35
35
  * ```javascript
36
36
  * import { GreengrassV2Client, BatchDisassociateClientDeviceFromCoreDeviceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
37
37
  * // const { GreengrassV2Client, BatchDisassociateClientDeviceFromCoreDeviceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
38
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
39
+ * const config = {}; // type is GreengrassV2ClientConfig
38
40
  * const client = new GreengrassV2Client(config);
39
41
  * const input = { // BatchDisassociateClientDeviceFromCoreDeviceRequest
40
42
  * entries: [ // DisassociateClientDeviceFromCoreDeviceEntryList
@@ -35,6 +35,8 @@ declare const CancelDeploymentCommand_base: {
35
35
  * ```javascript
36
36
  * import { GreengrassV2Client, CancelDeploymentCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
37
37
  * // const { GreengrassV2Client, CancelDeploymentCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
38
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
39
+ * const config = {}; // type is GreengrassV2ClientConfig
38
40
  * const client = new GreengrassV2Client(config);
39
41
  * const input = { // CancelDeploymentRequest
40
42
  * deploymentId: "STRING_VALUE", // required
@@ -65,6 +65,8 @@ declare const CreateComponentVersionCommand_base: {
65
65
  * ```javascript
66
66
  * import { GreengrassV2Client, CreateComponentVersionCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
67
67
  * // const { GreengrassV2Client, CreateComponentVersionCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
68
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
69
+ * const config = {}; // type is GreengrassV2ClientConfig
68
70
  * const client = new GreengrassV2Client(config);
69
71
  * const input = { // CreateComponentVersionRequest
70
72
  * inlineRecipe: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
@@ -43,6 +43,8 @@ declare const CreateDeploymentCommand_base: {
43
43
  * ```javascript
44
44
  * import { GreengrassV2Client, CreateDeploymentCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
45
45
  * // const { GreengrassV2Client, CreateDeploymentCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
46
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
47
+ * const config = {}; // type is GreengrassV2ClientConfig
46
48
  * const client = new GreengrassV2Client(config);
47
49
  * const input = { // CreateDeploymentRequest
48
50
  * targetArn: "STRING_VALUE", // required
@@ -39,6 +39,8 @@ declare const DeleteComponentCommand_base: {
39
39
  * ```javascript
40
40
  * import { GreengrassV2Client, DeleteComponentCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
41
41
  * // const { GreengrassV2Client, DeleteComponentCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
42
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
43
+ * const config = {}; // type is GreengrassV2ClientConfig
42
44
  * const client = new GreengrassV2Client(config);
43
45
  * const input = { // DeleteComponentRequest
44
46
  * arn: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const DeleteCoreDeviceCommand_base: {
36
36
  * ```javascript
37
37
  * import { GreengrassV2Client, DeleteCoreDeviceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
38
38
  * // const { GreengrassV2Client, DeleteCoreDeviceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
39
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
40
+ * const config = {}; // type is GreengrassV2ClientConfig
39
41
  * const client = new GreengrassV2Client(config);
40
42
  * const input = { // DeleteCoreDeviceRequest
41
43
  * coreDeviceThingName: "STRING_VALUE", // required
@@ -37,6 +37,8 @@ declare const DeleteDeploymentCommand_base: {
37
37
  * ```javascript
38
38
  * import { GreengrassV2Client, DeleteDeploymentCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
39
39
  * // const { GreengrassV2Client, DeleteDeploymentCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
40
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
41
+ * const config = {}; // type is GreengrassV2ClientConfig
40
42
  * const client = new GreengrassV2Client(config);
41
43
  * const input = { // DeleteDeploymentRequest
42
44
  * deploymentId: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const DescribeComponentCommand_base: {
33
33
  * ```javascript
34
34
  * import { GreengrassV2Client, DescribeComponentCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
35
35
  * // const { GreengrassV2Client, DescribeComponentCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
36
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
37
+ * const config = {}; // type is GreengrassV2ClientConfig
36
38
  * const client = new GreengrassV2Client(config);
37
39
  * const input = { // DescribeComponentRequest
38
40
  * arn: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const DisassociateServiceRoleFromAccountCommand_base: {
36
36
  * ```javascript
37
37
  * import { GreengrassV2Client, DisassociateServiceRoleFromAccountCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
38
38
  * // const { GreengrassV2Client, DisassociateServiceRoleFromAccountCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
39
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
40
+ * const config = {}; // type is GreengrassV2ClientConfig
39
41
  * const client = new GreengrassV2Client(config);
40
42
  * const input = {};
41
43
  * const command = new DisassociateServiceRoleFromAccountCommand(input);
@@ -33,6 +33,8 @@ declare const GetComponentCommand_base: {
33
33
  * ```javascript
34
34
  * import { GreengrassV2Client, GetComponentCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
35
35
  * // const { GreengrassV2Client, GetComponentCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
36
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
37
+ * const config = {}; // type is GreengrassV2ClientConfig
36
38
  * const client = new GreengrassV2Client(config);
37
39
  * const input = { // GetComponentRequest
38
40
  * recipeOutputFormat: "JSON" || "YAML",
@@ -35,6 +35,8 @@ declare const GetComponentVersionArtifactCommand_base: {
35
35
  * ```javascript
36
36
  * import { GreengrassV2Client, GetComponentVersionArtifactCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
37
37
  * // const { GreengrassV2Client, GetComponentVersionArtifactCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
38
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
39
+ * const config = {}; // type is GreengrassV2ClientConfig
38
40
  * const client = new GreengrassV2Client(config);
39
41
  * const input = { // GetComponentVersionArtifactRequest
40
42
  * arn: "STRING_VALUE", // required
@@ -39,6 +39,8 @@ declare const GetConnectivityInfoCommand_base: {
39
39
  * ```javascript
40
40
  * import { GreengrassV2Client, GetConnectivityInfoCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
41
41
  * // const { GreengrassV2Client, GetConnectivityInfoCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
42
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
43
+ * const config = {}; // type is GreengrassV2ClientConfig
42
44
  * const client = new GreengrassV2Client(config);
43
45
  * const input = { // GetConnectivityInfoRequest
44
46
  * thingName: "STRING_VALUE", // required
@@ -60,6 +60,8 @@ declare const GetCoreDeviceCommand_base: {
60
60
  * ```javascript
61
61
  * import { GreengrassV2Client, GetCoreDeviceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
62
62
  * // const { GreengrassV2Client, GetCoreDeviceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
63
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
64
+ * const config = {}; // type is GreengrassV2ClientConfig
63
65
  * const client = new GreengrassV2Client(config);
64
66
  * const input = { // GetCoreDeviceRequest
65
67
  * coreDeviceThingName: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const GetDeploymentCommand_base: {
33
33
  * ```javascript
34
34
  * import { GreengrassV2Client, GetDeploymentCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
35
35
  * // const { GreengrassV2Client, GetDeploymentCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
36
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
37
+ * const config = {}; // type is GreengrassV2ClientConfig
36
38
  * const client = new GreengrassV2Client(config);
37
39
  * const input = { // GetDeploymentRequest
38
40
  * deploymentId: "STRING_VALUE", // required
@@ -36,6 +36,8 @@ declare const GetServiceRoleForAccountCommand_base: {
36
36
  * ```javascript
37
37
  * import { GreengrassV2Client, GetServiceRoleForAccountCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
38
38
  * // const { GreengrassV2Client, GetServiceRoleForAccountCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
39
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
40
+ * const config = {}; // type is GreengrassV2ClientConfig
39
41
  * const client = new GreengrassV2Client(config);
40
42
  * const input = {};
41
43
  * const command = new GetServiceRoleForAccountCommand(input);
@@ -34,6 +34,8 @@ declare const ListClientDevicesAssociatedWithCoreDeviceCommand_base: {
34
34
  * ```javascript
35
35
  * import { GreengrassV2Client, ListClientDevicesAssociatedWithCoreDeviceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
36
36
  * // const { GreengrassV2Client, ListClientDevicesAssociatedWithCoreDeviceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
37
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
38
+ * const config = {}; // type is GreengrassV2ClientConfig
37
39
  * const client = new GreengrassV2Client(config);
38
40
  * const input = { // ListClientDevicesAssociatedWithCoreDeviceRequest
39
41
  * coreDeviceThingName: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const ListComponentVersionsCommand_base: {
34
34
  * ```javascript
35
35
  * import { GreengrassV2Client, ListComponentVersionsCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
36
36
  * // const { GreengrassV2Client, ListComponentVersionsCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
37
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
38
+ * const config = {}; // type is GreengrassV2ClientConfig
37
39
  * const client = new GreengrassV2Client(config);
38
40
  * const input = { // ListComponentVersionsRequest
39
41
  * arn: "STRING_VALUE", // required
@@ -34,6 +34,8 @@ declare const ListComponentsCommand_base: {
34
34
  * ```javascript
35
35
  * import { GreengrassV2Client, ListComponentsCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
36
36
  * // const { GreengrassV2Client, ListComponentsCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
37
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
38
+ * const config = {}; // type is GreengrassV2ClientConfig
37
39
  * const client = new GreengrassV2Client(config);
38
40
  * const input = { // ListComponentsRequest
39
41
  * scope: "PRIVATE" || "PUBLIC",
@@ -65,6 +65,8 @@ declare const ListCoreDevicesCommand_base: {
65
65
  * ```javascript
66
66
  * import { GreengrassV2Client, ListCoreDevicesCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
67
67
  * // const { GreengrassV2Client, ListCoreDevicesCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
68
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
69
+ * const config = {}; // type is GreengrassV2ClientConfig
68
70
  * const client = new GreengrassV2Client(config);
69
71
  * const input = { // ListCoreDevicesRequest
70
72
  * thingGroupArn: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListDeploymentsCommand_base: {
33
33
  * ```javascript
34
34
  * import { GreengrassV2Client, ListDeploymentsCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
35
35
  * // const { GreengrassV2Client, ListDeploymentsCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
36
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
37
+ * const config = {}; // type is GreengrassV2ClientConfig
36
38
  * const client = new GreengrassV2Client(config);
37
39
  * const input = { // ListDeploymentsRequest
38
40
  * targetArn: "STRING_VALUE",
@@ -33,6 +33,8 @@ declare const ListEffectiveDeploymentsCommand_base: {
33
33
  * ```javascript
34
34
  * import { GreengrassV2Client, ListEffectiveDeploymentsCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
35
35
  * // const { GreengrassV2Client, ListEffectiveDeploymentsCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
36
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
37
+ * const config = {}; // type is GreengrassV2ClientConfig
36
38
  * const client = new GreengrassV2Client(config);
37
39
  * const input = { // ListEffectiveDeploymentsRequest
38
40
  * coreDeviceThingName: "STRING_VALUE", // required
@@ -63,6 +63,8 @@ declare const ListInstalledComponentsCommand_base: {
63
63
  * ```javascript
64
64
  * import { GreengrassV2Client, ListInstalledComponentsCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
65
65
  * // const { GreengrassV2Client, ListInstalledComponentsCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
66
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
67
+ * const config = {}; // type is GreengrassV2ClientConfig
66
68
  * const client = new GreengrassV2Client(config);
67
69
  * const input = { // ListInstalledComponentsRequest
68
70
  * coreDeviceThingName: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { GreengrassV2Client, ListTagsForResourceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
35
35
  * // const { GreengrassV2Client, ListTagsForResourceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
36
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
37
+ * const config = {}; // type is GreengrassV2ClientConfig
36
38
  * const client = new GreengrassV2Client(config);
37
39
  * const input = { // ListTagsForResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -47,6 +47,8 @@ declare const ResolveComponentCandidatesCommand_base: {
47
47
  * ```javascript
48
48
  * import { GreengrassV2Client, ResolveComponentCandidatesCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
49
49
  * // const { GreengrassV2Client, ResolveComponentCandidatesCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
50
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
51
+ * const config = {}; // type is GreengrassV2ClientConfig
50
52
  * const client = new GreengrassV2Client(config);
51
53
  * const input = { // ResolveComponentCandidatesRequest
52
54
  * platform: { // ComponentPlatform
@@ -34,6 +34,8 @@ declare const TagResourceCommand_base: {
34
34
  * ```javascript
35
35
  * import { GreengrassV2Client, TagResourceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
36
36
  * // const { GreengrassV2Client, TagResourceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
37
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
38
+ * const config = {}; // type is GreengrassV2ClientConfig
37
39
  * const client = new GreengrassV2Client(config);
38
40
  * const input = { // TagResourceRequest
39
41
  * resourceArn: "STRING_VALUE", // required
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
33
33
  * ```javascript
34
34
  * import { GreengrassV2Client, UntagResourceCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
35
35
  * // const { GreengrassV2Client, UntagResourceCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
36
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
37
+ * const config = {}; // type is GreengrassV2ClientConfig
36
38
  * const client = new GreengrassV2Client(config);
37
39
  * const input = { // UntagResourceRequest
38
40
  * resourceArn: "STRING_VALUE", // required
@@ -39,6 +39,8 @@ declare const UpdateConnectivityInfoCommand_base: {
39
39
  * ```javascript
40
40
  * import { GreengrassV2Client, UpdateConnectivityInfoCommand } from "@aws-sdk/client-greengrassv2"; // ES Modules import
41
41
  * // const { GreengrassV2Client, UpdateConnectivityInfoCommand } = require("@aws-sdk/client-greengrassv2"); // CommonJS import
42
+ * // import type { GreengrassV2ClientConfig } from "@aws-sdk/client-greengrassv2";
43
+ * const config = {}; // type is GreengrassV2ClientConfig
42
44
  * const client = new GreengrassV2Client(config);
43
45
  * const input = { // UpdateConnectivityInfoRequest
44
46
  * thingName: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-greengrassv2",
3
3
  "description": "AWS SDK for JavaScript Greengrassv2 Client for Node.js, Browser and React Native",
4
- "version": "3.890.0",
4
+ "version": "3.893.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-greengrassv2",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.890.0",
24
- "@aws-sdk/credential-provider-node": "3.890.0",
25
- "@aws-sdk/middleware-host-header": "3.887.0",
26
- "@aws-sdk/middleware-logger": "3.887.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
- "@aws-sdk/middleware-user-agent": "3.890.0",
29
- "@aws-sdk/region-config-resolver": "3.890.0",
30
- "@aws-sdk/types": "3.887.0",
31
- "@aws-sdk/util-endpoints": "3.890.0",
32
- "@aws-sdk/util-user-agent-browser": "3.887.0",
33
- "@aws-sdk/util-user-agent-node": "3.890.0",
23
+ "@aws-sdk/core": "3.893.0",
24
+ "@aws-sdk/credential-provider-node": "3.893.0",
25
+ "@aws-sdk/middleware-host-header": "3.893.0",
26
+ "@aws-sdk/middleware-logger": "3.893.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.893.0",
28
+ "@aws-sdk/middleware-user-agent": "3.893.0",
29
+ "@aws-sdk/region-config-resolver": "3.893.0",
30
+ "@aws-sdk/types": "3.893.0",
31
+ "@aws-sdk/util-endpoints": "3.893.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.893.0",
33
+ "@aws-sdk/util-user-agent-node": "3.893.0",
34
34
  "@smithy/config-resolver": "^4.2.2",
35
- "@smithy/core": "^3.11.0",
35
+ "@smithy/core": "^3.11.1",
36
36
  "@smithy/fetch-http-handler": "^5.2.1",
37
37
  "@smithy/hash-node": "^4.1.1",
38
38
  "@smithy/invalid-dependency": "^4.1.1",
39
39
  "@smithy/middleware-content-length": "^4.1.1",
40
- "@smithy/middleware-endpoint": "^4.2.2",
41
- "@smithy/middleware-retry": "^4.2.2",
40
+ "@smithy/middleware-endpoint": "^4.2.3",
41
+ "@smithy/middleware-retry": "^4.2.4",
42
42
  "@smithy/middleware-serde": "^4.1.1",
43
43
  "@smithy/middleware-stack": "^4.1.1",
44
44
  "@smithy/node-config-provider": "^4.2.2",
45
45
  "@smithy/node-http-handler": "^4.2.1",
46
46
  "@smithy/protocol-http": "^5.2.1",
47
- "@smithy/smithy-client": "^4.6.2",
47
+ "@smithy/smithy-client": "^4.6.3",
48
48
  "@smithy/types": "^4.5.0",
49
49
  "@smithy/url-parser": "^4.1.1",
50
50
  "@smithy/util-base64": "^4.1.0",
51
51
  "@smithy/util-body-length-browser": "^4.1.0",
52
52
  "@smithy/util-body-length-node": "^4.1.0",
53
- "@smithy/util-defaults-mode-browser": "^4.1.2",
54
- "@smithy/util-defaults-mode-node": "^4.1.2",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.3",
54
+ "@smithy/util-defaults-mode-node": "^4.1.3",
55
55
  "@smithy/util-endpoints": "^3.1.2",
56
56
  "@smithy/util-middleware": "^4.1.1",
57
- "@smithy/util-retry": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.2",
58
58
  "@smithy/util-utf8": "^4.1.0",
59
59
  "@types/uuid": "^9.0.1",
60
60
  "tslib": "^2.6.2",