@aws-sdk/client-greengrass 3.100.0 → 3.105.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-greengrass
|
|
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
|
5
5
|
const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
|
|
6
6
|
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
7
7
|
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
8
|
+
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
8
9
|
const middleware_retry_1 = require("@aws-sdk/middleware-retry");
|
|
9
10
|
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
10
11
|
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
@@ -25,6 +26,7 @@ class GreengrassClient extends smithy_client_1.Client {
|
|
|
25
26
|
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
26
27
|
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
27
28
|
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
29
|
+
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
28
30
|
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
29
31
|
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
30
32
|
}
|
|
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
|
|
|
3
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
5
5
|
import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
|
|
6
|
+
import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
|
|
6
7
|
import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
|
|
7
8
|
import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
@@ -25,6 +26,7 @@ var GreengrassClient = (function (_super) {
|
|
|
25
26
|
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
26
27
|
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
27
28
|
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
28
30
|
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
29
31
|
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
30
32
|
return _this;
|
|
@@ -42,9 +42,7 @@ export interface Connector {
|
|
|
42
42
|
/**
|
|
43
43
|
* The parameters or configuration that the connector uses.
|
|
44
44
|
*/
|
|
45
|
-
Parameters?:
|
|
46
|
-
[key: string]: string;
|
|
47
|
-
};
|
|
45
|
+
Parameters?: Record<string, string>;
|
|
48
46
|
}
|
|
49
47
|
export declare namespace Connector {
|
|
50
48
|
/**
|
|
@@ -114,9 +112,7 @@ export interface DefinitionInformation {
|
|
|
114
112
|
/**
|
|
115
113
|
* Tag(s) attached to the resource arn.
|
|
116
114
|
*/
|
|
117
|
-
Tags?:
|
|
118
|
-
[key: string]: string;
|
|
119
|
-
};
|
|
115
|
+
Tags?: Record<string, string>;
|
|
120
116
|
}
|
|
121
117
|
export declare namespace DefinitionInformation {
|
|
122
118
|
/**
|
|
@@ -239,9 +235,7 @@ export interface FunctionConfigurationEnvironment {
|
|
|
239
235
|
/**
|
|
240
236
|
* Environment variables for the Lambda function's configuration.
|
|
241
237
|
*/
|
|
242
|
-
Variables?:
|
|
243
|
-
[key: string]: string;
|
|
244
|
-
};
|
|
238
|
+
Variables?: Record<string, string>;
|
|
245
239
|
}
|
|
246
240
|
export declare namespace FunctionConfigurationEnvironment {
|
|
247
241
|
/**
|
|
@@ -930,9 +924,7 @@ export interface CreateConnectorDefinitionRequest {
|
|
|
930
924
|
/**
|
|
931
925
|
* Tag(s) to add to the new resource.
|
|
932
926
|
*/
|
|
933
|
-
tags?:
|
|
934
|
-
[key: string]: string;
|
|
935
|
-
};
|
|
927
|
+
tags?: Record<string, string>;
|
|
936
928
|
}
|
|
937
929
|
export declare namespace CreateConnectorDefinitionRequest {
|
|
938
930
|
/**
|
|
@@ -1039,9 +1031,7 @@ export interface CreateCoreDefinitionRequest {
|
|
|
1039
1031
|
/**
|
|
1040
1032
|
* Tag(s) to add to the new resource.
|
|
1041
1033
|
*/
|
|
1042
|
-
tags?:
|
|
1043
|
-
[key: string]: string;
|
|
1044
|
-
};
|
|
1034
|
+
tags?: Record<string, string>;
|
|
1045
1035
|
}
|
|
1046
1036
|
export declare namespace CreateCoreDefinitionRequest {
|
|
1047
1037
|
/**
|
|
@@ -1204,9 +1194,7 @@ export interface CreateDeviceDefinitionRequest {
|
|
|
1204
1194
|
/**
|
|
1205
1195
|
* Tag(s) to add to the new resource.
|
|
1206
1196
|
*/
|
|
1207
|
-
tags?:
|
|
1208
|
-
[key: string]: string;
|
|
1209
|
-
};
|
|
1197
|
+
tags?: Record<string, string>;
|
|
1210
1198
|
}
|
|
1211
1199
|
export declare namespace CreateDeviceDefinitionRequest {
|
|
1212
1200
|
/**
|
|
@@ -1363,9 +1351,7 @@ export interface CreateFunctionDefinitionRequest {
|
|
|
1363
1351
|
/**
|
|
1364
1352
|
* Tag(s) to add to the new resource.
|
|
1365
1353
|
*/
|
|
1366
|
-
tags?:
|
|
1367
|
-
[key: string]: string;
|
|
1368
|
-
};
|
|
1354
|
+
tags?: Record<string, string>;
|
|
1369
1355
|
}
|
|
1370
1356
|
export declare namespace CreateFunctionDefinitionRequest {
|
|
1371
1357
|
/**
|
|
@@ -1515,9 +1501,7 @@ export interface CreateGroupRequest {
|
|
|
1515
1501
|
/**
|
|
1516
1502
|
* Tag(s) to add to the new resource.
|
|
1517
1503
|
*/
|
|
1518
|
-
tags?:
|
|
1519
|
-
[key: string]: string;
|
|
1520
|
-
};
|
|
1504
|
+
tags?: Record<string, string>;
|
|
1521
1505
|
}
|
|
1522
1506
|
export declare namespace CreateGroupRequest {
|
|
1523
1507
|
/**
|
|
@@ -1688,9 +1672,7 @@ export interface CreateLoggerDefinitionRequest {
|
|
|
1688
1672
|
/**
|
|
1689
1673
|
* Tag(s) to add to the new resource.
|
|
1690
1674
|
*/
|
|
1691
|
-
tags?:
|
|
1692
|
-
[key: string]: string;
|
|
1693
|
-
};
|
|
1675
|
+
tags?: Record<string, string>;
|
|
1694
1676
|
}
|
|
1695
1677
|
export declare namespace CreateLoggerDefinitionRequest {
|
|
1696
1678
|
/**
|
|
@@ -1809,9 +1791,7 @@ export interface CreateResourceDefinitionRequest {
|
|
|
1809
1791
|
/**
|
|
1810
1792
|
* Tag(s) to add to the new resource.
|
|
1811
1793
|
*/
|
|
1812
|
-
tags?:
|
|
1813
|
-
[key: string]: string;
|
|
1814
|
-
};
|
|
1794
|
+
tags?: Record<string, string>;
|
|
1815
1795
|
}
|
|
1816
1796
|
export declare namespace CreateResourceDefinitionRequest {
|
|
1817
1797
|
/**
|
|
@@ -2012,9 +1992,7 @@ export interface CreateSubscriptionDefinitionRequest {
|
|
|
2012
1992
|
/**
|
|
2013
1993
|
* Tag(s) to add to the new resource.
|
|
2014
1994
|
*/
|
|
2015
|
-
tags?:
|
|
2016
|
-
[key: string]: string;
|
|
2017
|
-
};
|
|
1995
|
+
tags?: Record<string, string>;
|
|
2018
1996
|
}
|
|
2019
1997
|
export declare namespace CreateSubscriptionDefinitionRequest {
|
|
2020
1998
|
/**
|
|
@@ -2401,9 +2379,7 @@ export interface GetBulkDeploymentStatusResponse {
|
|
|
2401
2379
|
/**
|
|
2402
2380
|
* Tag(s) attached to the resource arn.
|
|
2403
2381
|
*/
|
|
2404
|
-
tags?:
|
|
2405
|
-
[key: string]: string;
|
|
2406
|
-
};
|
|
2382
|
+
tags?: Record<string, string>;
|
|
2407
2383
|
}
|
|
2408
2384
|
export declare namespace GetBulkDeploymentStatusResponse {
|
|
2409
2385
|
/**
|
|
@@ -2483,9 +2459,7 @@ export interface GetConnectorDefinitionResponse {
|
|
|
2483
2459
|
/**
|
|
2484
2460
|
* Tag(s) attached to the resource arn.
|
|
2485
2461
|
*/
|
|
2486
|
-
tags?:
|
|
2487
|
-
[key: string]: string;
|
|
2488
|
-
};
|
|
2462
|
+
tags?: Record<string, string>;
|
|
2489
2463
|
}
|
|
2490
2464
|
export declare namespace GetConnectorDefinitionResponse {
|
|
2491
2465
|
/**
|
|
@@ -2589,9 +2563,7 @@ export interface GetCoreDefinitionResponse {
|
|
|
2589
2563
|
/**
|
|
2590
2564
|
* Tag(s) attached to the resource arn.
|
|
2591
2565
|
*/
|
|
2592
|
-
tags?:
|
|
2593
|
-
[key: string]: string;
|
|
2594
|
-
};
|
|
2566
|
+
tags?: Record<string, string>;
|
|
2595
2567
|
}
|
|
2596
2568
|
export declare namespace GetCoreDefinitionResponse {
|
|
2597
2569
|
/**
|
|
@@ -2735,9 +2707,7 @@ export interface GetDeviceDefinitionResponse {
|
|
|
2735
2707
|
/**
|
|
2736
2708
|
* Tag(s) attached to the resource arn.
|
|
2737
2709
|
*/
|
|
2738
|
-
tags?:
|
|
2739
|
-
[key: string]: string;
|
|
2740
|
-
};
|
|
2710
|
+
tags?: Record<string, string>;
|
|
2741
2711
|
}
|
|
2742
2712
|
export declare namespace GetDeviceDefinitionResponse {
|
|
2743
2713
|
/**
|
|
@@ -2841,9 +2811,7 @@ export interface GetFunctionDefinitionResponse {
|
|
|
2841
2811
|
/**
|
|
2842
2812
|
* Tag(s) attached to the resource arn.
|
|
2843
2813
|
*/
|
|
2844
|
-
tags?:
|
|
2845
|
-
[key: string]: string;
|
|
2846
|
-
};
|
|
2814
|
+
tags?: Record<string, string>;
|
|
2847
2815
|
}
|
|
2848
2816
|
export declare namespace GetFunctionDefinitionResponse {
|
|
2849
2817
|
/**
|
|
@@ -2947,9 +2915,7 @@ export interface GetGroupResponse {
|
|
|
2947
2915
|
/**
|
|
2948
2916
|
* Tag(s) attached to the resource arn.
|
|
2949
2917
|
*/
|
|
2950
|
-
tags?:
|
|
2951
|
-
[key: string]: string;
|
|
2952
|
-
};
|
|
2918
|
+
tags?: Record<string, string>;
|
|
2953
2919
|
}
|
|
2954
2920
|
export declare namespace GetGroupResponse {
|
|
2955
2921
|
/**
|
|
@@ -3113,9 +3079,7 @@ export interface GetLoggerDefinitionResponse {
|
|
|
3113
3079
|
/**
|
|
3114
3080
|
* Tag(s) attached to the resource arn.
|
|
3115
3081
|
*/
|
|
3116
|
-
tags?:
|
|
3117
|
-
[key: string]: string;
|
|
3118
|
-
};
|
|
3082
|
+
tags?: Record<string, string>;
|
|
3119
3083
|
}
|
|
3120
3084
|
export declare namespace GetLoggerDefinitionResponse {
|
|
3121
3085
|
/**
|
|
@@ -3215,9 +3179,7 @@ export interface GetResourceDefinitionResponse {
|
|
|
3215
3179
|
/**
|
|
3216
3180
|
* Tag(s) attached to the resource arn.
|
|
3217
3181
|
*/
|
|
3218
|
-
tags?:
|
|
3219
|
-
[key: string]: string;
|
|
3220
|
-
};
|
|
3182
|
+
tags?: Record<string, string>;
|
|
3221
3183
|
}
|
|
3222
3184
|
export declare namespace GetResourceDefinitionResponse {
|
|
3223
3185
|
/**
|
|
@@ -3337,9 +3299,7 @@ export interface GetSubscriptionDefinitionResponse {
|
|
|
3337
3299
|
/**
|
|
3338
3300
|
* Tag(s) attached to the resource arn.
|
|
3339
3301
|
*/
|
|
3340
|
-
tags?:
|
|
3341
|
-
[key: string]: string;
|
|
3342
|
-
};
|
|
3302
|
+
tags?: Record<string, string>;
|
|
3343
3303
|
}
|
|
3344
3304
|
export declare namespace GetSubscriptionDefinitionResponse {
|
|
3345
3305
|
/**
|
|
@@ -4149,9 +4109,7 @@ export interface ListTagsForResourceResponse {
|
|
|
4149
4109
|
/**
|
|
4150
4110
|
* The key-value pair for the resource tag.
|
|
4151
4111
|
*/
|
|
4152
|
-
tags?:
|
|
4153
|
-
[key: string]: string;
|
|
4154
|
-
};
|
|
4112
|
+
tags?: Record<string, string>;
|
|
4155
4113
|
}
|
|
4156
4114
|
export declare namespace ListTagsForResourceResponse {
|
|
4157
4115
|
/**
|
|
@@ -4214,9 +4172,7 @@ export interface StartBulkDeploymentRequest {
|
|
|
4214
4172
|
/**
|
|
4215
4173
|
* Tag(s) to add to the new resource.
|
|
4216
4174
|
*/
|
|
4217
|
-
tags?:
|
|
4218
|
-
[key: string]: string;
|
|
4219
|
-
};
|
|
4175
|
+
tags?: Record<string, string>;
|
|
4220
4176
|
}
|
|
4221
4177
|
export declare namespace StartBulkDeploymentRequest {
|
|
4222
4178
|
/**
|
|
@@ -4271,9 +4227,7 @@ export interface TagResourceRequest {
|
|
|
4271
4227
|
/**
|
|
4272
4228
|
* The key-value pair for the resource tag.
|
|
4273
4229
|
*/
|
|
4274
|
-
tags?:
|
|
4275
|
-
[key: string]: string;
|
|
4276
|
-
};
|
|
4230
|
+
tags?: Record<string, string>;
|
|
4277
4231
|
}
|
|
4278
4232
|
export declare namespace TagResourceRequest {
|
|
4279
4233
|
/**
|
|
@@ -22,9 +22,7 @@ export interface Connector {
|
|
|
22
22
|
|
|
23
23
|
Id: string | undefined;
|
|
24
24
|
|
|
25
|
-
Parameters?:
|
|
26
|
-
[key: string]: string;
|
|
27
|
-
};
|
|
25
|
+
Parameters?: Record<string, string>;
|
|
28
26
|
}
|
|
29
27
|
export declare namespace Connector {
|
|
30
28
|
|
|
@@ -62,9 +60,7 @@ export interface DefinitionInformation {
|
|
|
62
60
|
|
|
63
61
|
Name?: string;
|
|
64
62
|
|
|
65
|
-
Tags?:
|
|
66
|
-
[key: string]: string;
|
|
67
|
-
};
|
|
63
|
+
Tags?: Record<string, string>;
|
|
68
64
|
}
|
|
69
65
|
export declare namespace DefinitionInformation {
|
|
70
66
|
|
|
@@ -139,9 +135,7 @@ export interface FunctionConfigurationEnvironment {
|
|
|
139
135
|
|
|
140
136
|
ResourceAccessPolicies?: ResourceAccessPolicy[];
|
|
141
137
|
|
|
142
|
-
Variables?:
|
|
143
|
-
[key: string]: string;
|
|
144
|
-
};
|
|
138
|
+
Variables?: Record<string, string>;
|
|
145
139
|
}
|
|
146
140
|
export declare namespace FunctionConfigurationEnvironment {
|
|
147
141
|
|
|
@@ -548,9 +542,7 @@ export interface CreateConnectorDefinitionRequest {
|
|
|
548
542
|
|
|
549
543
|
Name?: string;
|
|
550
544
|
|
|
551
|
-
tags?:
|
|
552
|
-
[key: string]: string;
|
|
553
|
-
};
|
|
545
|
+
tags?: Record<string, string>;
|
|
554
546
|
}
|
|
555
547
|
export declare namespace CreateConnectorDefinitionRequest {
|
|
556
548
|
|
|
@@ -611,9 +603,7 @@ export interface CreateCoreDefinitionRequest {
|
|
|
611
603
|
|
|
612
604
|
Name?: string;
|
|
613
605
|
|
|
614
|
-
tags?:
|
|
615
|
-
[key: string]: string;
|
|
616
|
-
};
|
|
606
|
+
tags?: Record<string, string>;
|
|
617
607
|
}
|
|
618
608
|
export declare namespace CreateCoreDefinitionRequest {
|
|
619
609
|
|
|
@@ -708,9 +698,7 @@ export interface CreateDeviceDefinitionRequest {
|
|
|
708
698
|
|
|
709
699
|
Name?: string;
|
|
710
700
|
|
|
711
|
-
tags?:
|
|
712
|
-
[key: string]: string;
|
|
713
|
-
};
|
|
701
|
+
tags?: Record<string, string>;
|
|
714
702
|
}
|
|
715
703
|
export declare namespace CreateDeviceDefinitionRequest {
|
|
716
704
|
|
|
@@ -801,9 +789,7 @@ export interface CreateFunctionDefinitionRequest {
|
|
|
801
789
|
|
|
802
790
|
Name?: string;
|
|
803
791
|
|
|
804
|
-
tags?:
|
|
805
|
-
[key: string]: string;
|
|
806
|
-
};
|
|
792
|
+
tags?: Record<string, string>;
|
|
807
793
|
}
|
|
808
794
|
export declare namespace CreateFunctionDefinitionRequest {
|
|
809
795
|
|
|
@@ -887,9 +873,7 @@ export interface CreateGroupRequest {
|
|
|
887
873
|
|
|
888
874
|
Name: string | undefined;
|
|
889
875
|
|
|
890
|
-
tags?:
|
|
891
|
-
[key: string]: string;
|
|
892
|
-
};
|
|
876
|
+
tags?: Record<string, string>;
|
|
893
877
|
}
|
|
894
878
|
export declare namespace CreateGroupRequest {
|
|
895
879
|
|
|
@@ -988,9 +972,7 @@ export interface CreateLoggerDefinitionRequest {
|
|
|
988
972
|
|
|
989
973
|
Name?: string;
|
|
990
974
|
|
|
991
|
-
tags?:
|
|
992
|
-
[key: string]: string;
|
|
993
|
-
};
|
|
975
|
+
tags?: Record<string, string>;
|
|
994
976
|
}
|
|
995
977
|
export declare namespace CreateLoggerDefinitionRequest {
|
|
996
978
|
|
|
@@ -1059,9 +1041,7 @@ export interface CreateResourceDefinitionRequest {
|
|
|
1059
1041
|
|
|
1060
1042
|
Name?: string;
|
|
1061
1043
|
|
|
1062
|
-
tags?:
|
|
1063
|
-
[key: string]: string;
|
|
1064
|
-
};
|
|
1044
|
+
tags?: Record<string, string>;
|
|
1065
1045
|
}
|
|
1066
1046
|
export declare namespace CreateResourceDefinitionRequest {
|
|
1067
1047
|
|
|
@@ -1188,9 +1168,7 @@ export interface CreateSubscriptionDefinitionRequest {
|
|
|
1188
1168
|
|
|
1189
1169
|
Name?: string;
|
|
1190
1170
|
|
|
1191
|
-
tags?:
|
|
1192
|
-
[key: string]: string;
|
|
1193
|
-
};
|
|
1171
|
+
tags?: Record<string, string>;
|
|
1194
1172
|
}
|
|
1195
1173
|
export declare namespace CreateSubscriptionDefinitionRequest {
|
|
1196
1174
|
|
|
@@ -1439,9 +1417,7 @@ export interface GetBulkDeploymentStatusResponse {
|
|
|
1439
1417
|
|
|
1440
1418
|
ErrorMessage?: string;
|
|
1441
1419
|
|
|
1442
|
-
tags?:
|
|
1443
|
-
[key: string]: string;
|
|
1444
|
-
};
|
|
1420
|
+
tags?: Record<string, string>;
|
|
1445
1421
|
}
|
|
1446
1422
|
export declare namespace GetBulkDeploymentStatusResponse {
|
|
1447
1423
|
|
|
@@ -1489,9 +1465,7 @@ export interface GetConnectorDefinitionResponse {
|
|
|
1489
1465
|
|
|
1490
1466
|
Name?: string;
|
|
1491
1467
|
|
|
1492
|
-
tags?:
|
|
1493
|
-
[key: string]: string;
|
|
1494
|
-
};
|
|
1468
|
+
tags?: Record<string, string>;
|
|
1495
1469
|
}
|
|
1496
1470
|
export declare namespace GetConnectorDefinitionResponse {
|
|
1497
1471
|
|
|
@@ -1551,9 +1525,7 @@ export interface GetCoreDefinitionResponse {
|
|
|
1551
1525
|
|
|
1552
1526
|
Name?: string;
|
|
1553
1527
|
|
|
1554
|
-
tags?:
|
|
1555
|
-
[key: string]: string;
|
|
1556
|
-
};
|
|
1528
|
+
tags?: Record<string, string>;
|
|
1557
1529
|
}
|
|
1558
1530
|
export declare namespace GetCoreDefinitionResponse {
|
|
1559
1531
|
|
|
@@ -1637,9 +1609,7 @@ export interface GetDeviceDefinitionResponse {
|
|
|
1637
1609
|
|
|
1638
1610
|
Name?: string;
|
|
1639
1611
|
|
|
1640
|
-
tags?:
|
|
1641
|
-
[key: string]: string;
|
|
1642
|
-
};
|
|
1612
|
+
tags?: Record<string, string>;
|
|
1643
1613
|
}
|
|
1644
1614
|
export declare namespace GetDeviceDefinitionResponse {
|
|
1645
1615
|
|
|
@@ -1699,9 +1669,7 @@ export interface GetFunctionDefinitionResponse {
|
|
|
1699
1669
|
|
|
1700
1670
|
Name?: string;
|
|
1701
1671
|
|
|
1702
|
-
tags?:
|
|
1703
|
-
[key: string]: string;
|
|
1704
|
-
};
|
|
1672
|
+
tags?: Record<string, string>;
|
|
1705
1673
|
}
|
|
1706
1674
|
export declare namespace GetFunctionDefinitionResponse {
|
|
1707
1675
|
|
|
@@ -1761,9 +1729,7 @@ export interface GetGroupResponse {
|
|
|
1761
1729
|
|
|
1762
1730
|
Name?: string;
|
|
1763
1731
|
|
|
1764
|
-
tags?:
|
|
1765
|
-
[key: string]: string;
|
|
1766
|
-
};
|
|
1732
|
+
tags?: Record<string, string>;
|
|
1767
1733
|
}
|
|
1768
1734
|
export declare namespace GetGroupResponse {
|
|
1769
1735
|
|
|
@@ -1861,9 +1827,7 @@ export interface GetLoggerDefinitionResponse {
|
|
|
1861
1827
|
|
|
1862
1828
|
Name?: string;
|
|
1863
1829
|
|
|
1864
|
-
tags?:
|
|
1865
|
-
[key: string]: string;
|
|
1866
|
-
};
|
|
1830
|
+
tags?: Record<string, string>;
|
|
1867
1831
|
}
|
|
1868
1832
|
export declare namespace GetLoggerDefinitionResponse {
|
|
1869
1833
|
|
|
@@ -1921,9 +1885,7 @@ export interface GetResourceDefinitionResponse {
|
|
|
1921
1885
|
|
|
1922
1886
|
Name?: string;
|
|
1923
1887
|
|
|
1924
|
-
tags?:
|
|
1925
|
-
[key: string]: string;
|
|
1926
|
-
};
|
|
1888
|
+
tags?: Record<string, string>;
|
|
1927
1889
|
}
|
|
1928
1890
|
export declare namespace GetResourceDefinitionResponse {
|
|
1929
1891
|
|
|
@@ -1995,9 +1957,7 @@ export interface GetSubscriptionDefinitionResponse {
|
|
|
1995
1957
|
|
|
1996
1958
|
Name?: string;
|
|
1997
1959
|
|
|
1998
|
-
tags?:
|
|
1999
|
-
[key: string]: string;
|
|
2000
|
-
};
|
|
1960
|
+
tags?: Record<string, string>;
|
|
2001
1961
|
}
|
|
2002
1962
|
export declare namespace GetSubscriptionDefinitionResponse {
|
|
2003
1963
|
|
|
@@ -2499,9 +2459,7 @@ export declare namespace ListTagsForResourceRequest {
|
|
|
2499
2459
|
}
|
|
2500
2460
|
export interface ListTagsForResourceResponse {
|
|
2501
2461
|
|
|
2502
|
-
tags?:
|
|
2503
|
-
[key: string]: string;
|
|
2504
|
-
};
|
|
2462
|
+
tags?: Record<string, string>;
|
|
2505
2463
|
}
|
|
2506
2464
|
export declare namespace ListTagsForResourceResponse {
|
|
2507
2465
|
|
|
@@ -2538,9 +2496,7 @@ export interface StartBulkDeploymentRequest {
|
|
|
2538
2496
|
|
|
2539
2497
|
InputFileUri: string | undefined;
|
|
2540
2498
|
|
|
2541
|
-
tags?:
|
|
2542
|
-
[key: string]: string;
|
|
2543
|
-
};
|
|
2499
|
+
tags?: Record<string, string>;
|
|
2544
2500
|
}
|
|
2545
2501
|
export declare namespace StartBulkDeploymentRequest {
|
|
2546
2502
|
|
|
@@ -2575,9 +2531,7 @@ export interface TagResourceRequest {
|
|
|
2575
2531
|
|
|
2576
2532
|
ResourceArn: string | undefined;
|
|
2577
2533
|
|
|
2578
|
-
tags?:
|
|
2579
|
-
[key: string]: string;
|
|
2580
|
-
};
|
|
2534
|
+
tags?: Record<string, string>;
|
|
2581
2535
|
}
|
|
2582
2536
|
export declare namespace TagResourceRequest {
|
|
2583
2537
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-greengrass",
|
|
3
3
|
"description": "AWS SDK for JavaScript Greengrass Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.105.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,15 +18,16 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.105.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.80.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.105.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.78.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.78.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.78.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.78.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.78.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.78.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.105.0",
|
|
30
31
|
"@aws-sdk/middleware-retry": "3.80.0",
|
|
31
32
|
"@aws-sdk/middleware-serde": "3.78.0",
|
|
32
33
|
"@aws-sdk/middleware-signing": "3.78.0",
|